Update solarized theme to match main

This commit is contained in:
Keith Simmons 2022-04-22 15:04:45 -07:00
parent a1576b7dca
commit 50b5b56f60
3 changed files with 156 additions and 40 deletions

View file

@ -89,10 +89,6 @@
"top": 7 "top": 7
} }
}, },
"margin": {
"bottom": 52,
"top": 52
},
"shadow": { "shadow": {
"blur": 16, "blur": 16,
"color": "#00000052", "color": "#00000052",
@ -158,6 +154,13 @@
"right": 8 "right": 8
} }
}, },
"modal": {
"margin": {
"bottom": 52,
"top": 52
},
"cursor": "Arrow"
},
"left_sidebar": { "left_sidebar": {
"width": 30, "width": 30,
"background": "#073642", "background": "#073642",
@ -689,33 +692,88 @@
} }
}, },
"syntax": { "syntax": {
"keyword": "#268bd2", "primary": {
"function": "#b58900", "color": "#fdf6e3",
"string": "#cb4b16", "weight": "normal"
"type": "#2aa198", },
"number": "#859900", "comment": {
"comment": "#eee8d5", "color": "#eee8d5",
"property": "#268bd2", "weight": "normal"
"variant": "#268bd2", },
"constant": "#839496", "punctuation": {
"color": "#93a1a1",
"weight": "normal"
},
"constant": {
"color": "#839496",
"weight": "normal"
},
"keyword": {
"color": "#268bd2",
"weight": "normal"
},
"function": {
"color": "#b58900",
"weight": "normal"
},
"type": {
"color": "#2aa198",
"weight": "normal"
},
"variant": {
"color": "#268bd2",
"weight": "normal"
},
"property": {
"color": "#268bd2",
"weight": "normal"
},
"enum": {
"color": "#cb4b16",
"weight": "normal"
},
"operator": {
"color": "#cb4b16",
"weight": "normal"
},
"string": {
"color": "#cb4b16",
"weight": "normal"
},
"number": {
"color": "#859900",
"weight": "normal"
},
"boolean": {
"color": "#859900",
"weight": "normal"
},
"predictive": {
"color": "#93a1a1",
"weight": "normal"
},
"title": { "title": {
"color": "#b58900", "color": "#b58900",
"weight": "bold" "weight": "bold"
}, },
"emphasis": "#268bd2", "emphasis": {
"emphasis_strong": { "color": "#268bd2",
"weight": "normal"
},
"emphasis.strong": {
"color": "#268bd2", "color": "#268bd2",
"weight": "bold" "weight": "bold"
}, },
"link_uri": { "link_uri": {
"color": "#859900", "color": "#859900",
"weight": "normal",
"underline": true "underline": true
}, },
"link_text": { "link_text": {
"color": "#cb4b16", "color": "#cb4b16",
"weight": "normal",
"italic": true "italic": true
}, }
"list_marker": "#93a1a1"
} }
}, },
"project_diagnostics": { "project_diagnostics": {

View file

@ -89,10 +89,6 @@
"top": 7 "top": 7
} }
}, },
"margin": {
"bottom": 52,
"top": 52
},
"shadow": { "shadow": {
"blur": 16, "blur": 16,
"color": "#00000052", "color": "#00000052",
@ -158,6 +154,13 @@
"right": 8 "right": 8
} }
}, },
"modal": {
"margin": {
"bottom": 52,
"top": 52
},
"cursor": "Arrow"
},
"left_sidebar": { "left_sidebar": {
"width": 30, "width": 30,
"background": "#eee8d5", "background": "#eee8d5",
@ -689,33 +692,88 @@
} }
}, },
"syntax": { "syntax": {
"keyword": "#268bd2", "primary": {
"function": "#b58900", "color": "#002b36",
"string": "#cb4b16", "weight": "normal"
"type": "#2aa198", },
"number": "#859900", "comment": {
"comment": "#073642", "color": "#073642",
"property": "#268bd2", "weight": "normal"
"variant": "#268bd2", },
"constant": "#657b83", "punctuation": {
"color": "#586e75",
"weight": "normal"
},
"constant": {
"color": "#657b83",
"weight": "normal"
},
"keyword": {
"color": "#268bd2",
"weight": "normal"
},
"function": {
"color": "#b58900",
"weight": "normal"
},
"type": {
"color": "#2aa198",
"weight": "normal"
},
"variant": {
"color": "#268bd2",
"weight": "normal"
},
"property": {
"color": "#268bd2",
"weight": "normal"
},
"enum": {
"color": "#cb4b16",
"weight": "normal"
},
"operator": {
"color": "#cb4b16",
"weight": "normal"
},
"string": {
"color": "#cb4b16",
"weight": "normal"
},
"number": {
"color": "#859900",
"weight": "normal"
},
"boolean": {
"color": "#859900",
"weight": "normal"
},
"predictive": {
"color": "#586e75",
"weight": "normal"
},
"title": { "title": {
"color": "#b58900", "color": "#b58900",
"weight": "bold" "weight": "bold"
}, },
"emphasis": "#268bd2", "emphasis": {
"emphasis_strong": { "color": "#268bd2",
"weight": "normal"
},
"emphasis.strong": {
"color": "#268bd2", "color": "#268bd2",
"weight": "bold" "weight": "bold"
}, },
"link_uri": { "link_uri": {
"color": "#859900", "color": "#859900",
"weight": "normal",
"underline": true "underline": true
}, },
"link_text": { "link_text": {
"color": "#cb4b16", "color": "#cb4b16",
"weight": "normal",
"italic": true "italic": true
}, }
"list_marker": "#586e75"
} }
}, },
"project_diagnostics": { "project_diagnostics": {

View file

@ -217,22 +217,22 @@ export function solarized(darkTheme: boolean): Theme {
weight: fontWeights.bold, weight: fontWeights.bold,
}, },
emphasis: { emphasis: {
color: textColor.active, color: textColor.feature,
weight: fontWeights.normal, weight: fontWeights.normal,
}, },
emphasisStrong: { "emphasis.strong": {
color: textColor.active, color: textColor.feature,
weight: fontWeights.bold, weight: fontWeights.bold,
}, },
linkUrl: { linkUri: {
color: colors.green, color: colors.green,
weight: fontWeights.normal, weight: fontWeights.normal,
// TODO: add underline underline: true,
}, },
linkText: { linkText: {
color: colors.orange, color: colors.orange,
weight: fontWeights.normal, weight: fontWeights.normal,
// TODO: add italic italic: true,
}, },
}; };