comparison themes/siimple/static/styles/xcode.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
3 XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #fff;
12 color: black;
13 }
14
15 /* Gray DOCTYPE selectors like WebKit */
16 .xml .hljs-meta {
17 color: #c0c0c0;
18 }
19
20 .hljs-comment,
21 .hljs-quote {
22 color: #007400;
23 }
24
25 .hljs-tag,
26 .hljs-attribute,
27 .hljs-keyword,
28 .hljs-selector-tag,
29 .hljs-literal,
30 .hljs-name {
31 color: #aa0d91;
32 }
33
34 .hljs-variable,
35 .hljs-template-variable {
36 color: #3F6E74;
37 }
38
39 .hljs-code,
40 .hljs-string,
41 .hljs-meta-string {
42 color: #c41a16;
43 }
44
45 .hljs-regexp,
46 .hljs-link {
47 color: #0E0EFF;
48 }
49
50 .hljs-title,
51 .hljs-symbol,
52 .hljs-bullet,
53 .hljs-number {
54 color: #1c00cf;
55 }
56
57 .hljs-section,
58 .hljs-meta {
59 color: #643820;
60 }
61
62
63 .hljs-class .hljs-title,
64 .hljs-type,
65 .hljs-built_in,
66 .hljs-builtin-name,
67 .hljs-params {
68 color: #5c2699;
69 }
70
71 .hljs-attr {
72 color: #836C28;
73 }
74
75 .hljs-subst {
76 color: #000;
77 }
78
79 .hljs-formula {
80 background-color: #eee;
81 font-style: italic;
82 }
83
84 .hljs-addition {
85 background-color: #baeeba;
86 }
87
88 .hljs-deletion {
89 background-color: #ffc8bd;
90 }
91
92 .hljs-selector-id,
93 .hljs-selector-class {
94 color: #9b703f;
95 }
96
97 .hljs-doctag,
98 .hljs-strong {
99 font-weight: bold;
100 }
101
102 .hljs-emphasis {
103 font-style: italic;
104 }