Skip to content

Commit 5e3cd2c

Browse files
committed
Add solarized themes.
1 parent 9a4eb77 commit 5e3cd2c

File tree

2 files changed

+176
-0
lines changed

2 files changed

+176
-0
lines changed

lib/css/solarized_dark.css

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/*
2+
3+
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4+
5+
*/
6+
7+
pre code {
8+
display: block; padding: 0.5em;
9+
background: #002b36; color: #839496;
10+
}
11+
12+
pre .comment,
13+
pre .template_comment,
14+
pre .diff .header,
15+
pre .doctype,
16+
pre .pi,
17+
pre .lisp .string,
18+
pre .javadoc {
19+
color: #586e75;
20+
font-style: italic;
21+
}
22+
23+
pre .keyword,
24+
pre .winutils,
25+
pre .method,
26+
pre .addition,
27+
pre .css .tag,
28+
pre .request,
29+
pre .status,
30+
pre .nginx .title {
31+
color: #859900;
32+
}
33+
34+
pre .number,
35+
pre .command,
36+
pre .string,
37+
pre .tag .value,
38+
pre .phpdoc,
39+
pre .tex .formula,
40+
pre .regexp,
41+
pre .hexcolor {
42+
color: #2aa198;
43+
}
44+
45+
pre .title,
46+
pre .localvars,
47+
pre .chunk,
48+
pre .decorator,
49+
pre .built_in,
50+
pre .identifier,
51+
pre .vhdl .literal,
52+
pre .id {
53+
color: #268bd2;
54+
}
55+
56+
pre .attribute,
57+
pre .variable,
58+
pre .lisp .body,
59+
pre .smalltalk .number,
60+
pre .constant,
61+
pre .class .title,
62+
pre .parent,
63+
pre .haskell .type {
64+
color: #b58900;
65+
}
66+
67+
pre .preprocessor,
68+
pre .preprocessor .keyword,
69+
pre .shebang,
70+
pre .symbol,
71+
pre .symbol .string,
72+
pre .diff .change,
73+
pre .special,
74+
pre .attr_selector,
75+
pre .important,
76+
pre .subst,
77+
pre .cdata,
78+
pre .clojure .title {
79+
color: #cb4b16;
80+
}
81+
82+
pre .deletion {
83+
color: #dc322f;
84+
}
85+
86+
pre .tex .formula {
87+
background: #073642;
88+
}

lib/css/solarized_light.css

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/*
2+
3+
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4+
5+
*/
6+
7+
pre code {
8+
display: block; padding: 0.5em;
9+
background: #fdf6e3; color: #657b83;
10+
}
11+
12+
pre .comment,
13+
pre .template_comment,
14+
pre .diff .header,
15+
pre .doctype,
16+
pre .pi,
17+
pre .lisp .string,
18+
pre .javadoc {
19+
color: #93a1a1;
20+
font-style: italic;
21+
}
22+
23+
pre .keyword,
24+
pre .winutils,
25+
pre .method,
26+
pre .addition,
27+
pre .css .tag,
28+
pre .request,
29+
pre .status,
30+
pre .nginx .title {
31+
color: #859900;
32+
}
33+
34+
pre .number,
35+
pre .command,
36+
pre .string,
37+
pre .tag .value,
38+
pre .phpdoc,
39+
pre .tex .formula,
40+
pre .regexp,
41+
pre .hexcolor {
42+
color: #2aa198;
43+
}
44+
45+
pre .title,
46+
pre .localvars,
47+
pre .chunk,
48+
pre .decorator,
49+
pre .built_in,
50+
pre .identifier,
51+
pre .vhdl .literal,
52+
pre .id {
53+
color: #268bd2;
54+
}
55+
56+
pre .attribute,
57+
pre .variable,
58+
pre .lisp .body,
59+
pre .smalltalk .number,
60+
pre .constant,
61+
pre .class .title,
62+
pre .parent,
63+
pre .haskell .type {
64+
color: #b58900;
65+
}
66+
67+
pre .preprocessor,
68+
pre .preprocessor .keyword,
69+
pre .shebang,
70+
pre .symbol,
71+
pre .symbol .string,
72+
pre .diff .change,
73+
pre .special,
74+
pre .attr_selector,
75+
pre .important,
76+
pre .subst,
77+
pre .cdata,
78+
pre .clojure .title {
79+
color: #cb4b16;
80+
}
81+
82+
pre .deletion {
83+
color: #dc322f;
84+
}
85+
86+
pre .tex .formula {
87+
background: #eee8d5;
88+
}

0 commit comments

Comments
 (0)