2025-04-22 18:57:47 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-23 17:37:09 -07:00
|
|
|
import { lightTheme, Theme } from './theme.js';
|
2025-04-22 18:57:47 -07:00
|
|
|
|
2025-04-23 17:37:09 -07:00
|
|
|
export const VS: Theme = new Theme(
|
|
|
|
|
'VS',
|
2025-05-08 16:00:55 -07:00
|
|
|
'light',
|
2025-04-23 17:37:09 -07:00
|
|
|
{
|
|
|
|
|
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',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
lightTheme,
|
|
|
|
|
);
|