Make ui/colors refelect the current theme.

This commit is contained in:
jacob314
2025-04-23 17:37:09 -07:00
committed by N. Taylor Mullen
parent 105c20146c
commit cf89c030d0
11 changed files with 903 additions and 799 deletions

View File

@@ -4,121 +4,125 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { Theme } from './theme.js';
import { lightTheme, Theme } from './theme.js';
export const GitHub: Theme = new Theme('GitHub', {
hljs: {
display: 'block',
overflowX: 'auto',
padding: '0.5em',
color: '#333',
background: '#f8f8f8',
export const GitHub: Theme = new Theme(
'GitHub',
{
hljs: {
display: 'block',
overflowX: 'auto',
padding: '0.5em',
color: '#333',
background: '#f8f8f8',
},
'hljs-comment': {
color: '#998',
fontStyle: 'italic',
},
'hljs-quote': {
color: '#998',
fontStyle: 'italic',
},
'hljs-keyword': {
color: '#333',
fontWeight: 'bold',
},
'hljs-selector-tag': {
color: '#333',
fontWeight: 'bold',
},
'hljs-subst': {
color: '#333',
fontWeight: 'normal',
},
'hljs-number': {
color: '#008080',
},
'hljs-literal': {
color: '#008080',
},
'hljs-variable': {
color: '#008080',
},
'hljs-template-variable': {
color: '#008080',
},
'hljs-tag .hljs-attr': {
color: '#008080',
},
'hljs-string': {
color: '#d14',
},
'hljs-doctag': {
color: '#d14',
},
'hljs-title': {
color: '#900',
fontWeight: 'bold',
},
'hljs-section': {
color: '#900',
fontWeight: 'bold',
},
'hljs-selector-id': {
color: '#900',
fontWeight: 'bold',
},
'hljs-type': {
color: '#458',
fontWeight: 'bold',
},
'hljs-class .hljs-title': {
color: '#458',
fontWeight: 'bold',
},
'hljs-tag': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-name': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-attribute': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-regexp': {
color: '#009926',
},
'hljs-link': {
color: '#009926',
},
'hljs-symbol': {
color: '#990073',
},
'hljs-bullet': {
color: '#990073',
},
'hljs-built_in': {
color: '#0086b3',
},
'hljs-builtin-name': {
color: '#0086b3',
},
'hljs-meta': {
color: '#999',
fontWeight: 'bold',
},
'hljs-deletion': {
background: '#fdd',
},
'hljs-addition': {
background: '#dfd',
},
'hljs-emphasis': {
fontStyle: 'italic',
},
'hljs-strong': {
fontWeight: 'bold',
},
},
'hljs-comment': {
color: '#998',
fontStyle: 'italic',
},
'hljs-quote': {
color: '#998',
fontStyle: 'italic',
},
'hljs-keyword': {
color: '#333',
fontWeight: 'bold',
},
'hljs-selector-tag': {
color: '#333',
fontWeight: 'bold',
},
'hljs-subst': {
color: '#333',
fontWeight: 'normal',
},
'hljs-number': {
color: '#008080',
},
'hljs-literal': {
color: '#008080',
},
'hljs-variable': {
color: '#008080',
},
'hljs-template-variable': {
color: '#008080',
},
'hljs-tag .hljs-attr': {
color: '#008080',
},
'hljs-string': {
color: '#d14',
},
'hljs-doctag': {
color: '#d14',
},
'hljs-title': {
color: '#900',
fontWeight: 'bold',
},
'hljs-section': {
color: '#900',
fontWeight: 'bold',
},
'hljs-selector-id': {
color: '#900',
fontWeight: 'bold',
},
'hljs-type': {
color: '#458',
fontWeight: 'bold',
},
'hljs-class .hljs-title': {
color: '#458',
fontWeight: 'bold',
},
'hljs-tag': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-name': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-attribute': {
color: '#000080',
fontWeight: 'normal',
},
'hljs-regexp': {
color: '#009926',
},
'hljs-link': {
color: '#009926',
},
'hljs-symbol': {
color: '#990073',
},
'hljs-bullet': {
color: '#990073',
},
'hljs-built_in': {
color: '#0086b3',
},
'hljs-builtin-name': {
color: '#0086b3',
},
'hljs-meta': {
color: '#999',
fontWeight: 'bold',
},
'hljs-deletion': {
background: '#fdd',
},
'hljs-addition': {
background: '#dfd',
},
'hljs-emphasis': {
fontStyle: 'italic',
},
'hljs-strong': {
fontWeight: 'bold',
},
});
lightTheme,
);