nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1/*
2 Five-color theme from a single blue hue.
3*/
4.hljs {
5 display: block;
6 overflow-x: auto;
7 padding: 0.5em;
8 background: #eaeef3;
9}
10
11.hljs {
12 color: #00193a;
13}
14
15.hljs-keyword,
16.hljs-selector-tag,
17.hljs-title,
18.hljs-section,
19.hljs-doctag,
20.hljs-name,
21.hljs-strong {
22 font-weight: bold;
23}
24
25.hljs-comment {
26 color: #738191;
27}
28
29.hljs-string,
30.hljs-title,
31.hljs-section,
32.hljs-built_in,
33.hljs-literal,
34.hljs-type,
35.hljs-addition,
36.hljs-tag,
37.hljs-quote,
38.hljs-name,
39.hljs-selector-id,
40.hljs-selector-class {
41 color: #0048ab;
42}
43
44.hljs-meta,
45.hljs-subst,
46.hljs-symbol,
47.hljs-regexp,
48.hljs-attribute,
49.hljs-deletion,
50.hljs-variable,
51.hljs-template-variable,
52.hljs-link,
53.hljs-bullet {
54 color: #4c81c9;
55}
56
57.hljs-emphasis {
58 font-style: italic;
59}