1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { darkTheme, Theme } from './theme.js';
export const AyuDark: Theme = new Theme(
'Ayu',
'dark',
{
hljs: {
display: 'block',
overflowX: 'auto',
padding: '0.5em',
background: '#0b0e14',
color: '#bfbdb6',
},
'hljs-keyword': {
color: '#FF8F40',
},
'hljs-literal': {
color: '#D2A6FF',
},
'hljs-symbol': {
color: '#95E6CB',
},
'hljs-name': {
color: '#59C2FF',
},
'hljs-link': {
color: '#39BAE6',
},
'hljs-function .hljs-keyword': {
color: '#FFB454',
},
'hljs-subst': {
color: '#BFBDB6',
},
'hljs-string': {
color: '#AAD94C',
},
'hljs-title': {
color: '#FFB454',
},
'hljs-type': {
color: '#39BAE6',
},
'hljs-attribute': {
color: '#FFB454',
},
'hljs-bullet': {
color: '#FFB454',
},
'hljs-addition': {
color: '#7FD962',
},
'hljs-variable': {
color: '#BFBDB6',
},
'hljs-template-tag': {
color: '#FF8F40',
},
'hljs-template-variable': {
color: '#FF8F40',
},
'hljs-comment': {
color: '#ACB6BF8C',
fontStyle: 'italic',
},
'hljs-quote': {
color: '#95E6CB',
fontStyle: 'italic',
},
'hljs-deletion': {
color: '#F26D78',
},
'hljs-meta': {
color: '#E6B673',
},
'hljs-doctag': {
fontWeight: 'bold',
},
'hljs-strong': {
fontWeight: 'bold',
},
'hljs-emphasis': {
fontStyle: 'italic',
},
},
darkTheme,
);
|