comparison third_party/highlight/styles/vs2015.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 * Visual Studio 2015 dark style
11 * Author: Nicolas LLOBERA <[email protected]>
12 */
13 .hljs {
14 background: #1E1E1E;
15 color: #DCDCDC
16 }
17 .hljs-keyword,
18 .hljs-literal,
19 .hljs-symbol,
20 .hljs-name {
21 color: #569CD6
22 }
23 .hljs-link {
24 color: #569CD6;
25 text-decoration: underline
26 }
27 .hljs-built_in,
28 .hljs-type {
29 color: #4EC9B0
30 }
31 .hljs-number,
32 .hljs-class {
33 color: #B8D7A3
34 }
35 .hljs-string,
36 .hljs-meta .hljs-string {
37 color: #D69D85
38 }
39 .hljs-regexp,
40 .hljs-template-tag {
41 color: #9A5334
42 }
43 .hljs-subst,
44 .hljs-function,
45 .hljs-title,
46 .hljs-params,
47 .hljs-formula {
48 color: #DCDCDC
49 }
50 .hljs-comment,
51 .hljs-quote {
52 color: #57A64A;
53 font-style: italic
54 }
55 .hljs-doctag {
56 color: #608B4E
57 }
58 .hljs-meta,
59 .hljs-meta .hljs-keyword,
60 .hljs-tag {
61 color: #9B9B9B
62 }
63 .hljs-variable,
64 .hljs-template-variable {
65 color: #BD63C5
66 }
67 .hljs-attr,
68 .hljs-attribute {
69 color: #9CDCFE
70 }
71 .hljs-section {
72 color: gold
73 }
74 .hljs-emphasis {
75 font-style: italic
76 }
77 .hljs-strong {
78 font-weight: bold
79 }
80 /*.hljs-code {
81 font-family:'Monospace';
82 }*/
83 .hljs-bullet,
84 .hljs-selector-tag,
85 .hljs-selector-id,
86 .hljs-selector-class,
87 .hljs-selector-attr,
88 .hljs-selector-pseudo {
89 color: #D7BA7D
90 }
91 .hljs-addition {
92 background-color: #144212;
93 display: inline-block;
94 width: 100%
95 }
96 .hljs-deletion {
97 background-color: #600;
98 display: inline-block;
99 width: 100%
100 }