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