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.1 KB
|
Line | |
---|
1 | /*
|
---|
2 |
|
---|
3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
---|
4 |
|
---|
5 | */
|
---|
6 |
|
---|
7 | .hljs {
|
---|
8 | display: block;
|
---|
9 | overflow-x: auto;
|
---|
10 | padding: 0.5em;
|
---|
11 | background: #fdf6e3;
|
---|
12 | color: #657b83;
|
---|
13 | }
|
---|
14 |
|
---|
15 | .hljs-comment,
|
---|
16 | .hljs-quote {
|
---|
17 | color: #93a1a1;
|
---|
18 | }
|
---|
19 |
|
---|
20 | /* Solarized Green */
|
---|
21 | .hljs-keyword,
|
---|
22 | .hljs-selector-tag,
|
---|
23 | .hljs-addition {
|
---|
24 | color: #859900;
|
---|
25 | }
|
---|
26 |
|
---|
27 | /* Solarized Cyan */
|
---|
28 | .hljs-number,
|
---|
29 | .hljs-string,
|
---|
30 | .hljs-meta .hljs-meta-string,
|
---|
31 | .hljs-literal,
|
---|
32 | .hljs-doctag,
|
---|
33 | .hljs-regexp {
|
---|
34 | color: #2aa198;
|
---|
35 | }
|
---|
36 |
|
---|
37 | /* Solarized Blue */
|
---|
38 | .hljs-title,
|
---|
39 | .hljs-section,
|
---|
40 | .hljs-name,
|
---|
41 | .hljs-selector-id,
|
---|
42 | .hljs-selector-class {
|
---|
43 | color: #268bd2;
|
---|
44 | }
|
---|
45 |
|
---|
46 | /* Solarized Yellow */
|
---|
47 | .hljs-attribute,
|
---|
48 | .hljs-attr,
|
---|
49 | .hljs-variable,
|
---|
50 | .hljs-template-variable,
|
---|
51 | .hljs-class .hljs-title,
|
---|
52 | .hljs-type {
|
---|
53 | color: #b58900;
|
---|
54 | }
|
---|
55 |
|
---|
56 | /* Solarized Orange */
|
---|
57 | .hljs-symbol,
|
---|
58 | .hljs-bullet,
|
---|
59 | .hljs-subst,
|
---|
60 | .hljs-meta,
|
---|
61 | .hljs-meta .hljs-keyword,
|
---|
62 | .hljs-selector-attr,
|
---|
63 | .hljs-selector-pseudo,
|
---|
64 | .hljs-link {
|
---|
65 | color: #cb4b16;
|
---|
66 | }
|
---|
67 |
|
---|
68 | /* Solarized Red */
|
---|
69 | .hljs-built_in,
|
---|
70 | .hljs-deletion {
|
---|
71 | color: #dc322f;
|
---|
72 | }
|
---|
73 |
|
---|
74 | .hljs-formula {
|
---|
75 | background: #eee8d5;
|
---|
76 | }
|
---|
77 |
|
---|
78 | .hljs-emphasis {
|
---|
79 | font-style: italic;
|
---|
80 | }
|
---|
81 |
|
---|
82 | .hljs-strong {
|
---|
83 | font-weight: bold;
|
---|
84 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.