main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | /* Base16 Atelier Cave Dark - Theme */
|
---|
2 | /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
|
---|
3 | /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
---|
4 |
|
---|
5 | /* Atelier-Cave Comment */
|
---|
6 | .hljs-comment,
|
---|
7 | .hljs-quote {
|
---|
8 | color: #7e7887;
|
---|
9 | }
|
---|
10 |
|
---|
11 | /* Atelier-Cave Red */
|
---|
12 | .hljs-variable,
|
---|
13 | .hljs-template-variable,
|
---|
14 | .hljs-attribute,
|
---|
15 | .hljs-regexp,
|
---|
16 | .hljs-link,
|
---|
17 | .hljs-tag,
|
---|
18 | .hljs-name,
|
---|
19 | .hljs-selector-id,
|
---|
20 | .hljs-selector-class {
|
---|
21 | color: #be4678;
|
---|
22 | }
|
---|
23 |
|
---|
24 | /* Atelier-Cave Orange */
|
---|
25 | .hljs-number,
|
---|
26 | .hljs-meta,
|
---|
27 | .hljs-built_in,
|
---|
28 | .hljs-builtin-name,
|
---|
29 | .hljs-literal,
|
---|
30 | .hljs-type,
|
---|
31 | .hljs-params {
|
---|
32 | color: #aa573c;
|
---|
33 | }
|
---|
34 |
|
---|
35 | /* Atelier-Cave Green */
|
---|
36 | .hljs-string,
|
---|
37 | .hljs-symbol,
|
---|
38 | .hljs-bullet {
|
---|
39 | color: #2a9292;
|
---|
40 | }
|
---|
41 |
|
---|
42 | /* Atelier-Cave Blue */
|
---|
43 | .hljs-title,
|
---|
44 | .hljs-section {
|
---|
45 | color: #576ddb;
|
---|
46 | }
|
---|
47 |
|
---|
48 | /* Atelier-Cave Purple */
|
---|
49 | .hljs-keyword,
|
---|
50 | .hljs-selector-tag {
|
---|
51 | color: #955ae7;
|
---|
52 | }
|
---|
53 |
|
---|
54 | .hljs-deletion,
|
---|
55 | .hljs-addition {
|
---|
56 | color: #19171c;
|
---|
57 | display: inline-block;
|
---|
58 | width: 100%;
|
---|
59 | }
|
---|
60 |
|
---|
61 | .hljs-deletion {
|
---|
62 | background-color: #be4678;
|
---|
63 | }
|
---|
64 |
|
---|
65 | .hljs-addition {
|
---|
66 | background-color: #2a9292;
|
---|
67 | }
|
---|
68 |
|
---|
69 | .hljs {
|
---|
70 | display: block;
|
---|
71 | overflow-x: auto;
|
---|
72 | background: #19171c;
|
---|
73 | color: #8b8792;
|
---|
74 | padding: 0.5em;
|
---|
75 | }
|
---|
76 |
|
---|
77 | .hljs-emphasis {
|
---|
78 | font-style: italic;
|
---|
79 | }
|
---|
80 |
|
---|
81 | .hljs-strong {
|
---|
82 | font-weight: bold;
|
---|
83 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.