diff options
| author | Miguel Solorio <[email protected]> | 2025-05-31 11:10:52 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-31 11:10:52 -0700 |
| commit | cbc1614b8441dc3dcf35cf4f2e6b3c3457045fcb (patch) | |
| tree | f9ca359c87b278d99208f1406dc29b7a1e2606e2 /packages/cli/src/ui/themes/ansi-light.ts | |
| parent | c350fbef7ff63039ed41d4bf97d1c1bcd47afc49 (diff) | |
Update default & ANSI theme names (#637)
Diffstat (limited to 'packages/cli/src/ui/themes/ansi-light.ts')
| -rw-r--r-- | packages/cli/src/ui/themes/ansi-light.ts | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/packages/cli/src/ui/themes/ansi-light.ts b/packages/cli/src/ui/themes/ansi-light.ts new file mode 100644 index 00000000..dae9eecd --- /dev/null +++ b/packages/cli/src/ui/themes/ansi-light.ts @@ -0,0 +1,130 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import { lightTheme, Theme } from './theme.js'; + +export const ANSILight: Theme = new Theme( + 'ANSI Light', + 'light', + { + hljs: { + display: 'block', + overflowX: 'auto', + padding: '0.5em', + background: 'white', + color: 'black', + }, + 'hljs-keyword': { + color: 'blue', + }, + 'hljs-literal': { + color: 'blue', + }, + 'hljs-symbol': { + color: 'blue', + }, + 'hljs-name': { + color: 'blue', + }, + 'hljs-link': { + color: 'blue', + }, + 'hljs-built_in': { + color: 'cyan', + }, + 'hljs-type': { + color: 'cyan', + }, + 'hljs-number': { + color: 'green', + }, + 'hljs-class': { + color: 'green', + }, + 'hljs-string': { + color: 'red', + }, + 'hljs-meta-string': { + color: 'red', + }, + 'hljs-regexp': { + color: 'magenta', + }, + 'hljs-template-tag': { + color: 'magenta', + }, + 'hljs-subst': { + color: 'black', + }, + 'hljs-function': { + color: 'black', + }, + 'hljs-title': { + color: 'black', + }, + 'hljs-params': { + color: 'black', + }, + 'hljs-formula': { + color: 'black', + }, + 'hljs-comment': { + color: 'gray', + }, + 'hljs-quote': { + color: 'gray', + }, + 'hljs-doctag': { + color: 'gray', + }, + 'hljs-meta': { + color: 'gray', + }, + 'hljs-meta-keyword': { + color: 'gray', + }, + 'hljs-tag': { + color: 'gray', + }, + 'hljs-variable': { + color: 'purple', + }, + 'hljs-template-variable': { + color: 'purple', + }, + 'hljs-attr': { + color: 'blue', + }, + 'hljs-attribute': { + color: 'blue', + }, + 'hljs-builtin-name': { + color: 'blue', + }, + 'hljs-section': { + color: 'orange', + }, + 'hljs-bullet': { + color: 'orange', + }, + 'hljs-selector-tag': { + color: 'orange', + }, + 'hljs-selector-id': { + color: 'orange', + }, + 'hljs-selector-class': { + color: 'orange', + }, + 'hljs-selector-attr': { + color: 'orange', + }, + 'hljs-selector-pseudo': { + color: 'orange', + }, + }, + lightTheme, +); |
