diff options
| author | jacob314 <[email protected]> | 2025-04-23 17:37:09 -0700 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-23 18:08:22 -0700 |
| commit | cf89c030d09af1e65d4094978dc82a995a2f8fa8 (patch) | |
| tree | 590c59cc80c477bee0ecff6214b1e033791a9007 /packages/cli/src/ui/themes/vs.ts | |
| parent | 105c20146c1dca470de56142061aabdee8c101aa (diff) | |
Make ui/colors refelect the current theme.
Diffstat (limited to 'packages/cli/src/ui/themes/vs.ts')
| -rw-r--r-- | packages/cli/src/ui/themes/vs.ts | 190 |
1 files changed, 97 insertions, 93 deletions
diff --git a/packages/cli/src/ui/themes/vs.ts b/packages/cli/src/ui/themes/vs.ts index a87e9e80..ea0d938d 100644 --- a/packages/cli/src/ui/themes/vs.ts +++ b/packages/cli/src/ui/themes/vs.ts @@ -4,98 +4,102 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { Theme } from './theme.js'; +import { lightTheme, Theme } from './theme.js'; -export const VS: Theme = new Theme('VS', { - hljs: { - display: 'block', - overflowX: 'auto', - padding: '0.5em', - background: 'white', - color: 'black', +export const VS: Theme = new Theme( + 'VS', + { + hljs: { + display: 'block', + overflowX: 'auto', + padding: '0.5em', + background: 'white', + color: 'black', + }, + 'hljs-comment': { + color: '#008000', + }, + 'hljs-quote': { + color: '#008000', + }, + 'hljs-variable': { + color: '#008000', + }, + 'hljs-keyword': { + color: '#00f', + }, + 'hljs-selector-tag': { + color: '#00f', + }, + 'hljs-built_in': { + color: '#00f', + }, + 'hljs-name': { + color: '#00f', + }, + 'hljs-tag': { + color: '#00f', + }, + 'hljs-string': { + color: '#a31515', + }, + 'hljs-title': { + color: '#a31515', + }, + 'hljs-section': { + color: '#a31515', + }, + 'hljs-attribute': { + color: '#a31515', + }, + 'hljs-literal': { + color: '#a31515', + }, + 'hljs-template-tag': { + color: '#a31515', + }, + 'hljs-template-variable': { + color: '#a31515', + }, + 'hljs-type': { + color: '#a31515', + }, + 'hljs-addition': { + color: '#a31515', + }, + 'hljs-deletion': { + color: '#2b91af', + }, + 'hljs-selector-attr': { + color: '#2b91af', + }, + 'hljs-selector-pseudo': { + color: '#2b91af', + }, + 'hljs-meta': { + color: '#2b91af', + }, + 'hljs-doctag': { + color: '#808080', + }, + 'hljs-attr': { + color: '#f00', + }, + 'hljs-symbol': { + color: '#00b0e8', + }, + 'hljs-bullet': { + color: '#00b0e8', + }, + 'hljs-link': { + color: '#00b0e8', + }, + 'hljs-emphasis': { + fontStyle: 'italic', + }, + 'hljs-strong': { + fontWeight: 'bold', + }, }, - 'hljs-comment': { - color: '#008000', - }, - 'hljs-quote': { - color: '#008000', - }, - 'hljs-variable': { - color: '#008000', - }, - 'hljs-keyword': { - color: '#00f', - }, - 'hljs-selector-tag': { - color: '#00f', - }, - 'hljs-built_in': { - color: '#00f', - }, - 'hljs-name': { - color: '#00f', - }, - 'hljs-tag': { - color: '#00f', - }, - 'hljs-string': { - color: '#a31515', - }, - 'hljs-title': { - color: '#a31515', - }, - 'hljs-section': { - color: '#a31515', - }, - 'hljs-attribute': { - color: '#a31515', - }, - 'hljs-literal': { - color: '#a31515', - }, - 'hljs-template-tag': { - color: '#a31515', - }, - 'hljs-template-variable': { - color: '#a31515', - }, - 'hljs-type': { - color: '#a31515', - }, - 'hljs-addition': { - color: '#a31515', - }, - 'hljs-deletion': { - color: '#2b91af', - }, - 'hljs-selector-attr': { - color: '#2b91af', - }, - 'hljs-selector-pseudo': { - color: '#2b91af', - }, - 'hljs-meta': { - color: '#2b91af', - }, - 'hljs-doctag': { - color: '#808080', - }, - 'hljs-attr': { - color: '#f00', - }, - 'hljs-symbol': { - color: '#00b0e8', - }, - 'hljs-bullet': { - color: '#00b0e8', - }, - 'hljs-link': { - color: '#00b0e8', - }, - 'hljs-emphasis': { - fontStyle: 'italic', - }, - 'hljs-strong': { - fontWeight: 'bold', - }, -}); + lightTheme, +); |
