PluginProbe
Prismatic / 1.9
Prismatic v1.9
trunk 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.9.1 3.0 3.1 3.1.1 3.2 3.2.1 All 40 releases
prismatic / lib / highlight / css / solarized-dark.css

solarized-dark.css in Prismatic 1.9, at lib/highlight/css/solarized-dark.css

85 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: #002b36;
12 color: #839496;
13 }
14
15 .hljs-comment,
16 .hljs-quote {
17 color: #586e75;
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: #073642;
76 }
77
78 .hljs-emphasis {
79 font-style: italic;
80 }
81
82 .hljs-strong {
83 font-weight: bold;
84 }
85