UNPKG

1.05 kBSCSSView Raw
1/* lioshi Theme */
2/* Original theme - https://github.com/lioshi/vscode-lioshi-theme */
3
4/* Comment */
5.hljs-comment {
6 color: #8d8d8d;
7}
8
9/* quote */
10.hljs-quote {
11 color: #b3c7d8;
12}
13
14/* Red */
15.hljs-variable,
16.hljs-template-variable,
17.hljs-tag,
18.hljs-name,
19.hljs-selector-id,
20.hljs-selector-class,
21.hljs-regexp,
22.hljs-deletion {
23 color: #cc6666;
24}
25
26/* Orange */
27.hljs-number,
28.hljs-built_in,
29.hljs-builtin-name,
30.hljs-literal,
31.hljs-type,
32.hljs-subst
33.hljs-link {
34 color: #de935f;
35}
36
37/* Yellow */
38.hljs-attribute {
39 color: #f0c674;
40}
41
42/* Green */
43.hljs-string,
44.hljs-bullet,
45.hljs-params,
46.hljs-addition {
47 color: #b5bd68;
48}
49
50/* Blue */
51.hljs-title,
52.hljs-meta,
53.hljs-section {
54 color: #81a2be;
55}
56
57/* Purple */
58.hljs-selector-tag,
59.hljs-keyword,
60.hljs-function,
61.hljs-class {
62 color: #be94bb;
63}
64
65/* Purple light */
66.hljs-symbol {
67 color: #dbc4d9;
68}
69
70.hljs {
71 display: block;
72 overflow-x: auto;
73 background: #303030;
74 color: #c5c8c6;
75 padding: 0.5em;
76}
77
78.hljs-emphasis {
79 font-style: italic;
80}
81
82.hljs-strong {
83 font-weight: bold;
84}
85
86
87
88