diff options
Diffstat (limited to 'Code/Blocks/syntax/compass')
19 files changed, 0 insertions, 621 deletions
diff --git a/Code/Blocks/syntax/compass/_theme_template.scss b/Code/Blocks/syntax/compass/_theme_template.scss deleted file mode 100644 index 53f4df5..0000000 --- a/Code/Blocks/syntax/compass/_theme_template.scss +++ /dev/null | |||
@@ -1,120 +0,0 @@ | |||
1 | $background: white !default; | ||
2 | |||
3 | $line_alt1_background: $background !default; | ||
4 | $line_alt2_background: $background !default; | ||
5 | |||
6 | $line_highlighted_background: #e0e0e0 !default; | ||
7 | $line_highlighted_number: black !default; | ||
8 | |||
9 | $gutter_text: #afafaf !default; | ||
10 | $gutter_border_color: #6ce26c !default; | ||
11 | $gutter_border: 3px solid $gutter_border_color !default; | ||
12 | |||
13 | $toolbar_collapsed_a: #00f !default; | ||
14 | $toolbar_collapsed_a_hover: #f00 !default; | ||
15 | $toolbar_collapsed_background: #fff !default; | ||
16 | $toolbar_collapsed_border: 1px solid $gutter_border_color !default; | ||
17 | |||
18 | $toolbar_a: #fff !default; | ||
19 | $toolbar_a_hover: #000 !default; | ||
20 | $toolbar_background: $gutter_border_color !default; | ||
21 | $toolbar_border: none !default; | ||
22 | |||
23 | $code_plain: black !default; | ||
24 | $code_comments: #008200 !default; | ||
25 | $code_string: blue !default; | ||
26 | $code_keyword: #006699 !default; | ||
27 | $code_preprocessor: gray !default; | ||
28 | $code_variable: #aa7700 !default; | ||
29 | $code_value: #009900 !default; | ||
30 | $code_functions: #ff1493 !default; | ||
31 | $code_constants: #0066cc !default; | ||
32 | $code_script: $code_keyword !default; | ||
33 | $code_script_background: none !default; | ||
34 | $code_color1: gray !default; | ||
35 | $code_color2: #ff1493 !default; | ||
36 | $code_color3: red !default; | ||
37 | |||
38 | $caption_color: $code_plain !default; | ||
39 | |||
40 | // Interface elements. | ||
41 | .syntaxhighlighter { | ||
42 | background-color: $background !important; | ||
43 | |||
44 | // Highlighed line number | ||
45 | .line { | ||
46 | &.alt1 { background-color: $line_alt1_background !important; } | ||
47 | &.alt2 { background-color: $line_alt2_background !important; } | ||
48 | |||
49 | // Highlighed line | ||
50 | &.highlighted { | ||
51 | &.alt1, &.alt2 { background-color: $line_highlighted_background !important; } | ||
52 | &.number { color: $line_highlighted_number !important; } | ||
53 | } | ||
54 | } | ||
55 | |||
56 | table { | ||
57 | caption { | ||
58 | color: $caption_color !important; | ||
59 | } | ||
60 | } | ||
61 | |||
62 | // Add border to the lines | ||
63 | .gutter { | ||
64 | color: $gutter_text !important; | ||
65 | .line { | ||
66 | border-right: $gutter_border !important; | ||
67 | |||
68 | &.highlighted { | ||
69 | background-color: $gutter_border_color !important; | ||
70 | color: $background !important; | ||
71 | } | ||
72 | } | ||
73 | } | ||
74 | |||
75 | &.printing .line .content { border: none !important; } | ||
76 | |||
77 | &.collapsed { | ||
78 | overflow: visible !important; | ||
79 | |||
80 | .toolbar { | ||
81 | color: $toolbar_collapsed_a !important; | ||
82 | background: $toolbar_collapsed_background !important; | ||
83 | border: $toolbar_collapsed_border !important; | ||
84 | |||
85 | a { | ||
86 | color: $toolbar_collapsed_a !important; | ||
87 | &:hover { color: $toolbar_collapsed_a_hover !important; } | ||
88 | } | ||
89 | } | ||
90 | } | ||
91 | |||
92 | .toolbar { | ||
93 | color: $toolbar_a !important; | ||
94 | background: $toolbar_background !important; | ||
95 | border: $toolbar_border !important; | ||
96 | a { | ||
97 | color: $toolbar_a !important; | ||
98 | &:hover { color: $toolbar_a_hover !important; } | ||
99 | } | ||
100 | } | ||
101 | |||
102 | // Actual syntax highlighter colors. | ||
103 | .plain, .plain a { color: $code_plain !important; } | ||
104 | .comments, .comments a { color: $code_comments !important; } | ||
105 | .string, .string a { color: $code_string !important; } | ||
106 | .keyword { color: $code_keyword !important; } | ||
107 | .preprocessor { color: $code_preprocessor !important; } | ||
108 | .variable { color: $code_variable !important; } | ||
109 | .value { color: $code_value !important; } | ||
110 | .functions { color: $code_functions !important; } | ||
111 | .constants { color: $code_constants !important; } | ||
112 | .script { | ||
113 | font-weight: bold !important; | ||
114 | color: $code_script !important; | ||
115 | background-color: $code_script_background !important; | ||
116 | } | ||
117 | .color1, .color1 a { color: $code_color1 !important; } | ||
118 | .color2, .color2 a { color: $code_color2 !important; } | ||
119 | .color3, .color3 a { color: $code_color3 !important; } | ||
120 | } | ||
diff --git a/Code/Blocks/syntax/compass/config.rb b/Code/Blocks/syntax/compass/config.rb deleted file mode 100644 index 6f82de1..0000000 --- a/Code/Blocks/syntax/compass/config.rb +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | environment = :production | ||
2 | project_type = :stand_alone | ||
3 | http_path = "/" | ||
4 | css_dir = "../styles" | ||
5 | sass_dir = "." | ||
6 | images_dir = "images" | ||
7 | sass_options = { | ||
8 | :line_numbers => false, | ||
9 | :debug_info => false | ||
10 | } | ||
11 | |||
12 | # output_style = :compressed | ||
13 | # output_style = :compact | ||
14 | output_style = :expanded | ||
diff --git a/Code/Blocks/syntax/compass/shCore.scss b/Code/Blocks/syntax/compass/shCore.scss deleted file mode 100644 index a67e4f9..0000000 --- a/Code/Blocks/syntax/compass/shCore.scss +++ /dev/null | |||
@@ -1,216 +0,0 @@ | |||
1 | @mixin round_corners_custom($top, $right, $bottom, $left) { | ||
2 | -moz-border-radius: $top $right $bottom $left !important; | ||
3 | -webkit-border-radius: $top $right $bottom $left !important; | ||
4 | } | ||
5 | |||
6 | @mixin round_corners($radius) { | ||
7 | @include round_corners_custom($radius, $radius, $radius, $radius); | ||
8 | } | ||
9 | |||
10 | .syntaxhighlighter { | ||
11 | a, | ||
12 | div, | ||
13 | code, | ||
14 | table, | ||
15 | table td, | ||
16 | table tr, | ||
17 | table tbody, | ||
18 | table thead, | ||
19 | table caption, | ||
20 | textarea { | ||
21 | @include round_corners(0); | ||
22 | |||
23 | background: none !important; | ||
24 | border: 0 !important; | ||
25 | bottom: auto !important; | ||
26 | float: none !important; | ||
27 | height: auto !important; | ||
28 | left: auto !important; | ||
29 | line-height: 1.1em !important; | ||
30 | margin: 0 !important; | ||
31 | outline: 0 !important; | ||
32 | overflow: visible !important; | ||
33 | padding: 0 !important; | ||
34 | position: static !important; | ||
35 | right: auto !important; | ||
36 | text-align: left !important; | ||
37 | top: auto !important; | ||
38 | vertical-align: baseline !important; | ||
39 | width: auto !important; | ||
40 | box-sizing: content-box !important; | ||
41 | font: { | ||
42 | family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; | ||
43 | weight: normal !important; | ||
44 | style: normal !important; | ||
45 | size: 1em !important; | ||
46 | } | ||
47 | min: { | ||
48 | // For IE8, FF & WebKit | ||
49 | height: inherit !important; | ||
50 | // For IE7 | ||
51 | height: auto !important; | ||
52 | } | ||
53 | } | ||
54 | } | ||
55 | |||
56 | .syntaxhighlighter { | ||
57 | width: 100% !important; | ||
58 | margin: 1em 0 1em 0 !important; | ||
59 | |||
60 | position: relative !important; | ||
61 | overflow: auto !important; | ||
62 | font-size: 1em !important; | ||
63 | |||
64 | &.source { overflow: hidden !important; } | ||
65 | |||
66 | // set up bold and italic | ||
67 | .bold { font-weight: bold !important; } | ||
68 | .italic { font-style: italic !important; } | ||
69 | |||
70 | .line { white-space: pre !important; } | ||
71 | |||
72 | // main table and columns | ||
73 | table { | ||
74 | width: 100% !important; | ||
75 | caption { | ||
76 | text-align: left !important; | ||
77 | padding: .5em 0 0.5em 1em !important; | ||
78 | } | ||
79 | |||
80 | td.code { | ||
81 | width: 100% !important; | ||
82 | |||
83 | .container { | ||
84 | position: relative !important; | ||
85 | |||
86 | textarea { | ||
87 | box-sizing: border-box !important; | ||
88 | position: absolute !important; | ||
89 | left: 0 !important; | ||
90 | top: 0 !important; | ||
91 | width: 100% !important; | ||
92 | height: 100% !important; | ||
93 | border: none !important; | ||
94 | background: white !important; | ||
95 | padding-left: 1em !important; | ||
96 | overflow: hidden !important; | ||
97 | white-space: pre !important; | ||
98 | } | ||
99 | } | ||
100 | } | ||
101 | |||
102 | // middle spacing between line numbers and lines | ||
103 | td.gutter .line { | ||
104 | text-align: right !important; | ||
105 | padding: 0 0.5em 0 1em !important; | ||
106 | } | ||
107 | |||
108 | td.code .line { | ||
109 | padding: 0 1em !important; | ||
110 | } | ||
111 | } | ||
112 | |||
113 | &.nogutter { | ||
114 | td.code { | ||
115 | .container textarea, .line { padding-left: 0em !important; } | ||
116 | } | ||
117 | } | ||
118 | |||
119 | &.show { display: block !important; } | ||
120 | |||
121 | // Adjust some properties when collapsed | ||
122 | &.collapsed { | ||
123 | table { display: none !important; } | ||
124 | |||
125 | .toolbar { | ||
126 | padding: 0.1em 0.8em 0em 0.8em !important; | ||
127 | font-size: 1em !important; | ||
128 | position: static !important; | ||
129 | width: auto !important; | ||
130 | height: auto !important; | ||
131 | |||
132 | span { | ||
133 | display: inline !important; | ||
134 | margin-right: 1em !important; | ||
135 | |||
136 | a { | ||
137 | padding: 0 !important; | ||
138 | display: none !important; | ||
139 | &.expandSource { display: inline !important; } | ||
140 | } | ||
141 | } | ||
142 | } | ||
143 | } | ||
144 | |||
145 | // Styles for the toolbar | ||
146 | .toolbar { | ||
147 | position: absolute !important; | ||
148 | right: 1px !important; | ||
149 | top: 1px !important; | ||
150 | width: 11px !important; | ||
151 | height: 11px !important; | ||
152 | font-size: 10px !important; | ||
153 | z-index: 10 !important; | ||
154 | |||
155 | span.title { display: inline !important; } | ||
156 | |||
157 | a { | ||
158 | display: block !important; | ||
159 | text-align: center !important; | ||
160 | text-decoration: none !important; | ||
161 | padding-top: 1px !important; | ||
162 | |||
163 | &.expandSource { display: none !important; } | ||
164 | } | ||
165 | } | ||
166 | |||
167 | &.ie { | ||
168 | font-size: .9em !important; | ||
169 | padding: 1px 0 1px 0 !important; | ||
170 | |||
171 | .toolbar { | ||
172 | line-height: 8px !important; | ||
173 | a { | ||
174 | padding-top: 0px !important; | ||
175 | } | ||
176 | } | ||
177 | } | ||
178 | |||
179 | // Print view. | ||
180 | // Colors are based on the default theme without background. | ||
181 | &.printing { | ||
182 | .line.alt1 .content, | ||
183 | .line.alt2 .content, | ||
184 | .line.highlighted .number, | ||
185 | .line.highlighted.alt1 .content, | ||
186 | .line.highlighted.alt2 .content { background: none !important; } | ||
187 | |||
188 | // Gutter line numbers | ||
189 | .line { | ||
190 | .number { color: #bbbbbb !important; } | ||
191 | // Add border to the lines | ||
192 | .content { color: black !important; } | ||
193 | } | ||
194 | |||
195 | // Toolbar when visible | ||
196 | .toolbar { display: none !important; } | ||
197 | a { text-decoration: none !important; } | ||
198 | .plain, .plain a { color: black !important; } | ||
199 | .comments, .comments a { color: #008200 !important; } | ||
200 | .string, .string a { color: blue !important; } | ||
201 | .keyword { | ||
202 | color: #006699 !important; | ||
203 | font-weight: bold !important; | ||
204 | } | ||
205 | .preprocessor { color: gray !important; } | ||
206 | .variable { color: #aa7700 !important; } | ||
207 | .value { color: #009900 !important; } | ||
208 | .functions { color: #ff1493 !important; } | ||
209 | .constants { color: #0066cc !important; } | ||
210 | .script { font-weight: bold !important; } | ||
211 | .color1, .color1 a { color: gray !important; } | ||
212 | .color2, .color2 a { color: #ff1493 !important; } | ||
213 | .color3, .color3 a { color: red !important; } | ||
214 | .break, .break a { color: black !important; } | ||
215 | } | ||
216 | } \ No newline at end of file | ||
diff --git a/Code/Blocks/syntax/compass/shCoreDefault.scss b/Code/Blocks/syntax/compass/shCoreDefault.scss deleted file mode 100644 index ff80c7f..0000000 --- a/Code/Blocks/syntax/compass/shCoreDefault.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeDefault.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreDjango.scss b/Code/Blocks/syntax/compass/shCoreDjango.scss deleted file mode 100644 index ef572e9..0000000 --- a/Code/Blocks/syntax/compass/shCoreDjango.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeDjango.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreEclipse.scss b/Code/Blocks/syntax/compass/shCoreEclipse.scss deleted file mode 100644 index 9767f53..0000000 --- a/Code/Blocks/syntax/compass/shCoreEclipse.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeEclipse.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreEmacs.scss b/Code/Blocks/syntax/compass/shCoreEmacs.scss deleted file mode 100644 index 5e466f3..0000000 --- a/Code/Blocks/syntax/compass/shCoreEmacs.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeEmacs.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreFadeToGrey.scss b/Code/Blocks/syntax/compass/shCoreFadeToGrey.scss deleted file mode 100644 index 4628595..0000000 --- a/Code/Blocks/syntax/compass/shCoreFadeToGrey.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeFadeToGrey.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreMDUltra.scss b/Code/Blocks/syntax/compass/shCoreMDUltra.scss deleted file mode 100644 index 10ad4c5..0000000 --- a/Code/Blocks/syntax/compass/shCoreMDUltra.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeMDUltra.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreMidnight.scss b/Code/Blocks/syntax/compass/shCoreMidnight.scss deleted file mode 100644 index e357eb2..0000000 --- a/Code/Blocks/syntax/compass/shCoreMidnight.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeMidnight.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shCoreRDark.scss b/Code/Blocks/syntax/compass/shCoreRDark.scss deleted file mode 100644 index 5c26da3..0000000 --- a/Code/Blocks/syntax/compass/shCoreRDark.scss +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | @import "shCore.scss"; | ||
2 | @import "shThemeRDark.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shThemeDefault.scss b/Code/Blocks/syntax/compass/shThemeDefault.scss deleted file mode 100644 index 1574dae..0000000 --- a/Code/Blocks/syntax/compass/shThemeDefault.scss +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | // Default Syntax Highlighter theme. | ||
2 | |||
3 | @import "_theme_template.scss"; | ||
4 | |||
5 | .syntaxhighlighter { | ||
6 | .keyword { font-weight: bold !important; } | ||
7 | } | ||
diff --git a/Code/Blocks/syntax/compass/shThemeDjango.scss b/Code/Blocks/syntax/compass/shThemeDjango.scss deleted file mode 100644 index 8e95c56..0000000 --- a/Code/Blocks/syntax/compass/shThemeDjango.scss +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | // Django SyntaxHighlighter theme | ||
2 | |||
3 | $background: #0a2b1d !default; | ||
4 | |||
5 | $line_highlighted_background: #233729 !default; | ||
6 | $line_highlighted_number: white !default; | ||
7 | |||
8 | $gutter_text: #497958 !default; | ||
9 | $gutter_border_color: #41a83e !default; | ||
10 | |||
11 | $toolbar_collapsed_a: #96dd3b !default; | ||
12 | $toolbar_collapsed_a_hover: #fff !default; | ||
13 | $toolbar_collapsed_background: #000 !default; | ||
14 | |||
15 | $toolbar_a: #fff !default; | ||
16 | $toolbar_a_hover: #ffe862 !default; | ||
17 | |||
18 | $code_plain: #f8f8f8 !default; | ||
19 | $code_comments: #336442 !default; | ||
20 | $code_string: #9df39f !default; | ||
21 | $code_keyword: #96dd3b !default; | ||
22 | $code_preprocessor: #91bb9e !default; | ||
23 | $code_variable: #ffaa3e !default; | ||
24 | $code_value: #f7e741 !default; | ||
25 | $code_functions: #ffaa3e !default; | ||
26 | $code_constants: #e0e8ff !default; | ||
27 | $code_color1: #eb939a !default; | ||
28 | $code_color2: #91bb9e !default; | ||
29 | $code_color3: #edef7d !default; | ||
30 | |||
31 | @import "_theme_template.scss"; | ||
32 | |||
33 | .syntaxhighlighter { | ||
34 | .comments { font-style: italic !important; } | ||
35 | .keyword { font-weight: bold !important; } | ||
36 | } | ||
diff --git a/Code/Blocks/syntax/compass/shThemeEclipse.scss b/Code/Blocks/syntax/compass/shThemeEclipse.scss deleted file mode 100644 index 193fb1d..0000000 --- a/Code/Blocks/syntax/compass/shThemeEclipse.scss +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
1 | // Eclipse IDE SyntaxHighlighter color theme | ||
2 | // (C) Code-House | ||
3 | // :http//blog.code-house.org/2009/10/xml-i-adnotacje-kod-ogolnego-przeznaczenia-i-jpa/ | ||
4 | |||
5 | $background: #fff !default; | ||
6 | |||
7 | $line_highlighted_background: #c3defe !default; | ||
8 | $line_highlighted_number: #fff !default; | ||
9 | |||
10 | $gutter_text: #787878 !default; | ||
11 | $gutter_border_color: #d4d0c8 !default; | ||
12 | |||
13 | $toolbar_collapsed_a: #3f5fbf !default; | ||
14 | $toolbar_collapsed_a_hover: #aa7700 !default; | ||
15 | $toolbar_collapsed_background: #fff !default; | ||
16 | |||
17 | $toolbar_a: #a0a0a0 !default; | ||
18 | $toolbar_a_hover: red !default; | ||
19 | |||
20 | $code_plain: black !default; | ||
21 | $code_comments: #3f5fbf !default; | ||
22 | $code_string: #2a00ff !default; | ||
23 | $code_keyword: #7f0055 !default; | ||
24 | $code_preprocessor: #646464 !default; | ||
25 | $code_variable: #aa7700 !default; | ||
26 | $code_value: #009900 !default; | ||
27 | $code_functions: #ff1493 !default; | ||
28 | $code_constants: #0066cc !default; | ||
29 | $code_color1: gray !default; | ||
30 | $code_color2: #ff1493 !default; | ||
31 | $code_color3: red !default; | ||
32 | |||
33 | @import "_theme_template.scss"; | ||
34 | |||
35 | .syntaxhighlighter { | ||
36 | .keyword { font-weight: bold !important; } | ||
37 | |||
38 | .xml { | ||
39 | .keyword { | ||
40 | color: #3f7f7f !important; | ||
41 | font-weight: normal !important; } | ||
42 | .color1, .color1 a { color: #7f007f !important; } | ||
43 | .string { | ||
44 | font-style: italic !important; | ||
45 | color: #2a00ff !important; | ||
46 | } | ||
47 | } | ||
48 | } | ||
diff --git a/Code/Blocks/syntax/compass/shThemeEmacs.scss b/Code/Blocks/syntax/compass/shThemeEmacs.scss deleted file mode 100644 index 11c9deb..0000000 --- a/Code/Blocks/syntax/compass/shThemeEmacs.scss +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | // Emacs SyntaxHighlighter theme based on theme by Joshua Emmons | ||
2 | // http://www.skia.net/ | ||
3 | |||
4 | $background: black !default; | ||
5 | |||
6 | $line_highlighted_background: #2A3133 !default; | ||
7 | $line_highlighted_number: white !default; | ||
8 | |||
9 | $gutter_text: #d3d3d3 !default; | ||
10 | $gutter_border_color: #990000 !default; | ||
11 | |||
12 | $toolbar_collapsed_a: #ebdb8d !default; | ||
13 | $toolbar_collapsed_a_hover: #ff7d27 !default; | ||
14 | $toolbar_collapsed_background: black !default; | ||
15 | |||
16 | $toolbar_a: #fff !default; | ||
17 | $toolbar_a_hover: #9ccff4 !default; | ||
18 | |||
19 | $code_plain: #d3d3d3 !default; | ||
20 | $code_comments: #ff7d27 !default; | ||
21 | $code_string: #ff9e7b !default; | ||
22 | $code_keyword: aqua !default; | ||
23 | $code_preprocessor: #aec4de !default; | ||
24 | $code_variable: #ffaa3e !default; | ||
25 | $code_value: #009900 !default; | ||
26 | $code_functions: #81cef9 !default; | ||
27 | $code_constants: #ff9e7b !default; | ||
28 | $code_color1: #ebdb8d !default; | ||
29 | $code_color2: #ff7d27 !default; | ||
30 | $code_color3: #aec4de !default; | ||
31 | |||
32 | @import "_theme_template.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shThemeFadeToGrey.scss b/Code/Blocks/syntax/compass/shThemeFadeToGrey.scss deleted file mode 100644 index 7963814..0000000 --- a/Code/Blocks/syntax/compass/shThemeFadeToGrey.scss +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | // Fade to Grey SyntaxHighlighter theme based on theme by Brasten Sager | ||
2 | // :http//www.ibrasten.com/ | ||
3 | |||
4 | $background: #121212 !default; | ||
5 | |||
6 | $line_highlighted_background: #2C2C29 !default; | ||
7 | $line_highlighted_number: white !default; | ||
8 | |||
9 | $gutter_text: #afafaf !default; | ||
10 | $gutter_border_color: #3185b9 !default; | ||
11 | |||
12 | $toolbar_collapsed_a: #3185b9 !default; | ||
13 | $toolbar_collapsed_a_hover: #d01d33 !default; | ||
14 | $toolbar_collapsed_background: black !default; | ||
15 | |||
16 | $toolbar_a: #fff !default; | ||
17 | $toolbar_a_hover: #96daff !default; | ||
18 | |||
19 | $code_plain: white !default; | ||
20 | $code_comments: #696854 !default; | ||
21 | $code_string: #e3e658 !default; | ||
22 | $code_keyword: #d01d33 !default; | ||
23 | $code_preprocessor: #435a5f !default; | ||
24 | $code_variable: #898989 !default; | ||
25 | $code_value: #009900 !default; | ||
26 | $code_functions: #aaaaaa !default; | ||
27 | $code_constants: #96daff !default; | ||
28 | $code_color1: #ffc074 !default; | ||
29 | $code_color2: #4a8cdb !default; | ||
30 | $code_color3: #96daff !default; | ||
31 | |||
32 | @import "_theme_template.scss"; | ||
33 | |||
34 | .syntaxhighlighter { | ||
35 | .functions { font-weight: bold !important; } | ||
36 | } | ||
diff --git a/Code/Blocks/syntax/compass/shThemeMDUltra.scss b/Code/Blocks/syntax/compass/shThemeMDUltra.scss deleted file mode 100644 index 0356fa6..0000000 --- a/Code/Blocks/syntax/compass/shThemeMDUltra.scss +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | // MDUltra SyntaxHighlighter theme based on Midnight Theme | ||
2 | // http://www.mddev.co.uk/ | ||
3 | |||
4 | $background: #222222 !default; | ||
5 | |||
6 | $line_highlighted_background: #253e5a !default; | ||
7 | $line_highlighted_number: white !default; | ||
8 | |||
9 | $gutter_text: #38566f !default; | ||
10 | $gutter_border_color: #435a5f !default; | ||
11 | |||
12 | $toolbar_collapsed_a: #428bdd !default; | ||
13 | $toolbar_collapsed_a_hover: lime !default; | ||
14 | $toolbar_collapsed_background: black !default; | ||
15 | |||
16 | $toolbar_a: #aaaaff !default; | ||
17 | $toolbar_a_hover: #9ccff4 !default; | ||
18 | |||
19 | $code_plain: lime !default; | ||
20 | $code_comments: #428bdd !default; | ||
21 | $code_string: lime !default; | ||
22 | $code_keyword: #aaaaff !default; | ||
23 | $code_preprocessor: #8aa6c1 !default; | ||
24 | $code_variable: aqua !default; | ||
25 | $code_value: #f7e741 !default; | ||
26 | $code_functions: #ff8000 !default; | ||
27 | $code_constants: yellow !default; | ||
28 | $code_color1: red !default; | ||
29 | $code_color2: yellow !default; | ||
30 | $code_color3: #ffaa3e !default; | ||
31 | |||
32 | @import "_theme_template.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shThemeMidnight.scss b/Code/Blocks/syntax/compass/shThemeMidnight.scss deleted file mode 100644 index a4dae02..0000000 --- a/Code/Blocks/syntax/compass/shThemeMidnight.scss +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | // Midnight SyntaxHighlighter theme based on theme by J.D. Myers | ||
2 | // http://webdesign.lsnjd.com/ | ||
3 | |||
4 | $background: #0f192a !default; | ||
5 | |||
6 | $line_highlighted_background: #253e5a !default; | ||
7 | $line_highlighted_number: #38566f !default; | ||
8 | |||
9 | $gutter_text: #afafaf !default; | ||
10 | $gutter_border_color: #435a5f !default; | ||
11 | |||
12 | $toolbar_collapsed_a: #428bdd !default; | ||
13 | $toolbar_collapsed_a_hover: #1dc116 !default; | ||
14 | $toolbar_collapsed_background: #000 !default; | ||
15 | |||
16 | $toolbar_a: #D1EDFF !default; | ||
17 | $toolbar_a_hover: #8aa6c1 !default; | ||
18 | |||
19 | $code_plain: #d1edff !default; | ||
20 | $code_comments: #428bdd !default; | ||
21 | $code_string: #1dc116 !default; | ||
22 | $code_keyword: #b43d3d !default; | ||
23 | $code_preprocessor: #8aa6c1 !default; | ||
24 | $code_variable: #ffaa3e !default; | ||
25 | $code_value: #f7e741 !default; | ||
26 | $code_functions: #ffaa3e !default; | ||
27 | $code_constants: #e0e8ff !default; | ||
28 | $code_color1: #f8bb00 !default; | ||
29 | $code_color2: white !default; | ||
30 | $code_color3: #ffaa3e !default; | ||
31 | |||
32 | @import "_theme_template.scss"; | ||
diff --git a/Code/Blocks/syntax/compass/shThemeRDark.scss b/Code/Blocks/syntax/compass/shThemeRDark.scss deleted file mode 100644 index 3b67b15..0000000 --- a/Code/Blocks/syntax/compass/shThemeRDark.scss +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | // RDark SyntaxHighlighter theme based on theme by Radu Dineiu | ||
2 | // http://www.vim.org/scripts/script.php?script_id=1732 | ||
3 | |||
4 | $background: #1b2426 !default; | ||
5 | |||
6 | $line_highlighted_background: #323E41 !default; | ||
7 | $line_highlighted_number: #b9bdb6 !default; | ||
8 | |||
9 | $gutter_text: #afafaf !default; | ||
10 | $gutter_border_color: #435a5f !default; | ||
11 | |||
12 | $toolbar_collapsed_a: #5ba1cf !default; | ||
13 | $toolbar_collapsed_a_hover: #5ce638 !default; | ||
14 | $toolbar_collapsed_background: #000 !default; | ||
15 | |||
16 | $toolbar_a: #fff !default; | ||
17 | $toolbar_a_hover: #e0e8ff !default; | ||
18 | |||
19 | $code_plain: #b9bdb6 !default; | ||
20 | $code_comments: #878a85 !default; | ||
21 | $code_string: #5ce638 !default; | ||
22 | $code_keyword: #5ba1cf !default; | ||
23 | $code_preprocessor: #435a5f !default; | ||
24 | $code_variable: #ffaa3e !default; | ||
25 | $code_value: #009900 !default; | ||
26 | $code_functions: #ffaa3e !default; | ||
27 | $code_constants: #e0e8ff !default; | ||
28 | $code_color1: #e0e8ff !default; | ||
29 | $code_color2: white !default; | ||
30 | $code_color3: #ffaa3e !default; | ||
31 | |||
32 | @import "_theme_template.scss"; | ||