comparison third_party/highlight/styles/vs.css @ 157:2db6253f355d

[ThirdParty] Added highlight library for better readability on blog.
author June Park <parkjune1995@gmail.com>
date Tue, 13 Jan 2026 19:18:47 -0800
parents
children
comparison
equal deleted inserted replaced
156:cd35e600ae34 157:2db6253f355d
1 pre code.hljs {
2 display: block;
3 overflow-x: auto;
4 padding: 1em
5 }
6 code.hljs {
7 padding: 3px 5px
8 }
9 /*
10
11 Visual Studio-like style based on original C# coloring by Jason Diamond <[email protected]>
12
13 */
14 .hljs {
15 background: white;
16 color: black
17 }
18 .hljs-comment,
19 .hljs-quote,
20 .hljs-variable {
21 color: #008000
22 }
23 .hljs-keyword,
24 .hljs-selector-tag,
25 .hljs-built_in,
26 .hljs-name,
27 .hljs-tag {
28 color: #00f
29 }
30 .hljs-string,
31 .hljs-title,
32 .hljs-section,
33 .hljs-attribute,
34 .hljs-literal,
35 .hljs-template-tag,
36 .hljs-template-variable,
37 .hljs-type,
38 .hljs-addition {
39 color: #a31515
40 }
41 .hljs-deletion,
42 .hljs-selector-attr,
43 .hljs-selector-pseudo,
44 .hljs-meta {
45 color: #2b91af
46 }
47 .hljs-doctag {
48 color: #808080
49 }
50 .hljs-attr {
51 color: #f00
52 }
53 .hljs-symbol,
54 .hljs-bullet,
55 .hljs-link {
56 color: #00b0e8
57 }
58 .hljs-emphasis {
59 font-style: italic
60 }
61 .hljs-strong {
62 font-weight: bold
63 }