stylin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/Rakefile +21 -0
  3. data/app/assets/javascripts/stylin/application.js +4 -0
  4. data/app/assets/javascripts/stylin/highlight.pack.js +1 -0
  5. data/app/assets/javascripts/stylin/kss.js +54 -0
  6. data/app/assets/javascripts/stylin/styleguides.js +2 -0
  7. data/app/assets/stylesheets/stylin/_header.scss +12 -0
  8. data/app/assets/stylesheets/stylin/_navigation.css.scss +12 -0
  9. data/app/assets/stylesheets/stylin/application.css.scss +5 -0
  10. data/app/assets/stylesheets/stylin/highlight/arta.css +160 -0
  11. data/app/assets/stylesheets/stylin/highlight/ascetic.css +50 -0
  12. data/app/assets/stylesheets/stylin/highlight/brown_paper.css +105 -0
  13. data/app/assets/stylesheets/stylin/highlight/dark.css +105 -0
  14. data/app/assets/stylesheets/stylin/highlight/default.css +153 -0
  15. data/app/assets/stylesheets/stylin/highlight/docco.css +132 -0
  16. data/app/assets/stylesheets/stylin/highlight/far.css +113 -0
  17. data/app/assets/stylesheets/stylin/highlight/foundation.css +133 -0
  18. data/app/assets/stylesheets/stylin/highlight/github.css +125 -0
  19. data/app/assets/stylesheets/stylin/highlight/googlecode.css +147 -0
  20. data/app/assets/stylesheets/stylin/highlight/idea.css +122 -0
  21. data/app/assets/stylesheets/stylin/highlight/ir_black.css +105 -0
  22. data/app/assets/stylesheets/stylin/highlight/magula.css +123 -0
  23. data/app/assets/stylesheets/stylin/highlight/mono-blue.css +62 -0
  24. data/app/assets/stylesheets/stylin/highlight/monokai.css +127 -0
  25. data/app/assets/stylesheets/stylin/highlight/monokai_sublime.css +149 -0
  26. data/app/assets/stylesheets/stylin/highlight/obsidian.css +154 -0
  27. data/app/assets/stylesheets/stylin/highlight/pojoaque.css +106 -0
  28. data/app/assets/stylesheets/stylin/highlight/railscasts.css +182 -0
  29. data/app/assets/stylesheets/stylin/highlight/rainbow.css +112 -0
  30. data/app/assets/stylesheets/stylin/highlight/school_book.css +113 -0
  31. data/app/assets/stylesheets/stylin/highlight/solarized_dark.css +107 -0
  32. data/app/assets/stylesheets/stylin/highlight/solarized_light.css +107 -0
  33. data/app/assets/stylesheets/stylin/highlight/sunburst.css +160 -0
  34. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-blue.css +93 -0
  35. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-bright.css +92 -0
  36. data/app/assets/stylesheets/stylin/highlight/tomorrow-night-eighties.css +92 -0
  37. data/app/assets/stylesheets/stylin/highlight/tomorrow-night.css +93 -0
  38. data/app/assets/stylesheets/stylin/highlight/tomorrow.css +90 -0
  39. data/app/assets/stylesheets/stylin/highlight/vs.css +89 -0
  40. data/app/assets/stylesheets/stylin/highlight/xcode.css +158 -0
  41. data/app/assets/stylesheets/stylin/highlight/zenburn.css +117 -0
  42. data/app/assets/stylesheets/stylin/styleguides.css.scss +106 -0
  43. data/app/controllers/stylin/application_controller.rb +11 -0
  44. data/app/controllers/stylin/styleguides_controller.rb +13 -0
  45. data/app/helpers/stylin/application_helper.rb +4 -0
  46. data/app/helpers/stylin/navigation_helper.rb +50 -0
  47. data/app/helpers/stylin/styleguides_helper.rb +29 -0
  48. data/app/models/styleguide.rb +69 -0
  49. data/app/views/layouts/stylin/_navigation.html.erb +3 -0
  50. data/app/views/layouts/stylin/application.html.erb +26 -0
  51. data/app/views/stylin/styleguides/_section.html.erb +31 -0
  52. data/app/views/stylin/styleguides/index.html.erb +5 -0
  53. data/app/views/stylin/styleguides/show.html.erb +3 -0
  54. data/config/routes.rb +5 -0
  55. data/lib/generators/stylin/install_generator.rb +12 -0
  56. data/lib/generators/stylin/views_generator.rb +10 -0
  57. data/lib/generators/templates/stylin.yml +7 -0
  58. data/lib/generators/templates/views/layouts/stylin/_navigation.html.erb +3 -0
  59. data/lib/generators/templates/views/layouts/stylin/application.html.erb +23 -0
  60. data/lib/generators/templates/views/stylin/styleguides/_section.html.erb +30 -0
  61. data/lib/generators/templates/views/stylin/styleguides/index.html.erb +5 -0
  62. data/lib/generators/templates/views/stylin/styleguides/show.html.erb +3 -0
  63. data/lib/stylin.rb +8 -0
  64. data/lib/stylin/engine.rb +37 -0
  65. data/lib/stylin/version.rb +3 -0
  66. data/lib/tasks/stylin_tasks.rake +12 -0
  67. data/spec/dummy/README.rdoc +28 -0
  68. data/spec/dummy/Rakefile +6 -0
  69. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  70. data/spec/dummy/app/assets/stylesheets/application.css.scss +1 -0
  71. data/spec/dummy/app/assets/stylesheets/buttons.css +51 -0
  72. data/spec/dummy/app/assets/stylesheets/forms.css +51 -0
  73. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  74. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  75. data/spec/dummy/app/styleguides/buttons.html +1 -0
  76. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  77. data/spec/dummy/bin/bundle +3 -0
  78. data/spec/dummy/bin/rails +4 -0
  79. data/spec/dummy/bin/rake +4 -0
  80. data/spec/dummy/config.ru +4 -0
  81. data/spec/dummy/config/application.rb +23 -0
  82. data/spec/dummy/config/boot.rb +5 -0
  83. data/spec/dummy/config/database.yml +25 -0
  84. data/spec/dummy/config/environment.rb +5 -0
  85. data/spec/dummy/config/environments/development.rb +29 -0
  86. data/spec/dummy/config/environments/production.rb +80 -0
  87. data/spec/dummy/config/environments/test.rb +36 -0
  88. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  90. data/spec/dummy/config/initializers/inflections.rb +16 -0
  91. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  92. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  93. data/spec/dummy/config/initializers/session_store.rb +3 -0
  94. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  95. data/spec/dummy/config/locales/en.yml +23 -0
  96. data/spec/dummy/config/routes.rb +3 -0
  97. data/spec/dummy/config/stylin.yml +3 -0
  98. data/spec/dummy/db/development.sqlite3 +0 -0
  99. data/spec/dummy/db/production.sqlite3 +0 -0
  100. data/spec/dummy/db/schema.rb +16 -0
  101. data/spec/dummy/db/test.sqlite3 +0 -0
  102. data/spec/dummy/log/development.log +4143 -0
  103. data/spec/dummy/log/production.log +4 -0
  104. data/spec/dummy/log/test.log +380 -0
  105. data/spec/dummy/public/404.html +58 -0
  106. data/spec/dummy/public/422.html +58 -0
  107. data/spec/dummy/public/500.html +57 -0
  108. data/spec/dummy/public/favicon.ico +0 -0
  109. data/spec/models/styleguide_spec.rb +55 -0
  110. data/spec/spec_helper.rb +22 -0
  111. metadata +327 -0
