As far as I can tell they are not, am I wrong?
They work i use for months terminal with color output.
Can you be a bit more detailed?
I’m using zsh (in Cursor) on MacOS. I looked for terminal theme settings but couldn’t find the same settings that are in VSCode.
Can you be more specific? I have no idea what you are trying to do and what doesnt work or where it should be and why.
Hey, it seems you mean to make the terminal in Cursor more aligned with the colors of your main terminal. As far as I know, this isn’t supported, but you can change the terminal colors using workbench.colorCustomizations
. This will allow you to set suitable colors in the terminal in Cursor, or you can simply look for a more fitting Cursor theme.
Here’s some additional info:
Here’s an example of how it might look:
"workbench.colorCustomizations": {
"terminal.background": "#1D1F21",
"terminal.foreground": "#C5C8C6",
"terminal.ansiBlack": "#1D1F21",
"terminal.ansiBlue": "#3971ED",
"terminal.ansiBrightBlack": "#969896",
"terminal.ansiBrightBlue": "#3971ED",
"terminal.ansiBrightCyan": "#3971ED",
"terminal.ansiBrightGreen": "#198844",
"terminal.ansiBrightMagenta": "#A36AC7",
"terminal.ansiBrightRed": "#CC342B",
"terminal.ansiBrightWhite": "#FFFFFF",
"terminal.ansiBrightYellow": "#FBA922",
"terminal.ansiCyan": "#3971ED",
"terminal.ansiGreen": "#198844",
"terminal.ansiMagenta": "#A36AC7",
"terminal.ansiRed": "#CC342B",
"terminal.ansiWhite": "#C5C8C6",
"terminal.ansiYellow": "#FBA922"
}