comparison themes/siimple/static/styles/agate.css @ 12:93f0440d452e

pasterd: add siimple theme
author David Demelier <markand@malikania.fr>
date Thu, 06 Feb 2020 10:29:02 +0100
parents
children
comparison
equal deleted inserted replaced
11:b9b046818b0c 12:93f0440d452e
1 /*!
2 * Agate by Taufik Nurrohman <https://github.com/taufik-nurrohman>
3 * ---------------------------------------------------------------
4 *
5 * #ade5fc
6 * #a2fca2
7 * #c6b4f0
8 * #d36363
9 * #fcc28c
10 * #fc9b9b
11 * #ffa
12 * #fff
13 * #333
14 * #62c8f3
15 * #888
16 *
17 */
18
19 .hljs {
20 display: block;
21 overflow-x: auto;
22 padding: 0.5em;
23 background: #333;
24 color: white;
25 }
26
27 .hljs-name,
28 .hljs-strong {
29 font-weight: bold;
30 }
31
32 .hljs-code,
33 .hljs-emphasis {
34 font-style: italic;
35 }
36
37 .hljs-tag {
38 color: #62c8f3;
39 }
40
41 .hljs-variable,
42 .hljs-template-variable,
43 .hljs-selector-id,
44 .hljs-selector-class {
45 color: #ade5fc;
46 }
47
48 .hljs-string,
49 .hljs-bullet {
50 color: #a2fca2;
51 }
52
53 .hljs-type,
54 .hljs-title,
55 .hljs-section,
56 .hljs-attribute,
57 .hljs-quote,
58 .hljs-built_in,
59 .hljs-builtin-name {
60 color: #ffa;
61 }
62
63 .hljs-number,
64 .hljs-symbol,
65 .hljs-bullet {
66 color: #d36363;
67 }
68
69 .hljs-keyword,
70 .hljs-selector-tag,
71 .hljs-literal {
72 color: #fcc28c;
73 }
74
75 .hljs-comment,
76 .hljs-deletion,
77 .hljs-code {
78 color: #888;
79 }
80
81 .hljs-regexp,
82 .hljs-link {
83 color: #c6b4f0;
84 }
85
86 .hljs-meta {
87 color: #fc9b9b;
88 }
89
90 .hljs-deletion {
91 background-color: #fc9b9b;
92 color: #333;
93 }
94
95 .hljs-addition {
96 background-color: #a2fca2;
97 color: #333;
98 }
99
100 .hljs a {
101 color: inherit;
102 }
103
104 .hljs a:focus,
105 .hljs a:hover {
106 color: inherit;
107 text-decoration: underline;
108 }