qwen-code/packages/cli/src/ui/themes/ayu-light.ts

120 lines
2.1 KiB
TypeScript
Raw Normal View History

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { lightTheme, Theme } from './theme.js';
2025-06-04 10:41:03 -07:00
export const AyuLight: Theme = new Theme(
'Ayu Light',
2025-05-08 16:00:55 -07:00
'light',
{
hljs: {
display: 'block',
overflowX: 'auto',
padding: '0.5em',
2025-06-04 10:41:03 -07:00
background: '#f8f9fa',
color: '#5c6166',
},
'hljs-comment': {
2025-06-04 10:41:03 -07:00
color: '#787b80',
fontStyle: 'italic',
},
'hljs-quote': {
2025-06-04 10:41:03 -07:00
color: '#4cbf99',
fontStyle: 'italic',
},
2025-06-04 10:41:03 -07:00
'hljs-string': {
color: '#86b300',
},
2025-06-04 10:41:03 -07:00
'hljs-constant': {
color: '#4cbf99',
},
'hljs-number': {
2025-06-04 10:41:03 -07:00
color: '#a37acc',
},
2025-06-04 10:41:03 -07:00
'hljs-keyword': {
color: '#fa8d3e',
},
2025-06-04 10:41:03 -07:00
'hljs-selector-tag': {
color: '#fa8d3e',
},
2025-06-04 10:41:03 -07:00
'hljs-attribute': {
color: '#f2ae49',
},
2025-06-04 10:41:03 -07:00
'hljs-variable': {
color: '#5c6166',
},
2025-06-04 10:41:03 -07:00
'hljs-variable.language': {
color: '#55b4d4',
fontStyle: 'italic',
},
'hljs-title': {
2025-06-04 10:41:03 -07:00
color: '#399ee6',
},
'hljs-section': {
2025-06-04 10:41:03 -07:00
color: '#86b300',
fontWeight: 'bold',
},
'hljs-type': {
2025-06-04 10:41:03 -07:00
color: '#55b4d4',
},
'hljs-class .hljs-title': {
2025-06-04 10:41:03 -07:00
color: '#399ee6',
},
'hljs-tag': {
2025-06-04 10:41:03 -07:00
color: '#55b4d4',
},
'hljs-name': {
2025-06-04 10:41:03 -07:00
color: '#399ee6',
},
2025-06-04 10:41:03 -07:00
'hljs-builtin-name': {
color: '#f2ae49',
},
2025-06-04 10:41:03 -07:00
'hljs-meta': {
color: '#e6ba7e',
},
'hljs-symbol': {
2025-06-04 10:41:03 -07:00
color: '#f07171',
},
'hljs-bullet': {
2025-06-04 10:41:03 -07:00
color: '#f2ae49',
},
2025-06-04 10:41:03 -07:00
'hljs-regexp': {
color: '#4cbf99',
},
2025-06-04 10:41:03 -07:00
'hljs-link': {
color: '#55b4d4',
},
'hljs-deletion': {
2025-06-04 10:41:03 -07:00
color: '#ff7383',
},
'hljs-addition': {
2025-06-04 10:41:03 -07:00
color: '#6cbf43',
},
'hljs-emphasis': {
fontStyle: 'italic',
},
'hljs-strong': {
fontWeight: 'bold',
},
2025-06-04 10:41:03 -07:00
'hljs-literal': {
color: '#4cbf99',
},
'hljs-built_in': {
color: '#f07171',
},
'hljs-doctag': {
color: '#d14',
},
'hljs-template-variable': {
color: '#008080',
},
'hljs-selector-id': {
color: '#900',
},
},
lightTheme,
);