main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | /*
|
---|
2 | * Visual Studio 2015 dark style
|
---|
3 | * Author: Nicolas LLOBERA <nllobera@gmail.com>
|
---|
4 | */
|
---|
5 |
|
---|
6 | .hljs {
|
---|
7 | display: block;
|
---|
8 | overflow-x: auto;
|
---|
9 | padding: 0.5em;
|
---|
10 | background: #1E1E1E;
|
---|
11 | color: #DCDCDC;
|
---|
12 | }
|
---|
13 |
|
---|
14 | .hljs-keyword,
|
---|
15 | .hljs-literal,
|
---|
16 | .hljs-symbol,
|
---|
17 | .hljs-name {
|
---|
18 | color: #569CD6;
|
---|
19 | }
|
---|
20 | .hljs-link {
|
---|
21 | color: #569CD6;
|
---|
22 | text-decoration: underline;
|
---|
23 | }
|
---|
24 |
|
---|
25 | .hljs-built_in,
|
---|
26 | .hljs-type {
|
---|
27 | color: #4EC9B0;
|
---|
28 | }
|
---|
29 |
|
---|
30 | .hljs-number,
|
---|
31 | .hljs-class {
|
---|
32 | color: #B8D7A3;
|
---|
33 | }
|
---|
34 |
|
---|
35 | .hljs-string,
|
---|
36 | .hljs-meta-string {
|
---|
37 | color: #D69D85;
|
---|
38 | }
|
---|
39 |
|
---|
40 | .hljs-regexp,
|
---|
41 | .hljs-template-tag {
|
---|
42 | color: #9A5334;
|
---|
43 | }
|
---|
44 |
|
---|
45 | .hljs-subst,
|
---|
46 | .hljs-function,
|
---|
47 | .hljs-title,
|
---|
48 | .hljs-params,
|
---|
49 | .hljs-formula {
|
---|
50 | color: #DCDCDC;
|
---|
51 | }
|
---|
52 |
|
---|
53 | .hljs-comment,
|
---|
54 | .hljs-quote {
|
---|
55 | color: #57A64A;
|
---|
56 | font-style: italic;
|
---|
57 | }
|
---|
58 |
|
---|
59 | .hljs-doctag {
|
---|
60 | color: #608B4E;
|
---|
61 | }
|
---|
62 |
|
---|
63 | .hljs-meta,
|
---|
64 | .hljs-meta-keyword,
|
---|
65 | .hljs-tag {
|
---|
66 | color: #9B9B9B;
|
---|
67 | }
|
---|
68 |
|
---|
69 | .hljs-variable,
|
---|
70 | .hljs-template-variable {
|
---|
71 | color: #BD63C5;
|
---|
72 | }
|
---|
73 |
|
---|
74 | .hljs-attr,
|
---|
75 | .hljs-attribute,
|
---|
76 | .hljs-builtin-name {
|
---|
77 | color: #9CDCFE;
|
---|
78 | }
|
---|
79 |
|
---|
80 | .hljs-section {
|
---|
81 | color: gold;
|
---|
82 | }
|
---|
83 |
|
---|
84 | .hljs-emphasis {
|
---|
85 | font-style: italic;
|
---|
86 | }
|
---|
87 |
|
---|
88 | .hljs-strong {
|
---|
89 | font-weight: bold;
|
---|
90 | }
|
---|
91 |
|
---|
92 | /*.hljs-code {
|
---|
93 | font-family:'Monospace';
|
---|
94 | }*/
|
---|
95 |
|
---|
96 | .hljs-bullet,
|
---|
97 | .hljs-selector-tag,
|
---|
98 | .hljs-selector-id,
|
---|
99 | .hljs-selector-class,
|
---|
100 | .hljs-selector-attr,
|
---|
101 | .hljs-selector-pseudo {
|
---|
102 | color: #D7BA7D;
|
---|
103 | }
|
---|
104 |
|
---|
105 | .hljs-addition {
|
---|
106 | background-color: #144212;
|
---|
107 | display: inline-block;
|
---|
108 | width: 100%;
|
---|
109 | }
|
---|
110 |
|
---|
111 | .hljs-deletion {
|
---|
112 | background-color: #600;
|
---|
113 | display: inline-block;
|
---|
114 | width: 100%;
|
---|
115 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.