comparison third_party/highlight/styles/brown-paper.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 Brown Paper style from goldblog.com.ua (c) Zaripov Yura <[email protected]>
12
13 */
14 .hljs {
15 color: #363c69;
16 background: #b7a68e url(./brown-papersq.png)
17 }
18 .hljs-keyword,
19 .hljs-selector-tag,
20 .hljs-literal {
21 color: #005599;
22 font-weight: bold
23 }
24 .hljs-subst {
25 /* default */
26
27 }
28 .hljs-string,
29 .hljs-title,
30 .hljs-section,
31 .hljs-type,
32 .hljs-attribute,
33 .hljs-symbol,
34 .hljs-bullet,
35 .hljs-built_in,
36 .hljs-addition,
37 .hljs-variable,
38 .hljs-template-tag,
39 .hljs-template-variable,
40 .hljs-link,
41 .hljs-name {
42 color: #2c009f
43 }
44 .hljs-comment,
45 .hljs-quote,
46 .hljs-meta,
47 .hljs-deletion {
48 color: #802022
49 }
50 .hljs-keyword,
51 .hljs-selector-tag,
52 .hljs-literal,
53 .hljs-doctag,
54 .hljs-title,
55 .hljs-section,
56 .hljs-type,
57 .hljs-name,
58 .hljs-strong {
59 font-weight: bold
60 }
61 .hljs-emphasis {
62 font-style: italic
63 }