plastic
plastic copied to clipboard
Updated terminal colours
Trialling updated terminal colours. If anyone stumbles across this and fancies trying it out, add this to your VSCode config:
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#21252b",
"terminal.ansiBrightBlack": "#5f6672",
"terminal.ansiRed": "#b85960",
"terminal.ansiBrightRed": "#e06c75",
"terminal.ansiGreen": "#98c379",
"terminal.ansiBrightGreen": "#a9d987",
"terminal.ansiYellow": "#c4a469",
"terminal.ansiBrightYellow": "#e5c07b",
"terminal.ansiBlue": "#4277a2",
"terminal.ansiBrightBlue": "#61afef",
"terminal.ansiMagenta": "#b57edc",
"terminal.ansiBrightMagenta": "#c68af1",
"terminal.ansiCyan": "#56b6c2",
"terminal.ansiBrightCyan": "#62cfdd",
"terminal.ansiWhite": "#a9b2c3",
"terminal.ansiBrightWhite": "#d2ddf2"
},
Updated blue
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#21252b",
"terminal.ansiBrightBlack": "#5f6672",
"terminal.ansiRed": "#b85960",
"terminal.ansiBrightRed": "#e06c75",
"terminal.ansiGreen": "#98c379",
"terminal.ansiBrightGreen": "#a9d987",
"terminal.ansiYellow": "#c4a469",
"terminal.ansiBrightYellow": "#e5c07b",
"terminal.ansiBlue": "#61afef",
"terminal.ansiBrightBlue": "#67baff",
"terminal.ansiMagenta": "#b57edc",
"terminal.ansiBrightMagenta": "#c68af1",
"terminal.ansiCyan": "#56b6c2",
"terminal.ansiBrightCyan": "#62cfdd",
"terminal.ansiWhite": "#a9b2c3",
"terminal.ansiBrightWhite": "#d2ddf2"
},
Update all bright colours. Now the normal colours are Plastic colours, and the bright ones I got from putting in the colour into iTerm's colour picker and raising the brightness to max for each (apart from black).
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#21252b",
"terminal.ansiBrightBlack": "#5f6672",
"terminal.ansiRed": "#b85960",
"terminal.ansiBrightRed": "#ff7a85",
"terminal.ansiGreen": "#98c379",
"terminal.ansiBrightGreen": "#c6ff9e",
"terminal.ansiYellow": "#c4a469",
"terminal.ansiBrightYellow": "#ffd588",
"terminal.ansiBlue": "#61afef",
"terminal.ansiBrightBlue": "#67baff",
"terminal.ansiMagenta": "#b57edc",
"terminal.ansiBrightMagenta": "#d192ff",
"terminal.ansiCyan": "#56b6c2",
"terminal.ansiBrightCyan": "#71efff",
"terminal.ansiWhite": "#a9b2c3",
"terminal.ansiBrightWhite": "#dde8ff"
},
Hmmm, I can't seem to find a good alternative to just leaving the bright colours the same as the normal colours, then rely on bold-as-bright in the terminal. Closing for now.