Skip to content

Commit 7dfa256

Browse files
committed
"Tomorrow" themes family. Thanks to Yoshihide Jimbo.
1 parent 4408e58 commit 7dfa256

8 files changed

Lines changed: 235 additions & 4 deletions

AUTHORS.en.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ Contributors:
6060
- Jason Tate <adminz@web-cms-designs.com>
6161
- Sergey Tikhomirov <me@stikhomirov.com>
6262
- Marc Fornos <marc.fornos@gmail.com>
63-
63+
- Yoshihide Jimbo <yjimbo@gmail.com>

AUTHORS.ru.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ URL: http://softwaremaniacs.org/soft/highlight/
6060
- Джейсон Тейт <adminz@web-cms-designs.com>
6161
- Сергей Тихомиров <me@stikhomirov.com>
6262
- Марк Форнос <marc.fornos@gmail.com>
63+
- Йошихиде Джимбо <yjimbo@gmail.com>

src/styles/tomorrow-night-blue.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/* Tomorrow Night Blue Theme */
2+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
4+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5+
.tomorrow-comment, pre .comment, pre .title {
6+
color: #7285b7;
7+
}
8+
9+
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
10+
color: #ff9da4;
11+
}
12+
13+
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
14+
color: #ffc58f;
15+
}
16+
17+
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
18+
color: #ffeead;
19+
}
20+
21+
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
22+
color: #d1f1a9;
23+
}
24+
25+
.tomorrow-aqua, pre .css .hexcolor {
26+
color: #99ffff;
27+
}
28+
29+
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
30+
color: #bbdaff;
31+
}
32+
33+
.tomorrow-purple, pre .keyword, pre .javascript .function {
34+
color: #ebbbff;
35+
}
36+
37+
pre code {
38+
display: block;
39+
background: #002451;
40+
color: white;
41+
font-family: Menlo, Monaco, Consolas, monospace;
42+
font-size: 12px;
43+
line-height: 1.5;
44+
border: 1px solid #ccc;
45+
padding: 10px;
46+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* Tomorrow Night Bright Theme */
2+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
3+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4+
.tomorrow-comment, pre .comment, pre .title {
5+
color: #969896;
6+
}
7+
8+
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
9+
color: #d54e53;
10+
}
11+
12+
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
13+
color: #e78c45;
14+
}
15+
16+
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
17+
color: #e7c547;
18+
}
19+
20+
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
21+
color: #b9ca4a;
22+
}
23+
24+
.tomorrow-aqua, pre .css .hexcolor {
25+
color: #70c0b1;
26+
}
27+
28+
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
29+
color: #7aa6da;
30+
}
31+
32+
.tomorrow-purple, pre .keyword, pre .javascript .function {
33+
color: #c397d8;
34+
}
35+
36+
pre code {
37+
display: block;
38+
background: black;
39+
color: #eaeaea;
40+
font-family: Menlo, Monaco, Consolas, monospace;
41+
font-size: 12px;
42+
line-height: 1.5;
43+
border: 1px solid #ccc;
44+
padding: 10px;
45+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* Tomorrow Night Eighties Theme */
2+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
3+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4+
.tomorrow-comment, pre .comment, pre .title {
5+
color: #999999;
6+
}
7+
8+
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
9+
color: #f2777a;
10+
}
11+
12+
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
13+
color: #f99157;
14+
}
15+
16+
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
17+
color: #ffcc66;
18+
}
19+
20+
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
21+
color: #99cc99;
22+
}
23+
24+
.tomorrow-aqua, pre .css .hexcolor {
25+
color: #66cccc;
26+
}
27+
28+
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
29+
color: #6699cc;
30+
}
31+
32+
.tomorrow-purple, pre .keyword, pre .javascript .function {
33+
color: #cc99cc;
34+
}
35+
36+
pre code {
37+
display: block;
38+
background: #2d2d2d;
39+
color: #cccccc;
40+
font-family: Menlo, Monaco, Consolas, monospace;
41+
font-size: 12px;
42+
line-height: 1.5;
43+
border: 1px solid #ccc;
44+
padding: 10px;
45+
}

