volt-code_highlight 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +35 -0
- data/Rakefile +1 -0
- data/app/code_highlight/assets/css/agate.css +137 -0
- data/app/code_highlight/assets/css/androidstudio.css +53 -0
- data/app/code_highlight/assets/css/arta.css +138 -0
- data/app/code_highlight/assets/css/ascetic.css +52 -0
- data/app/code_highlight/assets/css/atelier-cave.dark.css +113 -0
- data/app/code_highlight/assets/css/atelier-cave.light.css +113 -0
- data/app/code_highlight/assets/css/atelier-dune.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-dune.light.css +94 -0
- data/app/code_highlight/assets/css/atelier-estuary.dark.css +113 -0
- data/app/code_highlight/assets/css/atelier-estuary.light.css +113 -0
- data/app/code_highlight/assets/css/atelier-forest.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-forest.light.css +94 -0
- data/app/code_highlight/assets/css/atelier-heath.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-heath.light.css +94 -0
- data/app/code_highlight/assets/css/atelier-lakeside.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-lakeside.light.css +94 -0
- data/app/code_highlight/assets/css/atelier-plateau.dark.css +113 -0
- data/app/code_highlight/assets/css/atelier-plateau.light.css +113 -0
- data/app/code_highlight/assets/css/atelier-savanna.dark.css +113 -0
- data/app/code_highlight/assets/css/atelier-savanna.light.css +113 -0
- data/app/code_highlight/assets/css/atelier-seaside.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-seaside.light.css +94 -0
- data/app/code_highlight/assets/css/atelier-sulphurpool.dark.css +94 -0
- data/app/code_highlight/assets/css/atelier-sulphurpool.light.css +94 -0
- data/app/code_highlight/assets/css/brown_paper.css +103 -0
- data/app/code_highlight/assets/css/brown_papersq.png +0 -0
- data/app/code_highlight/assets/css/codepen-embed.css +97 -0
- data/app/code_highlight/assets/css/color-brewer.css +165 -0
- data/app/code_highlight/assets/css/dark.css +103 -0
- data/app/code_highlight/assets/css/darkula.css +152 -0
- data/app/code_highlight/assets/css/default.css +155 -0
- data/app/code_highlight/assets/css/docco.css +134 -0
- data/app/code_highlight/assets/css/far.css +110 -0
- data/app/code_highlight/assets/css/foundation.css +135 -0
- data/app/code_highlight/assets/css/github-gist.css +218 -0
- data/app/code_highlight/assets/css/github.css +123 -0
- data/app/code_highlight/assets/css/googlecode.css +144 -0
- data/app/code_highlight/assets/css/grayscale.css +128 -0
- data/app/code_highlight/assets/css/hopscotch.css +95 -0
- data/app/code_highlight/assets/css/hybrid.css +164 -0
- data/app/code_highlight/assets/css/idea.css +122 -0
- data/app/code_highlight/assets/css/ir_black.css +106 -0
- data/app/code_highlight/assets/css/kimbie.dark.css +97 -0
- data/app/code_highlight/assets/css/kimbie.light.css +97 -0
- data/app/code_highlight/assets/css/magula.css +120 -0
- data/app/code_highlight/assets/css/mono-blue.css +68 -0
- data/app/code_highlight/assets/css/monokai.css +126 -0
- data/app/code_highlight/assets/css/monokai_sublime.css +154 -0
- data/app/code_highlight/assets/css/obsidian.css +152 -0
- data/app/code_highlight/assets/css/paraiso.dark.css +96 -0
- data/app/code_highlight/assets/css/paraiso.light.css +96 -0
- data/app/code_highlight/assets/css/pojoaque.css +106 -0
- data/app/code_highlight/assets/css/pojoaque.jpg +0 -0
- data/app/code_highlight/assets/css/railscasts.css +184 -0
- data/app/code_highlight/assets/css/rainbow.css +107 -0
- data/app/code_highlight/assets/css/school_book.css +111 -0
- data/app/code_highlight/assets/css/school_book.png +0 -0
- data/app/code_highlight/assets/css/solarized_dark.css +107 -0
- data/app/code_highlight/assets/css/solarized_light.css +107 -0
- data/app/code_highlight/assets/css/sunburst.css +161 -0
- data/app/code_highlight/assets/css/tomorrow-night-blue.css +96 -0
- data/app/code_highlight/assets/css/tomorrow-night-bright.css +95 -0
- data/app/code_highlight/assets/css/tomorrow-night-eighties.css +95 -0
- data/app/code_highlight/assets/css/tomorrow-night.css +96 -0
- data/app/code_highlight/assets/css/tomorrow.css +93 -0
- data/app/code_highlight/assets/css/vs.css +92 -0
- data/app/code_highlight/assets/css/xcode.css +154 -0
- data/app/code_highlight/assets/css/zenburn.css +118 -0
- data/app/code_highlight/assets/js/highlight.pack.js +1 -0
- data/app/code_highlight/config/dependencies.rb +5 -0
- data/app/code_highlight/config/initializers/boot.rb +10 -0
- data/app/code_highlight/config/routes.rb +1 -0
- data/app/code_highlight/controllers/main_controller.rb +32 -0
- data/app/code_highlight/views/main/index.html +1 -0
- data/lib/volt/code_highlight.rb +18 -0
- data/lib/volt/code_highlight/version.rb +5 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/volt/code_highlight_spec.rb +11 -0
- data/volt-code_highlight.gemspec +23 -0
- metadata +174 -0
@@ -0,0 +1,94 @@
|
|
1
|
+
/* Base16 Atelier Heath Light - Theme */
|
2
|
+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
3
|
+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
4
|
+
|
5
|
+
/* Atelier-Heath Comment */
|
6
|
+
.hljs-comment {
|
7
|
+
color: #776977;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* Atelier-Heath Red */
|
11
|
+
.hljs-variable,
|
12
|
+
.hljs-attribute,
|
13
|
+
.hljs-tag,
|
14
|
+
.hljs-regexp,
|
15
|
+
.hljs-name,
|
16
|
+
.ruby .hljs-constant,
|
17
|
+
.xml .hljs-tag .hljs-title,
|
18
|
+
.xml .hljs-pi,
|
19
|
+
.xml .hljs-doctype,
|
20
|
+
.html .hljs-doctype,
|
21
|
+
.css .hljs-id,
|
22
|
+
.css .hljs-class,
|
23
|
+
.css .hljs-pseudo {
|
24
|
+
color: #ca402b;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Atelier-Heath Orange */
|
28
|
+
.hljs-number,
|
29
|
+
.hljs-preprocessor,
|
30
|
+
.hljs-built_in,
|
31
|
+
.hljs-literal,
|
32
|
+
.hljs-params,
|
33
|
+
.hljs-constant {
|
34
|
+
color: #a65926;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Atelier-Heath Yellow */
|
38
|
+
.ruby .hljs-class .hljs-title,
|
39
|
+
.css .hljs-rule .hljs-attribute {
|
40
|
+
color: #bb8a35;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Atelier-Heath Green */
|
44
|
+
.hljs-string,
|
45
|
+
.hljs-value,
|
46
|
+
.hljs-inheritance,
|
47
|
+
.hljs-header,
|
48
|
+
.ruby .hljs-symbol,
|
49
|
+
.xml .hljs-cdata {
|
50
|
+
color: #918b3b;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Atelier-Heath Aqua */
|
54
|
+
.hljs-title,
|
55
|
+
.css .hljs-hexcolor {
|
56
|
+
color: #159393;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Atelier-Heath Blue */
|
60
|
+
.hljs-function,
|
61
|
+
.python .hljs-decorator,
|
62
|
+
.python .hljs-title,
|
63
|
+
.ruby .hljs-function .hljs-title,
|
64
|
+
.ruby .hljs-title .hljs-keyword,
|
65
|
+
.perl .hljs-sub,
|
66
|
+
.javascript .hljs-title,
|
67
|
+
.coffeescript .hljs-title {
|
68
|
+
color: #516aec;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Atelier-Heath Purple */
|
72
|
+
.hljs-keyword,
|
73
|
+
.javascript .hljs-function {
|
74
|
+
color: #7b59c0;
|
75
|
+
}
|
76
|
+
|
77
|
+
.hljs {
|
78
|
+
display: block;
|
79
|
+
overflow-x: auto;
|
80
|
+
background: #f7f3f7;
|
81
|
+
color: #695d69;
|
82
|
+
padding: 0.5em;
|
83
|
+
-webkit-text-size-adjust: none;
|
84
|
+
}
|
85
|
+
|
86
|
+
.coffeescript .javascript,
|
87
|
+
.javascript .xml,
|
88
|
+
.tex .hljs-formula,
|
89
|
+
.xml .javascript,
|
90
|
+
.xml .vbscript,
|
91
|
+
.xml .css,
|
92
|
+
.xml .hljs-cdata {
|
93
|
+
opacity: 0.5;
|
94
|
+
}
|
@@ -0,0 +1,94 @@
|
|
1
|
+
/* Base16 Atelier Lakeside Dark - Theme */
|
2
|
+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
|
3
|
+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
4
|
+
|
5
|
+
/* Atelier-Lakeside Comment */
|
6
|
+
.hljs-comment {
|
7
|
+
color: #7195a8;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* Atelier-Lakeside Red */
|
11
|
+
.hljs-variable,
|
12
|
+
.hljs-attribute,
|
13
|
+
.hljs-tag,
|
14
|
+
.hljs-regexp,
|
15
|
+
.hljs-name,
|
16
|
+
.ruby .hljs-constant,
|
17
|
+
.xml .hljs-tag .hljs-title,
|
18
|
+
.xml .hljs-pi,
|
19
|
+
.xml .hljs-doctype,
|
20
|
+
.html .hljs-doctype,
|
21
|
+
.css .hljs-id,
|
22
|
+
.css .hljs-class,
|
23
|
+
.css .hljs-pseudo {
|
24
|
+
color: #d22d72;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Atelier-Lakeside Orange */
|
28
|
+
.hljs-number,
|
29
|
+
.hljs-preprocessor,
|
30
|
+
.hljs-built_in,
|
31
|
+
.hljs-literal,
|
32
|
+
.hljs-params,
|
33
|
+
.hljs-constant {
|
34
|
+
color: #935c25;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Atelier-Lakeside Yellow */
|
38
|
+
.ruby .hljs-class .hljs-title,
|
39
|
+
.css .hljs-rule .hljs-attribute {
|
40
|
+
color: #8a8a0f;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Atelier-Lakeside Green */
|
44
|
+
.hljs-string,
|
45
|
+
.hljs-value,
|
46
|
+
.hljs-inheritance,
|
47
|
+
.hljs-header,
|
48
|
+
.ruby .hljs-symbol,
|
49
|
+
.xml .hljs-cdata {
|
50
|
+
color: #568c3b;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Atelier-Lakeside Aqua */
|
54
|
+
.hljs-title,
|
55
|
+
.css .hljs-hexcolor {
|
56
|
+
color: #2d8f6f;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Atelier-Lakeside Blue */
|
60
|
+
.hljs-function,
|
61
|
+
.python .hljs-decorator,
|
62
|
+
.python .hljs-title,
|
63
|
+
.ruby .hljs-function .hljs-title,
|
64
|
+
.ruby .hljs-title .hljs-keyword,
|
65
|
+
.perl .hljs-sub,
|
66
|
+
.javascript .hljs-title,
|
67
|
+
.coffeescript .hljs-title {
|
68
|
+
color: #257fad;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Atelier-Lakeside Purple */
|
72
|
+
.hljs-keyword,
|
73
|
+
.javascript .hljs-function {
|
74
|
+
color: #6b6bb8;
|
75
|
+
}
|
76
|
+
|
77
|
+
.hljs {
|
78
|
+
display: block;
|
79
|
+
overflow-x: auto;
|
80
|
+
background: #161b1d;
|
81
|
+
color: #7ea2b4;
|
82
|
+
padding: 0.5em;
|
83
|
+
-webkit-text-size-adjust: none;
|
84
|
+
}
|
85
|
+
|
86
|
+
.coffeescript .javascript,
|
87
|
+
.javascript .xml,
|
88
|
+
.tex .hljs-formula,
|
89
|
+
.xml .javascript,
|
90
|
+
.xml .vbscript,
|
91
|
+
.xml .css,
|
92
|
+
.xml .hljs-cdata {
|
93
|
+
opacity: 0.5;
|
94
|
+
}
|
@@ -0,0 +1,94 @@
|
|
1
|
+
/* Base16 Atelier Lakeside Light - Theme */
|
2
|
+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */
|
3
|
+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
4
|
+
|
5
|
+
/* Atelier-Lakeside Comment */
|
6
|
+
.hljs-comment {
|
7
|
+
color: #5a7b8c;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* Atelier-Lakeside Red */
|
11
|
+
.hljs-variable,
|
12
|
+
.hljs-attribute,
|
13
|
+
.hljs-tag,
|
14
|
+
.hljs-regexp,
|
15
|
+
.hljs-name,
|
16
|
+
.ruby .hljs-constant,
|
17
|
+
.xml .hljs-tag .hljs-title,
|
18
|
+
.xml .hljs-pi,
|
19
|
+
.xml .hljs-doctype,
|
20
|
+
.html .hljs-doctype,
|
21
|
+
.css .hljs-id,
|
22
|
+
.css .hljs-class,
|
23
|
+
.css .hljs-pseudo {
|
24
|
+
color: #d22d72;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Atelier-Lakeside Orange */
|
28
|
+
.hljs-number,
|
29
|
+
.hljs-preprocessor,
|
30
|
+
.hljs-built_in,
|
31
|
+
.hljs-literal,
|
32
|
+
.hljs-params,
|
33
|
+
.hljs-constant {
|
34
|
+
color: #935c25;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Atelier-Lakeside Yellow */
|
38
|
+
.ruby .hljs-class .hljs-title,
|
39
|
+
.css .hljs-rule .hljs-attribute {
|
40
|
+
color: #8a8a0f;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Atelier-Lakeside Green */
|
44
|
+
.hljs-string,
|
45
|
+
.hljs-value,
|
46
|
+
.hljs-inheritance,
|
47
|
+
.hljs-header,
|
48
|
+
.ruby .hljs-symbol,
|
49
|
+
.xml .hljs-cdata {
|
50
|
+
color: #568c3b;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Atelier-Lakeside Aqua */
|
54
|
+
.hljs-title,
|
55
|
+
.css .hljs-hexcolor {
|
56
|
+
color: #2d8f6f;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Atelier-Lakeside Blue */
|
60
|
+
.hljs-function,
|
61
|
+
.python .hljs-decorator,
|
62
|
+
.python .hljs-title,
|
63
|
+
.ruby .hljs-function .hljs-title,
|
64
|
+
.ruby .hljs-title .hljs-keyword,
|
65
|
+
.perl .hljs-sub,
|
66
|
+
.javascript .hljs-title,
|
67
|
+
.coffeescript .hljs-title {
|
68
|
+
color: #257fad;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Atelier-Lakeside Purple */
|
72
|
+
.hljs-keyword,
|
73
|
+
.javascript .hljs-function {
|
74
|
+
color: #6b6bb8;
|
75
|
+
}
|
76
|
+
|
77
|
+
.hljs {
|
78
|
+
display: block;
|
79
|
+
overflow-x: auto;
|
80
|
+
background: #ebf8ff;
|
81
|
+
color: #516d7b;
|
82
|
+
padding: 0.5em;
|
83
|
+
-webkit-text-size-adjust: none;
|
84
|
+
}
|
85
|
+
|
86
|
+
.coffeescript .javascript,
|
87
|
+
.javascript .xml,
|
88
|
+
.tex .hljs-formula,
|
89
|
+
.xml .javascript,
|
90
|
+
.xml .vbscript,
|
91
|
+
.xml .css,
|
92
|
+
.xml .hljs-cdata {
|
93
|
+
opacity: 0.5;
|
94
|
+
}
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* Base16 Atelier Plateau Dark - Theme */
|
2
|
+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
|
3
|
+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
4
|
+
|
5
|
+
/* Atelier-Plateau Comment */
|
6
|
+
.hljs-comment {
|
7
|
+
color: #7e7777;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* Atelier-Plateau Red */
|
11
|
+
.hljs-variable,
|
12
|
+
.hljs-attribute,
|
13
|
+
.hljs-tag,
|
14
|
+
.hljs-regexp,
|
15
|
+
.hljs-name,
|
16
|
+
.ruby .hljs-constant,
|
17
|
+
.xml .hljs-tag .hljs-title,
|
18
|
+
.xml .hljs-pi,
|
19
|
+
.xml .hljs-doctype,
|
20
|
+
.html .hljs-doctype,
|
21
|
+
.css .hljs-id,
|
22
|
+
.css .hljs-class,
|
23
|
+
.css .hljs-pseudo {
|
24
|
+
color: #ca4949;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Atelier-Plateau Orange */
|
28
|
+
.hljs-number,
|
29
|
+
.hljs-preprocessor,
|
30
|
+
.hljs-built_in,
|
31
|
+
.hljs-literal,
|
32
|
+
.hljs-params,
|
33
|
+
.hljs-constant {
|
34
|
+
color: #b45a3c;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Atelier-Plateau Yellow */
|
38
|
+
.ruby .hljs-class .hljs-title,
|
39
|
+
.css .hljs-rule .hljs-attribute {
|
40
|
+
color: #a06e3b;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Atelier-Plateau Green */
|
44
|
+
.hljs-string,
|
45
|
+
.hljs-value,
|
46
|
+
.hljs-inheritance,
|
47
|
+
.hljs-header,
|
48
|
+
.ruby .hljs-symbol,
|
49
|
+
.xml .hljs-cdata {
|
50
|
+
color: #4b8b8b;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Atelier-Plateau Aqua */
|
54
|
+
.hljs-title,
|
55
|
+
.css .hljs-hexcolor {
|
56
|
+
color: #5485b6;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Atelier-Plateau Blue */
|
60
|
+
.hljs-function,
|
61
|
+
.python .hljs-decorator,
|
62
|
+
.python .hljs-title,
|
63
|
+
.ruby .hljs-function .hljs-title,
|
64
|
+
.ruby .hljs-title .hljs-keyword,
|
65
|
+
.perl .hljs-sub,
|
66
|
+
.javascript .hljs-title,
|
67
|
+
.coffeescript .hljs-title {
|
68
|
+
color: #7272ca;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Atelier-Plateau Purple */
|
72
|
+
.hljs-keyword,
|
73
|
+
.javascript .hljs-function {
|
74
|
+
color: #8464c4;
|
75
|
+
}
|
76
|
+
|
77
|
+
.diff .hljs-deletion,
|
78
|
+
.diff .hljs-addition {
|
79
|
+
color: #1b1818;
|
80
|
+
display: inline-block;
|
81
|
+
width: 100%;
|
82
|
+
}
|
83
|
+
|
84
|
+
.diff .hljs-deletion {
|
85
|
+
background-color: #ca4949;
|
86
|
+
}
|
87
|
+
|
88
|
+
.diff .hljs-addition {
|
89
|
+
background-color: #4b8b8b;
|
90
|
+
}
|
91
|
+
|
92
|
+
.diff .hljs-change {
|
93
|
+
color: #7272ca;
|
94
|
+
}
|
95
|
+
|
96
|
+
.hljs {
|
97
|
+
display: block;
|
98
|
+
overflow-x: auto;
|
99
|
+
background: #1b1818;
|
100
|
+
color: #8a8585;
|
101
|
+
padding: 0.5em;
|
102
|
+
-webkit-text-size-adjust: none;
|
103
|
+
}
|
104
|
+
|
105
|
+
.coffeescript .javascript,
|
106
|
+
.javascript .xml,
|
107
|
+
.tex .hljs-formula,
|
108
|
+
.xml .javascript,
|
109
|
+
.xml .vbscript,
|
110
|
+
.xml .css,
|
111
|
+
.xml .hljs-cdata {
|
112
|
+
opacity: 0.5;
|
113
|
+
}
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* Base16 Atelier Plateau Light - Theme */
|
2
|
+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
|
3
|
+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
4
|
+
|
5
|
+
/* Atelier-Plateau Comment */
|
6
|
+
.hljs-comment {
|
7
|
+
color: #655d5d;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* Atelier-Plateau Red */
|
11
|
+
.hljs-variable,
|
12
|
+
.hljs-attribute,
|
13
|
+
.hljs-tag,
|
14
|
+
.hljs-regexp,
|
15
|
+
.hljs-name,
|
16
|
+
.ruby .hljs-constant,
|
17
|
+
.xml .hljs-tag .hljs-title,
|
18
|
+
.xml .hljs-pi,
|
19
|
+
.xml .hljs-doctype,
|
20
|
+
.html .hljs-doctype,
|
21
|
+
.css .hljs-id,
|
22
|
+
.css .hljs-class,
|
23
|
+
.css .hljs-pseudo {
|
24
|
+
color: #ca4949;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Atelier-Plateau Orange */
|
28
|
+
.hljs-number,
|
29
|
+
.hljs-preprocessor,
|
30
|
+
.hljs-built_in,
|
31
|
+
.hljs-literal,
|
32
|
+
.hljs-params,
|
33
|
+
.hljs-constant {
|
34
|
+
color: #b45a3c;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Atelier-Plateau Yellow */
|
38
|
+
.ruby .hljs-class .hljs-title,
|
39
|
+
.css .hljs-rule .hljs-attribute {
|
40
|
+
color: #a06e3b;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Atelier-Plateau Green */
|
44
|
+
.hljs-string,
|
45
|
+
.hljs-value,
|
46
|
+
.hljs-inheritance,
|
47
|
+
.hljs-header,
|
48
|
+
.ruby .hljs-symbol,
|
49
|
+
.xml .hljs-cdata {
|
50
|
+
color: #4b8b8b;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Atelier-Plateau Aqua */
|
54
|
+
.hljs-title,
|
55
|
+
.css .hljs-hexcolor {
|
56
|
+
color: #5485b6;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Atelier-Plateau Blue */
|
60
|
+
.hljs-function,
|
61
|
+
.python .hljs-decorator,
|
62
|
+
.python .hljs-title,
|
63
|
+
.ruby .hljs-function .hljs-title,
|
64
|
+
.ruby .hljs-title .hljs-keyword,
|
65
|
+
.perl .hljs-sub,
|
66
|
+
.javascript .hljs-title,
|
67
|
+
.coffeescript .hljs-title {
|
68
|
+
color: #7272ca;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Atelier-Plateau Purple */
|
72
|
+
.hljs-keyword,
|
73
|
+
.javascript .hljs-function {
|
74
|
+
color: #8464c4;
|
75
|
+
}
|
76
|
+
|
77
|
+
.diff .hljs-deletion,
|
78
|
+
.diff .hljs-addition {
|
79
|
+
color: #1b1818;
|
80
|
+
display: inline-block;
|
81
|
+
width: 100%;
|
82
|
+
}
|
83
|
+
|
84
|
+
.diff .hljs-deletion {
|
85
|
+
background-color: #ca4949;
|
86
|
+
}
|
87
|
+
|
88
|
+
.diff .hljs-addition {
|
89
|
+
background-color: #4b8b8b;
|
90
|
+
}
|
91
|
+
|
92
|
+
.diff .hljs-change {
|
93
|
+
color: #7272ca;
|
94
|
+
}
|
95
|
+
|
96
|
+
.hljs {
|
97
|
+
display: block;
|
98
|
+
overflow-x: auto;
|
99
|
+
background: #f4ecec;
|
100
|
+
color: #585050;
|
101
|
+
padding: 0.5em;
|
102
|
+
-webkit-text-size-adjust: none;
|
103
|
+
}
|
104
|
+
|
105
|
+
.coffeescript .javascript,
|
106
|
+
.javascript .xml,
|
107
|
+
.tex .hljs-formula,
|
108
|
+
.xml .javascript,
|
109
|
+
.xml .vbscript,
|
110
|
+
.xml .css,
|
111
|
+
.xml .hljs-cdata {
|
112
|
+
opacity: 0.5;
|
113
|
+
}
|