comparison third_party/highlight/styles/nnfx-dark.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 Theme: nnfx dark
11 Description: a theme inspired by Netscape Navigator/Firefox
12 Author: (c) 2020-2021 Jim Mason <[email protected]>
13 Maintainer: @RocketMan
14 License: https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0
15 Updated: 2021-05-17
16
17 @version 1.1.0
18 */
19 .hljs {
20 background: #333;
21 color: #fff
22 }
23 .language-xml .hljs-meta,
24 .language-xml .hljs-meta-string {
25 font-weight: bold;
26 font-style: italic;
27 color: #69f
28 }
29 .hljs-comment,
30 .hljs-quote {
31 font-style: italic;
32 color: #9c6
33 }
34 .hljs-name,
35 .hljs-keyword,
36 .hljs-built_in {
37 color: #a7a
38 }
39 .hljs-name,
40 .hljs-attr {
41 font-weight: bold
42 }
43 .hljs-string {
44 font-weight: normal
45 }
46 .hljs-code,
47 .hljs-string,
48 .hljs-meta .hljs-string,
49 .hljs-number,
50 .hljs-regexp,
51 .hljs-link {
52 color: #bce
53 }
54 .hljs-title,
55 .hljs-symbol,
56 .hljs-bullet,
57 .hljs-variable,
58 .hljs-template-variable {
59 color: #d40
60 }
61 .hljs-title.class_,
62 .hljs-class .hljs-title,
63 .hljs-type {
64 font-weight: bold;
65 color: #96c
66 }
67 .hljs-title.function_,
68 .hljs-function .hljs-title,
69 .hljs-attr,
70 .hljs-subst,
71 .hljs-tag {
72 color: #fff
73 }
74 .hljs-formula {
75 background-color: #eee;
76 font-style: italic
77 }
78 .hljs-addition {
79 background-color: #797
80 }
81 .hljs-deletion {
82 background-color: #c99
83 }
84 .hljs-meta {
85 color: #69f
86 }
87 .hljs-section,
88 .hljs-selector-id,
89 .hljs-selector-class,
90 .hljs-selector-pseudo,
91 .hljs-selector-tag {
92 font-weight: bold;
93 color: #69f
94 }
95 .hljs-selector-pseudo {
96 font-style: italic
97 }
98 .hljs-doctag,
99 .hljs-strong {
100 font-weight: bold
101 }
102 .hljs-emphasis {
103 font-style: italic
104 }