src/styles/tomorrow-night.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/* Tomorrow Night Theme */
2+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
4+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5+
.tomorrow-comment, pre .comment, pre .title {
6+
color: #969896;
7+
}
8+
9+
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
10+
color: #cc6666;
11+
}
12+
13+
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
14+
color: #de935f;
15+
}
16+
17+
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
18+
color: #f0c674;
19+
}
20+
21+
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
22+
color: #b5bd68;
23+
}
24+
25+
.tomorrow-aqua, pre .css .hexcolor {
26+
color: #8abeb7;
27+
}
28+
29+
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
30+
color: #81a2be;
31+
}
32+
33+
.tomorrow-purple, pre .keyword, pre .javascript .function {
34+
color: #b294bb;
35+
}
36+
37+
pre code {
38+
display: block;
39+
background: #1d1f21;
40+
color: #c5c8c6;
41+
font-family: Menlo, Monaco, Consolas, monospace;
42+
font-size: 12px;
43+
line-height: 1.5;
44+
border: 1px solid #ccc;
45+
padding: 10px;
46+
}

src/styles/tomorrow.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2+
.tomorrow-comment, pre .comment, pre .title {
3+
color: #8e908c;
4+
}
5+
6+
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
7+
color: #c82829;
8+
}
9+
10+
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
11+
color: #f5871f;
12+
}
13+
14+
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
15+
color: #eab700;
16+
}
17+
18+
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
19+
color: #718c00;
20+
}
21+
22+
.tomorrow-aqua, pre .css .hexcolor {
23+
color: #3e999f;
24+
}
25+
26+
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
27+
color: #4271ae;
28+
}
29+
30+
.tomorrow-purple, pre .keyword, pre .javascript .function {
31+
color: #8959a8;
32+
}
33+
34+
pre code {
35+
display: block;
36+
background: white;
37+
color: #4d4d4c;
38+
font-family: Menlo, Monaco, Consolas, monospace;
39+
font-size: 12px;
40+
line-height: 1.5;
41+
border: 1px solid #ccc;
42+
padding: 10px;
43+
}

src/test.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
<link rel="alternate stylesheet" title="XCode" href="styles/xcode.css">
2525
<link rel="alternate stylesheet" title="Pojoaque" href="styles/pojoaque.css">
2626
<link rel="alternate stylesheet" title="Rainbow" href="styles/rainbow.css">
27+
<link rel="alternate stylesheet" title="Tomorrow" href="styles/tomorrow.css">
28+
<link rel="alternate stylesheet" title="Tomorrow Night" href="styles/tomorrow-night.css">
29+
<link rel="alternate stylesheet" title="Tomorrow Night Bright" href="styles/tomorrow-night-bright.css">
30+
<link rel="alternate stylesheet" title="Tomorrow Night Blue" href="styles/tomorrow-night-blue.css">
31+
<link rel="alternate stylesheet" title="Tomorrow Night Eighties" href="styles/tomorrow-night-eighties.css">
32+
2733

2834
<style>
2935
body {
@@ -52,19 +58,18 @@
5258
margin: 0; font-size: medium;
5359
}
5460
#switch {
55-
overflow: auto; width: 57em;
61+
overflow: auto; width: 67em;
5662
list-style: none;
5763
padding: 0; margin: 0;
5864
}
5965
#switch li {
60-
float: left; width: 10em;
66+
float: left; width: 12em;
6167
padding: 0.1em; margin: 0.1em 1em 0.1em 0;
6268
background: #EEE;
6369
cursor: pointer;
6470
}
6571
#switch li.current {
6672
background: #CCC;
67-
font-weight: bold;
6873
}
6974
.test {
7075
color: #888;

0 commit comments

Comments
 (0)