@@ -0,0 +1,105 @@
1
+ /*
2
+ IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
3
+ */
4
+
5
+ .hljs {
6
+ display: block; padding: 0.5em;
7
+ background: #000; color: #f8f8f8;
8
+ }
9
+
10
+ .hljs-shebang,
11
+ .hljs-comment,
12
+ .hljs-template_comment,
13
+ .hljs-javadoc {
14
+ color: #7c7c7c;
15
+ }
16
+
17
+ .hljs-keyword,
18
+ .hljs-tag,
19
+ .tex .hljs-command,
20
+ .hljs-request,
21
+ .hljs-status,
22
+ .clojure .hljs-attribute {
23
+ color: #96CBFE;
24
+ }
25
+
26
+ .hljs-sub .hljs-keyword,
27
+ .method,
28
+ .hljs-list .hljs-title,
29
+ .nginx .hljs-title {
30
+ color: #FFFFB6;
31
+ }
32
+
33
+ .hljs-string,
34
+ .hljs-tag .hljs-value,
35
+ .hljs-cdata,
36
+ .hljs-filter .hljs-argument,
37
+ .hljs-attr_selector,
38
+ .apache .hljs-cbracket,
39
+ .hljs-date,
40
+ .coffeescript .hljs-attribute {
41
+ color: #A8FF60;
42
+ }
43
+
44
+ .hljs-subst {
45
+ color: #DAEFA3;
46
+ }
47
+
48
+ .hljs-regexp {
49
+ color: #E9C062;
50
+ }
51
+
52
+ .hljs-title,
53
+ .hljs-sub .hljs-identifier,
54
+ .hljs-pi,
55
+ .hljs-decorator,
56
+ .tex .hljs-special,
57
+ .haskell .hljs-type,
58
+ .hljs-constant,
59
+ .smalltalk .hljs-class,
60
+ .hljs-javadoctag,
61
+ .hljs-yardoctag,
62
+ .hljs-phpdoc,
63
+ .nginx .hljs-built_in {
64
+ color: #FFFFB6;
65
+ }
66
+
67
+ .hljs-symbol,
68
+ .ruby .hljs-symbol .hljs-string,
69
+ .hljs-number,
70
+ .hljs-variable,
71
+ .vbscript,
72
+ .hljs-literal {
73
+ color: #C6C5FE;
74
+ }
75
+
76
+ .css .hljs-tag {
77
+ color: #96CBFE;
78
+ }
79
+
80
+ .css .hljs-rules .hljs-property,
81
+ .css .hljs-id {
82
+ color: #FFFFB6;
83
+ }
84
+
85
+ .css .hljs-class {
86
+ color: #FFF;
87
+ }
88
+
89
+ .hljs-hexcolor {
90
+ color: #C6C5FE;
91
+ }
92
+
93
+ .hljs-number {
94
+ color:#FF73FD;
95
+ }
96
+
97
+ .coffeescript .javascript,
98
+ .javascript .xml,
99
+ .tex .hljs-formula,
100
+ .xml .javascript,
101
+ .xml .vbscript,
102
+ .xml .css,
103
+ .xml .hljs-cdata {
104
+ opacity: 0.7;
105
+ }
@@ -0,0 +1,123 @@
1
+ /*
2
+ Description: Magula style for highligh.js
3
+ Author: Ruslan Keba <rukeba@gmail.com>
4
+ Website: http://rukeba.com/
5
+ Version: 1.0
6
+ Date: 2009-01-03
7
+ Music: Aphex Twin / Xtal
8
+ */
9
+
10
+ .hljs {
11
+ display: block; padding: 0.5em;
12
+ background-color: #f4f4f4;
13
+ }
14
+
15
+ .hljs,
16
+ .hljs-subst,
17
+ .lisp .hljs-title,
18
+ .clojure .hljs-built_in {
19
+ color: black;
20
+ }
21
+
22
+ .hljs-string,
23
+ .hljs-title,
24
+ .hljs-parent,
25
+ .hljs-tag .hljs-value,
26
+ .hljs-rules .hljs-value,
27
+ .hljs-rules .hljs-value .hljs-number,
28
+ .hljs-preprocessor,
29
+ .hljs-pragma,
30
+ .ruby .hljs-symbol,
31
+ .ruby .hljs-symbol .hljs-string,
32
+ .hljs-aggregate,
33
+ .hljs-template_tag,
34
+ .django .hljs-variable,
35
+ .smalltalk .hljs-class,
36
+ .hljs-addition,
37
+ .hljs-flow,
38
+ .hljs-stream,
39
+ .bash .hljs-variable,
40
+ .apache .hljs-cbracket,
41
+ .coffeescript .hljs-attribute {
42
+ color: #050;
43
+ }
44
+
45
+ .hljs-comment,
46
+ .hljs-annotation,
47
+ .hljs-template_comment,
48
+ .diff .hljs-header,
49
+ .hljs-chunk {
50
+ color: #777;
51
+ }
52
+
53
+ .hljs-number,
54
+ .hljs-date,
55
+ .hljs-regexp,
56
+ .hljs-literal,
57
+ .smalltalk .hljs-symbol,
58
+ .smalltalk .hljs-char,
59
+ .hljs-change,
60
+ .tex .hljs-special {
61
+ color: #800;
62
+ }
63
+
64
+ .hljs-label,
65
+ .hljs-javadoc,
66
+ .ruby .hljs-string,
67
+ .hljs-decorator,
68
+ .hljs-filter .hljs-argument,
69
+ .hljs-localvars,
70
+ .hljs-array,
71
+ .hljs-attr_selector,
72
+ .hljs-pseudo,
73
+ .hljs-pi,
74
+ .hljs-doctype,
75
+ .hljs-deletion,
76
+ .hljs-envvar,
77
+ .hljs-shebang,
78
+ .apache .hljs-sqbracket,
79
+ .nginx .hljs-built_in,
80
+ .tex .hljs-formula,
81
+ .hljs-prompt,
82
+ .clojure .hljs-attribute {
83
+ color: #00e;
84
+ }
85
+
86
+ .hljs-keyword,
87
+ .hljs-id,
88
+ .hljs-phpdoc,
89
+ .hljs-title,
90
+ .hljs-built_in,
91
+ .hljs-aggregate,
92
+ .smalltalk .hljs-class,
93
+ .hljs-winutils,
94
+ .bash .hljs-variable,
95
+ .apache .hljs-tag,
96
+ .xml .hljs-tag,
97
+ .tex .hljs-command,
98
+ .hljs-request,
99
+ .hljs-status {
100
+ font-weight: bold;
101
+ color: navy;
102
+ }
103
+
104
+ .nginx .hljs-built_in {
105
+ font-weight: normal;
106
+ }
107
+
108
+ .coffeescript .javascript,
109
+ .javascript .xml,
110
+ .tex .hljs-formula,
111
+ .xml .javascript,
112
+ .xml .vbscript,
113
+ .xml .css,
114
+ .xml .hljs-cdata {
115
+ opacity: 0.5;
116
+ }
117
+
118
+ /* --- */
119
+ .apache .hljs-tag {
120
+ font-weight: bold;
121
+ color: blue;
122
+ }
123
+
@@ -0,0 +1,62 @@
1
+ /*
2
+ Five-color theme from a single blue hue.
3
+ */
4
+ .hljs {
5
+ display: block; padding: 0.5em;
6
+ background: #EAEEF3; color: #00193A;
7
+ }
8
+
9
+ .hljs-keyword,
10
+ .hljs-title,
11
+ .hljs-important,
12
+ .hljs-request,
13
+ .hljs-header,
14
+ .hljs-javadoctag {
15
+ font-weight: bold;
16
+ }
17
+
18
+ .hljs-comment,
19
+ .hljs-chunk,
20
+ .hljs-template_comment {
21
+ color: #738191;
22
+ }
23
+
24
+ .hljs-string,
25
+ .hljs-title,
26
+ .hljs-parent,
27
+ .hljs-built_in,
28
+ .hljs-literal,
29
+ .hljs-filename,
30
+ .hljs-value,
31
+ .hljs-addition,
32
+ .hljs-tag,
33
+ .hljs-argument,
34
+ .hljs-link_label,
35
+ .hljs-blockquote,
36
+ .hljs-header {
37
+ color: #0048AB;
38
+ }
39
+
40
+ .hljs-decorator,
41
+ .hljs-prompt,
42
+ .hljs-yardoctag,
43
+ .hljs-subst,
44
+ .hljs-symbol,
45
+ .hljs-doctype,
46
+ .hljs-regexp,
47
+ .hljs-preprocessor,
48
+ .hljs-pragma,
49
+ .hljs-pi,
50
+ .hljs-attribute,
51
+ .hljs-attr_selector,
52
+ .hljs-javadoc,
53
+ .hljs-xmlDocTag,
54
+ .hljs-deletion,
55
+ .hljs-shebang,
56
+ .hljs-string .hljs-variable,
57
+ .hljs-link_url,
58
+ .hljs-bullet,
59
+ .hljs-sqbracket,
60
+ .hljs-phony {
61
+ color: #4C81C9;
62
+ }
@@ -0,0 +1,127 @@
1
+ /*
2
+ Monokai style - ported by Luigi Maselli - http://grigio.org
3
+ */
4
+
5
+ .hljs {
6
+ display: block; padding: 0.5em;
7
+ background: #272822;
8
+ }
9
+
10
+ .hljs-tag,
11
+ .hljs-tag .hljs-title,
12
+ .hljs-keyword,
13
+ .hljs-literal,
14
+ .hljs-strong,
15
+ .hljs-change,
16
+ .hljs-winutils,
17
+ .hljs-flow,
18
+ .lisp .hljs-title,
19
+ .clojure .hljs-built_in,
20
+ .nginx .hljs-title,
21
+ .tex .hljs-special {
22
+ color: #F92672;
23
+ }
24
+
25
+ .hljs {
26
+ color: #DDD;
27
+ }
28
+
29
+ .hljs .hljs-constant,
30
+ .asciidoc .hljs-code {
31
+ color: #66D9EF;
32
+ }
33
+
34
+ .hljs-code,
35
+ .hljs-class .hljs-title,
36
+ .hljs-header {
37
+ color: white;
38
+ }
39
+
40
+ .hljs-link_label,
41
+ .hljs-attribute,
42
+ .hljs-symbol,
43
+ .hljs-symbol .hljs-string,
44
+ .hljs-value,
45
+ .hljs-regexp {
46
+ color: #BF79DB;
47
+ }
48
+
49
+ .hljs-link_url,
50
+ .hljs-tag .hljs-value,
51
+ .hljs-string,
52
+ .hljs-bullet,
53
+ .hljs-subst,
54
+ .hljs-title,
55
+ .hljs-emphasis,
56
+ .haskell .hljs-type,
57
+ .hljs-preprocessor,
58
+ .hljs-pragma,
59
+ .ruby .hljs-class .hljs-parent,
60
+ .hljs-built_in,
61
+ .sql .hljs-aggregate,
62
+ .django .hljs-template_tag,
63
+ .django .hljs-variable,
64
+ .smalltalk .hljs-class,
65
+ .hljs-javadoc,
66
+ .django .hljs-filter .hljs-argument,
67
+ .smalltalk .hljs-localvars,
68
+ .smalltalk .hljs-array,
69
+ .hljs-attr_selector,
70
+ .hljs-pseudo,
71
+ .hljs-addition,
72
+ .hljs-stream,
73
+ .hljs-envvar,
74
+ .apache .hljs-tag,
75
+ .apache .hljs-cbracket,
76
+ .tex .hljs-command,
77
+ .hljs-prompt {
78
+ color: #A6E22E;
79
+ }
80
+
81
+ .hljs-comment,
82
+ .java .hljs-annotation,
83
+ .smartquote,
84
+ .hljs-blockquote,
85
+ .hljs-horizontal_rule,
86
+ .python .hljs-decorator,
87
+ .hljs-template_comment,
88
+ .hljs-pi,
89
+ .hljs-doctype,
90
+ .hljs-deletion,
91
+ .hljs-shebang,
92
+ .apache .hljs-sqbracket,
93
+ .tex .hljs-formula {
94
+ color: #75715E;
95
+ }
96
+
97
+ .hljs-keyword,
98
+ .hljs-literal,
99
+ .css .hljs-id,
100
+ .hljs-phpdoc,
101
+ .hljs-title,
102
+ .hljs-header,
103
+ .haskell .hljs-type,
104
+ .vbscript .hljs-built_in,
105
+ .sql .hljs-aggregate,
106
+ .rsl .hljs-built_in,
107
+ .smalltalk .hljs-class,
108
+ .diff .hljs-header,
109
+ .hljs-chunk,
110
+ .hljs-winutils,
111
+ .bash .hljs-variable,
112
+ .apache .hljs-tag,
113
+ .tex .hljs-special,
114
+ .hljs-request,
115
+ .hljs-status {
116
+ font-weight: bold;
117
+ }
118
+
119
+ .coffeescript .javascript,
120
+ .javascript .xml,
121
+ .tex .hljs-formula,
122
+ .xml .javascript,
123
+ .xml .vbscript,
124
+ .xml .css,
125
+ .xml .hljs-cdata {
126
+ opacity: 0.5;
127
+ }
@@ -0,0 +1,149 @@
1
+ /*
2
+
3
+ Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ padding: 0.5em;
10
+ background: #23241f;
11
+ }
12
+
13
+ .hljs,
14
+ .hljs-tag,
15
+ .css .hljs-rules,
16
+ .css .hljs-value,
17
+ .css .hljs-function
18
+ .hljs-preprocessor,
19
+ .hljs-pragma {
20
+ color: #f8f8f2;
21
+ }
22
+
23
+ .hljs-strongemphasis,
24
+ .hljs-strong,
25
+ .hljs-emphasis {
26
+ color: #a8a8a2;
27
+ }
28
+
29
+ .hljs-bullet,
30
+ .hljs-blockquote,
31
+ .hljs-horizontal_rule,
32
+ .hljs-number,
33
+ .hljs-regexp,
34
+ .alias .hljs-keyword,
35
+ .hljs-literal,
36
+ .hljs-hexcolor {
37
+ color: #ae81ff;
38
+ }
39
+
40
+ .hljs-tag .hljs-value,
41
+ .hljs-code,
42
+ .hljs-title,
43
+ .css .hljs-class,
44
+ .hljs-class .hljs-title:last-child {
45
+ color: #a6e22e;
46
+ }
47
+
48
+ .hljs-link_url {
49
+ font-size: 80%;
50
+ }
51
+
52
+ .hljs-strong,
53
+ .hljs-strongemphasis {
54
+ font-weight: bold;
55
+ }
56
+
57
+ .hljs-emphasis,
58
+ .hljs-strongemphasis,
59
+ .hljs-class .hljs-title:last-child {
60
+ font-style: italic;
61
+ }
62
+
63
+ .hljs-keyword,
64
+ .hljs-function,
65
+ .hljs-change,
66
+ .hljs-winutils,
67
+ .hljs-flow,
68
+ .lisp .hljs-title,
69
+ .clojure .hljs-built_in,
70
+ .nginx .hljs-title,
71
+ .tex .hljs-special,
72
+ .hljs-header,
73
+ .hljs-attribute,
74
+ .hljs-symbol,
75
+ .hljs-symbol .hljs-string,
76
+ .hljs-tag .hljs-title,
77
+ .hljs-value,
78
+ .alias .hljs-keyword:first-child,
79
+ .css .hljs-tag,
80
+ .css .unit,
81
+ .css .hljs-important {
82
+ color: #F92672;
83
+ }
84
+
85
+ .hljs-function .hljs-keyword,
86
+ .hljs-class .hljs-keyword:first-child,
87
+ .hljs-constant,
88
+ .css .hljs-attribute {
89
+ color: #66d9ef;
90
+ }
91
+
92
+ .hljs-variable,
93
+ .hljs-params,
94
+ .hljs-class .hljs-title {
95
+ color: #f8f8f2;
96
+ }
97
+
98
+ .hljs-string,
99
+ .css .hljs-id,
100
+ .hljs-subst,
101
+ .haskell .hljs-type,
102
+ .ruby .hljs-class .hljs-parent,
103
+ .hljs-built_in,
104
+ .sql .hljs-aggregate,
105
+ .django .hljs-template_tag,
106
+ .django .hljs-variable,
107
+ .smalltalk .hljs-class,
108
+ .django .hljs-filter .hljs-argument,
109
+ .smalltalk .hljs-localvars,
110
+ .smalltalk .hljs-array,
111
+ .hljs-attr_selector,
112
+ .hljs-pseudo,
113
+ .hljs-addition,
114
+ .hljs-stream,
115
+ .hljs-envvar,
116
+ .apache .hljs-tag,
117
+ .apache .hljs-cbracket,
118
+ .tex .hljs-command,
119
+ .hljs-prompt,
120
+ .hljs-link_label,
121
+ .hljs-link_url {
122
+ color: #e6db74;
123
+ }
124
+
125
+ .hljs-comment,
126
+ .hljs-javadoc,
127
+ .java .hljs-annotation,
128
+ .python .hljs-decorator,
129
+ .hljs-template_comment,
130
+ .hljs-pi,
131
+ .hljs-doctype,
132
+ .hljs-deletion,
133
+ .hljs-shebang,
134
+ .apache .hljs-sqbracket,
135
+ .tex .hljs-formula {
136
+ color: #75715e;
137
+ }
138
+
139
+ .coffeescript .javascript,
140
+ .javascript .xml,
141
+ .tex .hljs-formula,
142
+ .xml .javascript,
143
+ .xml .vbscript,
144
+ .xml .css,
145
+ .xml .hljs-cdata,
146
+ .xml .php,
147
+ .php .xml {
148
+ opacity: 0.5;
149
+ }