Merge pull request #142670 from michaelkuhn/solarized-fixes

Fix some Solarized colors
This commit is contained in:
Martin Aeschlimann 2022-02-10 10:48:15 +01:00 committed by GitHub
commit f769ece9f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View file

@ -3,13 +3,13 @@
"tokenColors": [
{
"settings": {
"foreground": "#93A1A1"
"foreground": "#839496"
}
},
{
"scope": ["meta.embedded", "source.groovy.embedded"],
"settings": {
"foreground": "#93A1A1"
"foreground": "#839496"
}
},
{
@ -17,7 +17,7 @@
"scope": "comment",
"settings": {
"fontStyle": "italic",
"foreground": "#657B83"
"foreground": "#586E75"
}
},
{
@ -156,7 +156,7 @@
"name": "Tag start/end",
"scope": "punctuation.definition.tag",
"settings": {
"foreground": "#657B83"
"foreground": "#586E75"
}
},
{
@ -369,7 +369,7 @@
// Editor
"editor.background": "#002B36",
// "editor.foreground": "#6688cc",
"editor.foreground": "#839496",
"editorWidget.background": "#00212B",
"editorCursor.foreground": "#D30102",
"editorWhitespace.foreground": "#93A1A180",
@ -498,7 +498,7 @@
"terminal.ansiMagenta": "#d33682",
"terminal.ansiCyan": "#2aa198",
"terminal.ansiWhite": "#eee8d5",
"terminal.ansiBrightBlack": "#586e75",
"terminal.ansiBrightBlack": "#002b36",
"terminal.ansiBrightRed": "#cb4b16",
"terminal.ansiBrightGreen": "#586e75",
"terminal.ansiBrightYellow": "#657b83",

View file

@ -66,7 +66,7 @@
"scope": "storage",
"settings": {
"fontStyle": "bold",
"foreground": "#073642"
"foreground": "#586E75"
}
},
{
@ -361,8 +361,8 @@
// "scrollbarSlider.hoverBackground": "",
// Editor
"editor.background": "#FDF6E3",
"editor.foreground": "#657B83",
"notebook.cellEditorBackground": "#F7F0E0",
// "editor.foreground": "#6688cc",
"editorWidget.background": "#EEE8D5",
"editorCursor.foreground": "#657B83",
"editorWhitespace.foreground": "#586E7580",
@ -480,14 +480,14 @@
"terminal.ansiMagenta": "#d33682",
"terminal.ansiCyan": "#2aa198",
"terminal.ansiWhite": "#eee8d5",
"terminal.ansiBrightBlack": "#586e75",
"terminal.ansiBrightBlack": "#002b36",
"terminal.ansiBrightRed": "#cb4b16",
"terminal.ansiBrightGreen": "#586e75",
"terminal.ansiBrightYellow": "#657b83",
"terminal.ansiBrightBlue": "#839496",
"terminal.ansiBrightMagenta": "#6c71c4",
"terminal.ansiBrightCyan": "#93a1a1",
"terminal.ansiBrightWhite": "#eee8d5",
"terminal.ansiBrightWhite": "#fdf6e3",
// Interactive Playground
"walkThrough.embeddedEditorBackground": "#00000014"
},