sassc 2.0.1 → 2.1.0.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.gitmodules +1 -1
- data/.travis.yml +7 -3
- data/CHANGELOG.md +3 -0
- data/CODE_OF_CONDUCT.md +1 -1
- data/README.md +1 -1
- data/Rakefile +23 -8
- data/ext/extconf.rb +39 -0
- data/ext/libsass/.gitignore +1 -0
- data/ext/libsass/GNUmakefile.am +23 -39
- data/ext/libsass/Makefile +56 -91
- data/ext/libsass/Makefile.conf +16 -2
- data/ext/libsass/configure.ac +8 -12
- data/ext/libsass/include/sass/base.h +1 -0
- data/ext/libsass/include/sass/context.h +1 -1
- data/ext/libsass/src/GNUmakefile.am +1 -5
- data/ext/libsass/src/ast.cpp +747 -2010
- data/ext/libsass/src/ast.hpp +239 -2383
- data/ext/libsass/src/{to_c.cpp → ast2c.cpp} +22 -16
- data/ext/libsass/src/ast2c.hpp +39 -0
- data/ext/libsass/src/ast_def_macros.hpp +62 -10
- data/ext/libsass/src/ast_fwd_decl.cpp +1 -0
- data/ext/libsass/src/ast_fwd_decl.hpp +43 -165
- data/ext/libsass/src/ast_sel_cmp.cpp +909 -0
- data/ext/libsass/src/ast_sel_unify.cpp +280 -0
- data/ext/libsass/src/ast_selectors.cpp +1475 -0
- data/ext/libsass/src/ast_selectors.hpp +568 -0
- data/ext/libsass/src/ast_supports.cpp +130 -0
- data/ext/libsass/src/ast_supports.hpp +121 -0
- data/ext/libsass/src/ast_values.cpp +967 -0
- data/ext/libsass/src/ast_values.hpp +489 -0
- data/ext/libsass/src/backtrace.cpp +4 -0
- data/ext/libsass/src/base64vlq.cpp +3 -0
- data/ext/libsass/src/bind.cpp +18 -17
- data/ext/libsass/src/bind.hpp +3 -1
- data/ext/libsass/src/c2ast.cpp +64 -0
- data/ext/libsass/src/c2ast.hpp +14 -0
- data/ext/libsass/src/cencode.c +2 -2
- data/ext/libsass/src/check_nesting.cpp +52 -56
- data/ext/libsass/src/check_nesting.hpp +35 -34
- data/ext/libsass/src/color_maps.cpp +156 -153
- data/ext/libsass/src/color_maps.hpp +152 -152
- data/ext/libsass/src/constants.cpp +15 -0
- data/ext/libsass/src/constants.hpp +13 -0
- data/ext/libsass/src/context.cpp +24 -14
- data/ext/libsass/src/context.hpp +6 -6
- data/ext/libsass/src/cssize.cpp +69 -71
- data/ext/libsass/src/cssize.hpp +50 -50
- data/ext/libsass/src/debugger.hpp +117 -110
- data/ext/libsass/src/emitter.cpp +13 -12
- data/ext/libsass/src/emitter.hpp +13 -9
- data/ext/libsass/src/environment.cpp +15 -1
- data/ext/libsass/src/environment.hpp +6 -0
- data/ext/libsass/src/error_handling.cpp +36 -59
- data/ext/libsass/src/error_handling.hpp +29 -16
- data/ext/libsass/src/eval.cpp +302 -323
- data/ext/libsass/src/eval.hpp +64 -55
- data/ext/libsass/src/expand.cpp +94 -88
- data/ext/libsass/src/expand.hpp +33 -37
- data/ext/libsass/src/extend.cpp +38 -36
- data/ext/libsass/src/extend.hpp +15 -15
- data/ext/libsass/src/file.cpp +34 -2
- data/ext/libsass/src/fn_colors.cpp +594 -0
- data/ext/libsass/src/fn_colors.hpp +85 -0
- data/ext/libsass/src/fn_lists.cpp +284 -0
- data/ext/libsass/src/fn_lists.hpp +34 -0
- data/ext/libsass/src/fn_maps.cpp +94 -0
- data/ext/libsass/src/fn_maps.hpp +30 -0
- data/ext/libsass/src/fn_miscs.cpp +256 -0
- data/ext/libsass/src/fn_miscs.hpp +40 -0
- data/ext/libsass/src/fn_numbers.cpp +220 -0
- data/ext/libsass/src/fn_numbers.hpp +45 -0
- data/ext/libsass/src/fn_selectors.cpp +235 -0
- data/ext/libsass/src/fn_selectors.hpp +35 -0
- data/ext/libsass/src/fn_strings.cpp +254 -0
- data/ext/libsass/src/fn_strings.hpp +34 -0
- data/ext/libsass/src/fn_utils.cpp +156 -0
- data/ext/libsass/src/fn_utils.hpp +56 -0
- data/ext/libsass/src/inspect.cpp +101 -152
- data/ext/libsass/src/inspect.hpp +69 -73
- data/ext/libsass/src/json.cpp +2 -2
- data/ext/libsass/src/lexer.cpp +6 -3
- data/ext/libsass/src/listize.cpp +9 -11
- data/ext/libsass/src/listize.hpp +11 -7
- data/ext/libsass/src/memory/SharedPtr.cpp +2 -83
- data/ext/libsass/src/memory/SharedPtr.hpp +127 -143
- data/ext/libsass/src/node.cpp +13 -10
- data/ext/libsass/src/node.hpp +3 -3
- data/ext/libsass/src/operation.hpp +184 -144
- data/ext/libsass/src/operators.cpp +43 -17
- data/ext/libsass/src/operators.hpp +5 -5
- data/ext/libsass/src/output.cpp +21 -18
- data/ext/libsass/src/output.hpp +14 -21
- data/ext/libsass/src/parser.cpp +215 -183
- data/ext/libsass/src/parser.hpp +28 -24
- data/ext/libsass/src/plugins.cpp +5 -1
- data/ext/libsass/src/position.cpp +3 -0
- data/ext/libsass/src/prelexer.cpp +9 -3
- data/ext/libsass/src/prelexer.hpp +9 -9
- data/ext/libsass/src/remove_placeholders.cpp +14 -11
- data/ext/libsass/src/remove_placeholders.hpp +8 -9
- data/ext/libsass/src/sass.cpp +9 -3
- data/ext/libsass/src/sass.hpp +12 -9
- data/ext/libsass/src/sass2scss.cpp +45 -14
- data/ext/libsass/src/sass_context.cpp +18 -15
- data/ext/libsass/src/sass_functions.cpp +6 -3
- data/ext/libsass/src/sass_functions.hpp +1 -1
- data/ext/libsass/src/sass_util.cpp +3 -0
- data/ext/libsass/src/sass_values.cpp +21 -13
- data/ext/libsass/src/source_map.cpp +5 -2
- data/ext/libsass/src/source_map.hpp +2 -2
- data/ext/libsass/src/subset_map.cpp +4 -1
- data/ext/libsass/src/to_value.cpp +23 -21
- data/ext/libsass/src/to_value.hpp +18 -22
- data/ext/libsass/src/units.cpp +4 -0
- data/ext/libsass/src/units.hpp +1 -0
- data/ext/libsass/src/utf8/checked.h +12 -10
- data/ext/libsass/src/utf8/core.h +3 -0
- data/ext/libsass/src/utf8_string.cpp +3 -0
- data/ext/libsass/src/util.cpp +67 -75
- data/ext/libsass/src/util.hpp +64 -19
- data/ext/libsass/src/util_string.cpp +75 -0
- data/ext/libsass/src/util_string.hpp +19 -0
- data/ext/libsass/src/values.cpp +22 -13
- data/ext/libsass/src/values.hpp +2 -2
- data/ext/libsass/win/libsass.targets +30 -4
- data/ext/libsass/win/libsass.vcxproj.filters +82 -4
- data/lib/sassc.rb +24 -0
- data/lib/sassc/engine.rb +2 -2
- data/lib/sassc/native.rb +8 -1
- data/lib/sassc/version.rb +1 -1
- data/sassc.gemspec +19 -11
- data/test/engine_test.rb +26 -1
- data/test/native_test.rb +1 -1
- metadata +66 -72
- data/ext/Rakefile +0 -3
- data/ext/libsass/.github/CONTRIBUTING.md +0 -65
- data/ext/libsass/.github/ISSUE_TEMPLATE.md +0 -54
- data/ext/libsass/.travis.yml +0 -64
- data/ext/libsass/Readme.md +0 -104
- data/ext/libsass/SECURITY.md +0 -10
- data/ext/libsass/appveyor.yml +0 -91
- data/ext/libsass/docs/README.md +0 -20
- data/ext/libsass/docs/api-context-example.md +0 -45
- data/ext/libsass/docs/api-context-internal.md +0 -163
- data/ext/libsass/docs/api-context.md +0 -295
- data/ext/libsass/docs/api-doc.md +0 -215
- data/ext/libsass/docs/api-function-example.md +0 -67
- data/ext/libsass/docs/api-function-internal.md +0 -8
- data/ext/libsass/docs/api-function.md +0 -74
- data/ext/libsass/docs/api-importer-example.md +0 -112
- data/ext/libsass/docs/api-importer-internal.md +0 -20
- data/ext/libsass/docs/api-importer.md +0 -86
- data/ext/libsass/docs/api-value-example.md +0 -55
- data/ext/libsass/docs/api-value-internal.md +0 -76
- data/ext/libsass/docs/api-value.md +0 -154
- data/ext/libsass/docs/build-on-darwin.md +0 -27
- data/ext/libsass/docs/build-on-gentoo.md +0 -55
- data/ext/libsass/docs/build-on-windows.md +0 -139
- data/ext/libsass/docs/build-shared-library.md +0 -35
- data/ext/libsass/docs/build-with-autotools.md +0 -78
- data/ext/libsass/docs/build-with-makefiles.md +0 -68
- data/ext/libsass/docs/build-with-mingw.md +0 -107
- data/ext/libsass/docs/build-with-visual-studio.md +0 -90
- data/ext/libsass/docs/build.md +0 -97
- data/ext/libsass/docs/compatibility-plan.md +0 -48
- data/ext/libsass/docs/contributing.md +0 -17
- data/ext/libsass/docs/custom-functions-internal.md +0 -122
- data/ext/libsass/docs/dev-ast-memory.md +0 -223
- data/ext/libsass/docs/implementations.md +0 -56
- data/ext/libsass/docs/plugins.md +0 -47
- data/ext/libsass/docs/setup-environment.md +0 -68
- data/ext/libsass/docs/source-map-internals.md +0 -51
- data/ext/libsass/docs/trace.md +0 -26
- data/ext/libsass/docs/triage.md +0 -17
- data/ext/libsass/docs/unicode.md +0 -39
- data/ext/libsass/extconf.rb +0 -6
- data/ext/libsass/script/bootstrap +0 -13
- data/ext/libsass/script/branding +0 -10
- data/ext/libsass/script/ci-build-libsass +0 -134
- data/ext/libsass/script/ci-build-plugin +0 -62
- data/ext/libsass/script/ci-install-compiler +0 -6
- data/ext/libsass/script/ci-install-deps +0 -20
- data/ext/libsass/script/ci-report-coverage +0 -42
- data/ext/libsass/script/spec +0 -5
- data/ext/libsass/script/tap-driver +0 -652
- data/ext/libsass/script/tap-runner +0 -1
- data/ext/libsass/script/test-leaks.pl +0 -103
- data/ext/libsass/src/functions.cpp +0 -2234
- data/ext/libsass/src/functions.hpp +0 -198
- data/ext/libsass/src/to_c.hpp +0 -39
- data/ext/libsass/test/test_node.cpp +0 -94
- data/ext/libsass/test/test_paths.cpp +0 -28
- data/ext/libsass/test/test_selector_difference.cpp +0 -25
- data/ext/libsass/test/test_specificity.cpp +0 -25
- data/ext/libsass/test/test_subset_map.cpp +0 -472
- data/ext/libsass/test/test_superselector.cpp +0 -69
- data/ext/libsass/test/test_unification.cpp +0 -31
- data/lib/tasks/libsass.rb +0 -33
@@ -6,58 +6,59 @@
|
|
6
6
|
|
7
7
|
namespace Sass {
|
8
8
|
|
9
|
-
class CheckNesting : public Operation_CRTP<
|
9
|
+
class CheckNesting : public Operation_CRTP<Statement*, CheckNesting> {
|
10
10
|
|
11
|
-
std::vector<
|
11
|
+
std::vector<Statement*> parents;
|
12
12
|
Backtraces traces;
|
13
|
-
|
14
|
-
|
13
|
+
Statement* parent;
|
14
|
+
Definition* current_mixin_definition;
|
15
15
|
|
16
|
-
|
17
|
-
|
18
|
-
Statement_Ptr visit_children(Statement_Ptr);
|
16
|
+
Statement* before(Statement*);
|
17
|
+
Statement* visit_children(Statement*);
|
19
18
|
|
20
19
|
public:
|
21
20
|
CheckNesting();
|
22
21
|
~CheckNesting() { }
|
23
22
|
|
24
|
-
|
25
|
-
|
26
|
-
|
23
|
+
Statement* operator()(Block*);
|
24
|
+
Statement* operator()(Definition*);
|
25
|
+
Statement* operator()(If*);
|
27
26
|
|
28
27
|
template <typename U>
|
29
|
-
|
30
|
-
|
31
|
-
if (this->should_visit(
|
32
|
-
|
28
|
+
Statement* fallback(U x) {
|
29
|
+
Statement* s = Cast<Statement>(x);
|
30
|
+
if (s && this->should_visit(s)) {
|
31
|
+
Block* b1 = Cast<Block>(s);
|
32
|
+
Has_Block* b2 = Cast<Has_Block>(s);
|
33
|
+
if (b1 || b2) return visit_children(s);
|
33
34
|
}
|
34
|
-
return
|
35
|
+
return s;
|
35
36
|
}
|
36
37
|
|
37
38
|
private:
|
38
|
-
void invalid_content_parent(
|
39
|
-
void invalid_charset_parent(
|
40
|
-
void invalid_extend_parent(
|
41
|
-
// void invalid_import_parent(
|
42
|
-
void invalid_mixin_definition_parent(
|
43
|
-
void invalid_function_parent(
|
39
|
+
void invalid_content_parent(Statement*, AST_Node*);
|
40
|
+
void invalid_charset_parent(Statement*, AST_Node*);
|
41
|
+
void invalid_extend_parent(Statement*, AST_Node*);
|
42
|
+
// void invalid_import_parent(Statement*);
|
43
|
+
void invalid_mixin_definition_parent(Statement*, AST_Node*);
|
44
|
+
void invalid_function_parent(Statement*, AST_Node*);
|
44
45
|
|
45
|
-
void invalid_function_child(
|
46
|
-
void invalid_prop_child(
|
47
|
-
void invalid_prop_parent(
|
48
|
-
void invalid_return_parent(
|
49
|
-
void invalid_value_child(
|
46
|
+
void invalid_function_child(Statement*);
|
47
|
+
void invalid_prop_child(Statement*);
|
48
|
+
void invalid_prop_parent(Statement*, AST_Node*);
|
49
|
+
void invalid_return_parent(Statement*, AST_Node*);
|
50
|
+
void invalid_value_child(AST_Node*);
|
50
51
|
|
51
|
-
bool is_transparent_parent(
|
52
|
+
bool is_transparent_parent(Statement*, Statement*);
|
52
53
|
|
53
|
-
bool should_visit(
|
54
|
+
bool should_visit(Statement*);
|
54
55
|
|
55
|
-
bool is_charset(
|
56
|
-
bool is_mixin(
|
57
|
-
bool is_function(
|
58
|
-
bool is_root_node(
|
59
|
-
bool is_at_root_node(
|
60
|
-
bool is_directive_node(
|
56
|
+
bool is_charset(Statement*);
|
57
|
+
bool is_mixin(Statement*);
|
58
|
+
bool is_function(Statement*);
|
59
|
+
bool is_root_node(Statement*);
|
60
|
+
bool is_at_root_node(Statement*);
|
61
|
+
bool is_directive_node(Statement*);
|
61
62
|
};
|
62
63
|
|
63
64
|
}
|
@@ -1,4 +1,7 @@
|
|
1
|
+
// sass.hpp must go before all system headers to get the
|
2
|
+
// __EXTENSIONS__ fix on Solaris.
|
1
3
|
#include "sass.hpp"
|
4
|
+
|
2
5
|
#include "ast.hpp"
|
3
6
|
#include "color_maps.hpp"
|
4
7
|
|
@@ -159,155 +162,155 @@ namespace Sass {
|
|
159
162
|
|
160
163
|
namespace Colors {
|
161
164
|
const ParserState color_table("[COLOR TABLE]");
|
162
|
-
const
|
163
|
-
const
|
164
|
-
const
|
165
|
-
const
|
166
|
-
const
|
167
|
-
const
|
168
|
-
const
|
169
|
-
const
|
170
|
-
const
|
171
|
-
const
|
172
|
-
const
|
173
|
-
const
|
174
|
-
const
|
175
|
-
const
|
176
|
-
const
|
177
|
-
const
|
178
|
-
const
|
179
|
-
const
|
180
|
-
const
|
181
|
-
const
|
182
|
-
const
|
183
|
-
const
|
184
|
-
const
|
185
|
-
const
|
186
|
-
const
|
187
|
-
const
|
188
|
-
const
|
189
|
-
const
|
190
|
-
const
|
191
|
-
const
|
192
|
-
const
|
193
|
-
const
|
194
|
-
const
|
195
|
-
const
|
196
|
-
const
|
197
|
-
const
|
198
|
-
const
|
199
|
-
const
|
200
|
-
const
|
201
|
-
const
|
202
|
-
const
|
203
|
-
const
|
204
|
-
const
|
205
|
-
const
|
206
|
-
const
|
207
|
-
const
|
208
|
-
const
|
209
|
-
const
|
210
|
-
const
|
211
|
-
const
|
212
|
-
const
|
213
|
-
const
|
214
|
-
const
|
215
|
-
const
|
216
|
-
const
|
217
|
-
const
|
218
|
-
const
|
219
|
-
const
|
220
|
-
const
|
221
|
-
const
|
222
|
-
const
|
223
|
-
const
|
224
|
-
const
|
225
|
-
const
|
226
|
-
const
|
227
|
-
const
|
228
|
-
const
|
229
|
-
const
|
230
|
-
const
|
231
|
-
const
|
232
|
-
const
|
233
|
-
const
|
234
|
-
const
|
235
|
-
const
|
236
|
-
const
|
237
|
-
const
|
238
|
-
const
|
239
|
-
const
|
240
|
-
const
|
241
|
-
const
|
242
|
-
const
|
243
|
-
const
|
244
|
-
const
|
245
|
-
const
|
246
|
-
const
|
247
|
-
const
|
248
|
-
const
|
249
|
-
const
|
250
|
-
const
|
251
|
-
const
|
252
|
-
const
|
253
|
-
const
|
254
|
-
const
|
255
|
-
const
|
256
|
-
const
|
257
|
-
const
|
258
|
-
const
|
259
|
-
const
|
260
|
-
const
|
261
|
-
const
|
262
|
-
const
|
263
|
-
const
|
264
|
-
const
|
265
|
-
const
|
266
|
-
const
|
267
|
-
const
|
268
|
-
const
|
269
|
-
const
|
270
|
-
const
|
271
|
-
const
|
272
|
-
const
|
273
|
-
const
|
274
|
-
const
|
275
|
-
const
|
276
|
-
const
|
277
|
-
const
|
278
|
-
const
|
279
|
-
const
|
280
|
-
const
|
281
|
-
const
|
282
|
-
const
|
283
|
-
const
|
284
|
-
const
|
285
|
-
const
|
286
|
-
const
|
287
|
-
const
|
288
|
-
const
|
289
|
-
const
|
290
|
-
const
|
291
|
-
const
|
292
|
-
const
|
293
|
-
const
|
294
|
-
const
|
295
|
-
const
|
296
|
-
const
|
297
|
-
const
|
298
|
-
const
|
299
|
-
const
|
300
|
-
const
|
301
|
-
const
|
302
|
-
const
|
303
|
-
const
|
304
|
-
const
|
305
|
-
const
|
306
|
-
const
|
307
|
-
const
|
308
|
-
const
|
309
|
-
const
|
310
|
-
const
|
165
|
+
const Color_RGBA aliceblue(color_table, 240, 248, 255, 1);
|
166
|
+
const Color_RGBA antiquewhite(color_table, 250, 235, 215, 1);
|
167
|
+
const Color_RGBA cyan(color_table, 0, 255, 255, 1);
|
168
|
+
const Color_RGBA aqua(color_table, 0, 255, 255, 1);
|
169
|
+
const Color_RGBA aquamarine(color_table, 127, 255, 212, 1);
|
170
|
+
const Color_RGBA azure(color_table, 240, 255, 255, 1);
|
171
|
+
const Color_RGBA beige(color_table, 245, 245, 220, 1);
|
172
|
+
const Color_RGBA bisque(color_table, 255, 228, 196, 1);
|
173
|
+
const Color_RGBA black(color_table, 0, 0, 0, 1);
|
174
|
+
const Color_RGBA blanchedalmond(color_table, 255, 235, 205, 1);
|
175
|
+
const Color_RGBA blue(color_table, 0, 0, 255, 1);
|
176
|
+
const Color_RGBA blueviolet(color_table, 138, 43, 226, 1);
|
177
|
+
const Color_RGBA brown(color_table, 165, 42, 42, 1);
|
178
|
+
const Color_RGBA burlywood(color_table, 222, 184, 135, 1);
|
179
|
+
const Color_RGBA cadetblue(color_table, 95, 158, 160, 1);
|
180
|
+
const Color_RGBA chartreuse(color_table, 127, 255, 0, 1);
|
181
|
+
const Color_RGBA chocolate(color_table, 210, 105, 30, 1);
|
182
|
+
const Color_RGBA coral(color_table, 255, 127, 80, 1);
|
183
|
+
const Color_RGBA cornflowerblue(color_table, 100, 149, 237, 1);
|
184
|
+
const Color_RGBA cornsilk(color_table, 255, 248, 220, 1);
|
185
|
+
const Color_RGBA crimson(color_table, 220, 20, 60, 1);
|
186
|
+
const Color_RGBA darkblue(color_table, 0, 0, 139, 1);
|
187
|
+
const Color_RGBA darkcyan(color_table, 0, 139, 139, 1);
|
188
|
+
const Color_RGBA darkgoldenrod(color_table, 184, 134, 11, 1);
|
189
|
+
const Color_RGBA darkgray(color_table, 169, 169, 169, 1);
|
190
|
+
const Color_RGBA darkgrey(color_table, 169, 169, 169, 1);
|
191
|
+
const Color_RGBA darkgreen(color_table, 0, 100, 0, 1);
|
192
|
+
const Color_RGBA darkkhaki(color_table, 189, 183, 107, 1);
|
193
|
+
const Color_RGBA darkmagenta(color_table, 139, 0, 139, 1);
|
194
|
+
const Color_RGBA darkolivegreen(color_table, 85, 107, 47, 1);
|
195
|
+
const Color_RGBA darkorange(color_table, 255, 140, 0, 1);
|
196
|
+
const Color_RGBA darkorchid(color_table, 153, 50, 204, 1);
|
197
|
+
const Color_RGBA darkred(color_table, 139, 0, 0, 1);
|
198
|
+
const Color_RGBA darksalmon(color_table, 233, 150, 122, 1);
|
199
|
+
const Color_RGBA darkseagreen(color_table, 143, 188, 143, 1);
|
200
|
+
const Color_RGBA darkslateblue(color_table, 72, 61, 139, 1);
|
201
|
+
const Color_RGBA darkslategray(color_table, 47, 79, 79, 1);
|
202
|
+
const Color_RGBA darkslategrey(color_table, 47, 79, 79, 1);
|
203
|
+
const Color_RGBA darkturquoise(color_table, 0, 206, 209, 1);
|
204
|
+
const Color_RGBA darkviolet(color_table, 148, 0, 211, 1);
|
205
|
+
const Color_RGBA deeppink(color_table, 255, 20, 147, 1);
|
206
|
+
const Color_RGBA deepskyblue(color_table, 0, 191, 255, 1);
|
207
|
+
const Color_RGBA dimgray(color_table, 105, 105, 105, 1);
|
208
|
+
const Color_RGBA dimgrey(color_table, 105, 105, 105, 1);
|
209
|
+
const Color_RGBA dodgerblue(color_table, 30, 144, 255, 1);
|
210
|
+
const Color_RGBA firebrick(color_table, 178, 34, 34, 1);
|
211
|
+
const Color_RGBA floralwhite(color_table, 255, 250, 240, 1);
|
212
|
+
const Color_RGBA forestgreen(color_table, 34, 139, 34, 1);
|
213
|
+
const Color_RGBA magenta(color_table, 255, 0, 255, 1);
|
214
|
+
const Color_RGBA fuchsia(color_table, 255, 0, 255, 1);
|
215
|
+
const Color_RGBA gainsboro(color_table, 220, 220, 220, 1);
|
216
|
+
const Color_RGBA ghostwhite(color_table, 248, 248, 255, 1);
|
217
|
+
const Color_RGBA gold(color_table, 255, 215, 0, 1);
|
218
|
+
const Color_RGBA goldenrod(color_table, 218, 165, 32, 1);
|
219
|
+
const Color_RGBA gray(color_table, 128, 128, 128, 1);
|
220
|
+
const Color_RGBA grey(color_table, 128, 128, 128, 1);
|
221
|
+
const Color_RGBA green(color_table, 0, 128, 0, 1);
|
222
|
+
const Color_RGBA greenyellow(color_table, 173, 255, 47, 1);
|
223
|
+
const Color_RGBA honeydew(color_table, 240, 255, 240, 1);
|
224
|
+
const Color_RGBA hotpink(color_table, 255, 105, 180, 1);
|
225
|
+
const Color_RGBA indianred(color_table, 205, 92, 92, 1);
|
226
|
+
const Color_RGBA indigo(color_table, 75, 0, 130, 1);
|
227
|
+
const Color_RGBA ivory(color_table, 255, 255, 240, 1);
|
228
|
+
const Color_RGBA khaki(color_table, 240, 230, 140, 1);
|
229
|
+
const Color_RGBA lavender(color_table, 230, 230, 250, 1);
|
230
|
+
const Color_RGBA lavenderblush(color_table, 255, 240, 245, 1);
|
231
|
+
const Color_RGBA lawngreen(color_table, 124, 252, 0, 1);
|
232
|
+
const Color_RGBA lemonchiffon(color_table, 255, 250, 205, 1);
|
233
|
+
const Color_RGBA lightblue(color_table, 173, 216, 230, 1);
|
234
|
+
const Color_RGBA lightcoral(color_table, 240, 128, 128, 1);
|
235
|
+
const Color_RGBA lightcyan(color_table, 224, 255, 255, 1);
|
236
|
+
const Color_RGBA lightgoldenrodyellow(color_table, 250, 250, 210, 1);
|
237
|
+
const Color_RGBA lightgray(color_table, 211, 211, 211, 1);
|
238
|
+
const Color_RGBA lightgrey(color_table, 211, 211, 211, 1);
|
239
|
+
const Color_RGBA lightgreen(color_table, 144, 238, 144, 1);
|
240
|
+
const Color_RGBA lightpink(color_table, 255, 182, 193, 1);
|
241
|
+
const Color_RGBA lightsalmon(color_table, 255, 160, 122, 1);
|
242
|
+
const Color_RGBA lightseagreen(color_table, 32, 178, 170, 1);
|
243
|
+
const Color_RGBA lightskyblue(color_table, 135, 206, 250, 1);
|
244
|
+
const Color_RGBA lightslategray(color_table, 119, 136, 153, 1);
|
245
|
+
const Color_RGBA lightslategrey(color_table, 119, 136, 153, 1);
|
246
|
+
const Color_RGBA lightsteelblue(color_table, 176, 196, 222, 1);
|
247
|
+
const Color_RGBA lightyellow(color_table, 255, 255, 224, 1);
|
248
|
+
const Color_RGBA lime(color_table, 0, 255, 0, 1);
|
249
|
+
const Color_RGBA limegreen(color_table, 50, 205, 50, 1);
|
250
|
+
const Color_RGBA linen(color_table, 250, 240, 230, 1);
|
251
|
+
const Color_RGBA maroon(color_table, 128, 0, 0, 1);
|
252
|
+
const Color_RGBA mediumaquamarine(color_table, 102, 205, 170, 1);
|
253
|
+
const Color_RGBA mediumblue(color_table, 0, 0, 205, 1);
|
254
|
+
const Color_RGBA mediumorchid(color_table, 186, 85, 211, 1);
|
255
|
+
const Color_RGBA mediumpurple(color_table, 147, 112, 219, 1);
|
256
|
+
const Color_RGBA mediumseagreen(color_table, 60, 179, 113, 1);
|
257
|
+
const Color_RGBA mediumslateblue(color_table, 123, 104, 238, 1);
|
258
|
+
const Color_RGBA mediumspringgreen(color_table, 0, 250, 154, 1);
|
259
|
+
const Color_RGBA mediumturquoise(color_table, 72, 209, 204, 1);
|
260
|
+
const Color_RGBA mediumvioletred(color_table, 199, 21, 133, 1);
|
261
|
+
const Color_RGBA midnightblue(color_table, 25, 25, 112, 1);
|
262
|
+
const Color_RGBA mintcream(color_table, 245, 255, 250, 1);
|
263
|
+
const Color_RGBA mistyrose(color_table, 255, 228, 225, 1);
|
264
|
+
const Color_RGBA moccasin(color_table, 255, 228, 181, 1);
|
265
|
+
const Color_RGBA navajowhite(color_table, 255, 222, 173, 1);
|
266
|
+
const Color_RGBA navy(color_table, 0, 0, 128, 1);
|
267
|
+
const Color_RGBA oldlace(color_table, 253, 245, 230, 1);
|
268
|
+
const Color_RGBA olive(color_table, 128, 128, 0, 1);
|
269
|
+
const Color_RGBA olivedrab(color_table, 107, 142, 35, 1);
|
270
|
+
const Color_RGBA orange(color_table, 255, 165, 0, 1);
|
271
|
+
const Color_RGBA orangered(color_table, 255, 69, 0, 1);
|
272
|
+
const Color_RGBA orchid(color_table, 218, 112, 214, 1);
|
273
|
+
const Color_RGBA palegoldenrod(color_table, 238, 232, 170, 1);
|
274
|
+
const Color_RGBA palegreen(color_table, 152, 251, 152, 1);
|
275
|
+
const Color_RGBA paleturquoise(color_table, 175, 238, 238, 1);
|
276
|
+
const Color_RGBA palevioletred(color_table, 219, 112, 147, 1);
|
277
|
+
const Color_RGBA papayawhip(color_table, 255, 239, 213, 1);
|
278
|
+
const Color_RGBA peachpuff(color_table, 255, 218, 185, 1);
|
279
|
+
const Color_RGBA peru(color_table, 205, 133, 63, 1);
|
280
|
+
const Color_RGBA pink(color_table, 255, 192, 203, 1);
|
281
|
+
const Color_RGBA plum(color_table, 221, 160, 221, 1);
|
282
|
+
const Color_RGBA powderblue(color_table, 176, 224, 230, 1);
|
283
|
+
const Color_RGBA purple(color_table, 128, 0, 128, 1);
|
284
|
+
const Color_RGBA red(color_table, 255, 0, 0, 1);
|
285
|
+
const Color_RGBA rosybrown(color_table, 188, 143, 143, 1);
|
286
|
+
const Color_RGBA royalblue(color_table, 65, 105, 225, 1);
|
287
|
+
const Color_RGBA saddlebrown(color_table, 139, 69, 19, 1);
|
288
|
+
const Color_RGBA salmon(color_table, 250, 128, 114, 1);
|
289
|
+
const Color_RGBA sandybrown(color_table, 244, 164, 96, 1);
|
290
|
+
const Color_RGBA seagreen(color_table, 46, 139, 87, 1);
|
291
|
+
const Color_RGBA seashell(color_table, 255, 245, 238, 1);
|
292
|
+
const Color_RGBA sienna(color_table, 160, 82, 45, 1);
|
293
|
+
const Color_RGBA silver(color_table, 192, 192, 192, 1);
|
294
|
+
const Color_RGBA skyblue(color_table, 135, 206, 235, 1);
|
295
|
+
const Color_RGBA slateblue(color_table, 106, 90, 205, 1);
|
296
|
+
const Color_RGBA slategray(color_table, 112, 128, 144, 1);
|
297
|
+
const Color_RGBA slategrey(color_table, 112, 128, 144, 1);
|
298
|
+
const Color_RGBA snow(color_table, 255, 250, 250, 1);
|
299
|
+
const Color_RGBA springgreen(color_table, 0, 255, 127, 1);
|
300
|
+
const Color_RGBA steelblue(color_table, 70, 130, 180, 1);
|
301
|
+
const Color_RGBA tan(color_table, 210, 180, 140, 1);
|
302
|
+
const Color_RGBA teal(color_table, 0, 128, 128, 1);
|
303
|
+
const Color_RGBA thistle(color_table, 216, 191, 216, 1);
|
304
|
+
const Color_RGBA tomato(color_table, 255, 99, 71, 1);
|
305
|
+
const Color_RGBA turquoise(color_table, 64, 224, 208, 1);
|
306
|
+
const Color_RGBA violet(color_table, 238, 130, 238, 1);
|
307
|
+
const Color_RGBA wheat(color_table, 245, 222, 179, 1);
|
308
|
+
const Color_RGBA white(color_table, 255, 255, 255, 1);
|
309
|
+
const Color_RGBA whitesmoke(color_table, 245, 245, 245, 1);
|
310
|
+
const Color_RGBA yellow(color_table, 255, 255, 0, 1);
|
311
|
+
const Color_RGBA yellowgreen(color_table, 154, 205, 50, 1);
|
312
|
+
const Color_RGBA rebeccapurple(color_table, 102, 51, 153, 1);
|
313
|
+
const Color_RGBA transparent(color_table, 0, 0, 0, 0);
|
311
314
|
}
|
312
315
|
|
313
316
|
const std::map<const int, const char*> colors_to_names {
|
@@ -452,7 +455,7 @@ namespace Sass {
|
|
452
455
|
{ 102 * 0x10000 + 51 * 0x100 + 153, ColorNames::rebeccapurple }
|
453
456
|
};
|
454
457
|
|
455
|
-
const std::map<const char*,
|
458
|
+
const std::map<const char*, const Color_RGBA*, map_cmp_str> names_to_colors
|
456
459
|
{
|
457
460
|
{ ColorNames::aliceblue, &Colors::aliceblue },
|
458
461
|
{ ColorNames::antiquewhite, &Colors::antiquewhite },
|
@@ -605,12 +608,12 @@ namespace Sass {
|
|
605
608
|
{ ColorNames::transparent, &Colors::transparent }
|
606
609
|
};
|
607
610
|
|
608
|
-
|
611
|
+
const Color_RGBA* name_to_color(const char* key)
|
609
612
|
{
|
610
613
|
return name_to_color(std::string(key));
|
611
614
|
}
|
612
615
|
|
613
|
-
|
616
|
+
const Color_RGBA* name_to_color(const std::string& key)
|
614
617
|
{
|
615
618
|
// case insensitive lookup. See #2462
|
616
619
|
std::string lower{key};
|
@@ -637,7 +640,7 @@ namespace Sass {
|
|
637
640
|
return color_to_name((int)key);
|
638
641
|
}
|
639
642
|
|
640
|
-
const char* color_to_name(const
|
643
|
+
const char* color_to_name(const Color_RGBA& c)
|
641
644
|
{
|
642
645
|
double key = c.r() * 0x10000
|
643
646
|
+ c.g() * 0x100
|
@@ -169,161 +169,161 @@ namespace Sass {
|
|
169
169
|
}
|
170
170
|
|
171
171
|
namespace Colors {
|
172
|
-
extern const
|
173
|
-
extern const
|
174
|
-
extern const
|
175
|
-
extern const
|
176
|
-
extern const
|
177
|
-
extern const
|
178
|
-
extern const
|
179
|
-
extern const
|
180
|
-
extern const
|
181
|
-
extern const
|
182
|
-
extern const
|
183
|
-
extern const
|
184
|
-
extern const
|
185
|
-
extern const
|
186
|
-
extern const
|
187
|
-
extern const
|
188
|
-
extern const
|
189
|
-
extern const
|
190
|
-
extern const
|
191
|
-
extern const
|
192
|
-
extern const
|
193
|
-
extern const
|
194
|
-
extern const
|
195
|
-
extern const
|
196
|
-
extern const
|
197
|
-
extern const
|
198
|
-
extern const
|
199
|
-
extern const
|
200
|
-
extern const
|
201
|
-
extern const
|
202
|
-
extern const
|
203
|
-
extern const
|
204
|
-
extern const
|
205
|
-
extern const
|
206
|
-
extern const
|
207
|
-
extern const
|
208
|
-
extern const
|
209
|
-
extern const
|
210
|
-
extern const
|
211
|
-
extern const
|
212
|
-
extern const
|
213
|
-
extern const
|
214
|
-
extern const
|
215
|
-
extern const
|
216
|
-
extern const
|
217
|
-
extern const
|
218
|
-
extern const
|
219
|
-
extern const
|
220
|
-
extern const
|
221
|
-
extern const
|
222
|
-
extern const
|
223
|
-
extern const
|
224
|
-
extern const
|
225
|
-
extern const
|
226
|
-
extern const
|
227
|
-
extern const
|
228
|
-
extern const
|
229
|
-
extern const
|
230
|
-
extern const
|
231
|
-
extern const
|
232
|
-
extern const
|
233
|
-
extern const
|
234
|
-
extern const
|
235
|
-
extern const
|
236
|
-
extern const
|
237
|
-
extern const
|
238
|
-
extern const
|
239
|
-
extern const
|
240
|
-
extern const
|
241
|
-
extern const
|
242
|
-
extern const
|
243
|
-
extern const
|
244
|
-
extern const
|
245
|
-
extern const
|
246
|
-
extern const
|
247
|
-
extern const
|
248
|
-
extern const
|
249
|
-
extern const
|
250
|
-
extern const
|
251
|
-
extern const
|
252
|
-
extern const
|
253
|
-
extern const
|
254
|
-
extern const
|
255
|
-
extern const
|
256
|
-
extern const
|
257
|
-
extern const
|
258
|
-
extern const
|
259
|
-
extern const
|
260
|
-
extern const
|
261
|
-
extern const
|
262
|
-
extern const
|
263
|
-
extern const
|
264
|
-
extern const
|
265
|
-
extern const
|
266
|
-
extern const
|
267
|
-
extern const
|
268
|
-
extern const
|
269
|
-
extern const
|
270
|
-
extern const
|
271
|
-
extern const
|
272
|
-
extern const
|
273
|
-
extern const
|
274
|
-
extern const
|
275
|
-
extern const
|
276
|
-
extern const
|
277
|
-
extern const
|
278
|
-
extern const
|
279
|
-
extern const
|
280
|
-
extern const
|
281
|
-
extern const
|
282
|
-
extern const
|
283
|
-
extern const
|
284
|
-
extern const
|
285
|
-
extern const
|
286
|
-
extern const
|
287
|
-
extern const
|
288
|
-
extern const
|
289
|
-
extern const
|
290
|
-
extern const
|
291
|
-
extern const
|
292
|
-
extern const
|
293
|
-
extern const
|
294
|
-
extern const
|
295
|
-
extern const
|
296
|
-
extern const
|
297
|
-
extern const
|
298
|
-
extern const
|
299
|
-
extern const
|
300
|
-
extern const
|
301
|
-
extern const
|
302
|
-
extern const
|
303
|
-
extern const
|
304
|
-
extern const
|
305
|
-
extern const
|
306
|
-
extern const
|
307
|
-
extern const
|
308
|
-
extern const
|
309
|
-
extern const
|
310
|
-
extern const
|
311
|
-
extern const
|
312
|
-
extern const
|
313
|
-
extern const
|
314
|
-
extern const
|
315
|
-
extern const
|
316
|
-
extern const
|
317
|
-
extern const
|
318
|
-
extern const
|
319
|
-
extern const
|
320
|
-
extern const
|
172
|
+
extern const Color_RGBA aliceblue;
|
173
|
+
extern const Color_RGBA antiquewhite;
|
174
|
+
extern const Color_RGBA cyan;
|
175
|
+
extern const Color_RGBA aqua;
|
176
|
+
extern const Color_RGBA aquamarine;
|
177
|
+
extern const Color_RGBA azure;
|
178
|
+
extern const Color_RGBA beige;
|
179
|
+
extern const Color_RGBA bisque;
|
180
|
+
extern const Color_RGBA black;
|
181
|
+
extern const Color_RGBA blanchedalmond;
|
182
|
+
extern const Color_RGBA blue;
|
183
|
+
extern const Color_RGBA blueviolet;
|
184
|
+
extern const Color_RGBA brown;
|
185
|
+
extern const Color_RGBA burlywood;
|
186
|
+
extern const Color_RGBA cadetblue;
|
187
|
+
extern const Color_RGBA chartreuse;
|
188
|
+
extern const Color_RGBA chocolate;
|
189
|
+
extern const Color_RGBA coral;
|
190
|
+
extern const Color_RGBA cornflowerblue;
|
191
|
+
extern const Color_RGBA cornsilk;
|
192
|
+
extern const Color_RGBA crimson;
|
193
|
+
extern const Color_RGBA darkblue;
|
194
|
+
extern const Color_RGBA darkcyan;
|
195
|
+
extern const Color_RGBA darkgoldenrod;
|
196
|
+
extern const Color_RGBA darkgray;
|
197
|
+
extern const Color_RGBA darkgrey;
|
198
|
+
extern const Color_RGBA darkgreen;
|
199
|
+
extern const Color_RGBA darkkhaki;
|
200
|
+
extern const Color_RGBA darkmagenta;
|
201
|
+
extern const Color_RGBA darkolivegreen;
|
202
|
+
extern const Color_RGBA darkorange;
|
203
|
+
extern const Color_RGBA darkorchid;
|
204
|
+
extern const Color_RGBA darkred;
|
205
|
+
extern const Color_RGBA darksalmon;
|
206
|
+
extern const Color_RGBA darkseagreen;
|
207
|
+
extern const Color_RGBA darkslateblue;
|
208
|
+
extern const Color_RGBA darkslategray;
|
209
|
+
extern const Color_RGBA darkslategrey;
|
210
|
+
extern const Color_RGBA darkturquoise;
|
211
|
+
extern const Color_RGBA darkviolet;
|
212
|
+
extern const Color_RGBA deeppink;
|
213
|
+
extern const Color_RGBA deepskyblue;
|
214
|
+
extern const Color_RGBA dimgray;
|
215
|
+
extern const Color_RGBA dimgrey;
|
216
|
+
extern const Color_RGBA dodgerblue;
|
217
|
+
extern const Color_RGBA firebrick;
|
218
|
+
extern const Color_RGBA floralwhite;
|
219
|
+
extern const Color_RGBA forestgreen;
|
220
|
+
extern const Color_RGBA magenta;
|
221
|
+
extern const Color_RGBA fuchsia;
|
222
|
+
extern const Color_RGBA gainsboro;
|
223
|
+
extern const Color_RGBA ghostwhite;
|
224
|
+
extern const Color_RGBA gold;
|
225
|
+
extern const Color_RGBA goldenrod;
|
226
|
+
extern const Color_RGBA gray;
|
227
|
+
extern const Color_RGBA grey;
|
228
|
+
extern const Color_RGBA green;
|
229
|
+
extern const Color_RGBA greenyellow;
|
230
|
+
extern const Color_RGBA honeydew;
|
231
|
+
extern const Color_RGBA hotpink;
|
232
|
+
extern const Color_RGBA indianred;
|
233
|
+
extern const Color_RGBA indigo;
|
234
|
+
extern const Color_RGBA ivory;
|
235
|
+
extern const Color_RGBA khaki;
|
236
|
+
extern const Color_RGBA lavender;
|
237
|
+
extern const Color_RGBA lavenderblush;
|
238
|
+
extern const Color_RGBA lawngreen;
|
239
|
+
extern const Color_RGBA lemonchiffon;
|
240
|
+
extern const Color_RGBA lightblue;
|
241
|
+
extern const Color_RGBA lightcoral;
|
242
|
+
extern const Color_RGBA lightcyan;
|
243
|
+
extern const Color_RGBA lightgoldenrodyellow;
|
244
|
+
extern const Color_RGBA lightgray;
|
245
|
+
extern const Color_RGBA lightgrey;
|
246
|
+
extern const Color_RGBA lightgreen;
|
247
|
+
extern const Color_RGBA lightpink;
|
248
|
+
extern const Color_RGBA lightsalmon;
|
249
|
+
extern const Color_RGBA lightseagreen;
|
250
|
+
extern const Color_RGBA lightskyblue;
|
251
|
+
extern const Color_RGBA lightslategray;
|
252
|
+
extern const Color_RGBA lightslategrey;
|
253
|
+
extern const Color_RGBA lightsteelblue;
|
254
|
+
extern const Color_RGBA lightyellow;
|
255
|
+
extern const Color_RGBA lime;
|
256
|
+
extern const Color_RGBA limegreen;
|
257
|
+
extern const Color_RGBA linen;
|
258
|
+
extern const Color_RGBA maroon;
|
259
|
+
extern const Color_RGBA mediumaquamarine;
|
260
|
+
extern const Color_RGBA mediumblue;
|
261
|
+
extern const Color_RGBA mediumorchid;
|
262
|
+
extern const Color_RGBA mediumpurple;
|
263
|
+
extern const Color_RGBA mediumseagreen;
|
264
|
+
extern const Color_RGBA mediumslateblue;
|
265
|
+
extern const Color_RGBA mediumspringgreen;
|
266
|
+
extern const Color_RGBA mediumturquoise;
|
267
|
+
extern const Color_RGBA mediumvioletred;
|
268
|
+
extern const Color_RGBA midnightblue;
|
269
|
+
extern const Color_RGBA mintcream;
|
270
|
+
extern const Color_RGBA mistyrose;
|
271
|
+
extern const Color_RGBA moccasin;
|
272
|
+
extern const Color_RGBA navajowhite;
|
273
|
+
extern const Color_RGBA navy;
|
274
|
+
extern const Color_RGBA oldlace;
|
275
|
+
extern const Color_RGBA olive;
|
276
|
+
extern const Color_RGBA olivedrab;
|
277
|
+
extern const Color_RGBA orange;
|
278
|
+
extern const Color_RGBA orangered;
|
279
|
+
extern const Color_RGBA orchid;
|
280
|
+
extern const Color_RGBA palegoldenrod;
|
281
|
+
extern const Color_RGBA palegreen;
|
282
|
+
extern const Color_RGBA paleturquoise;
|
283
|
+
extern const Color_RGBA palevioletred;
|
284
|
+
extern const Color_RGBA papayawhip;
|
285
|
+
extern const Color_RGBA peachpuff;
|
286
|
+
extern const Color_RGBA peru;
|
287
|
+
extern const Color_RGBA pink;
|
288
|
+
extern const Color_RGBA plum;
|
289
|
+
extern const Color_RGBA powderblue;
|
290
|
+
extern const Color_RGBA purple;
|
291
|
+
extern const Color_RGBA red;
|
292
|
+
extern const Color_RGBA rosybrown;
|
293
|
+
extern const Color_RGBA royalblue;
|
294
|
+
extern const Color_RGBA saddlebrown;
|
295
|
+
extern const Color_RGBA salmon;
|
296
|
+
extern const Color_RGBA sandybrown;
|
297
|
+
extern const Color_RGBA seagreen;
|
298
|
+
extern const Color_RGBA seashell;
|
299
|
+
extern const Color_RGBA sienna;
|
300
|
+
extern const Color_RGBA silver;
|
301
|
+
extern const Color_RGBA skyblue;
|
302
|
+
extern const Color_RGBA slateblue;
|
303
|
+
extern const Color_RGBA slategray;
|
304
|
+
extern const Color_RGBA slategrey;
|
305
|
+
extern const Color_RGBA snow;
|
306
|
+
extern const Color_RGBA springgreen;
|
307
|
+
extern const Color_RGBA steelblue;
|
308
|
+
extern const Color_RGBA tan;
|
309
|
+
extern const Color_RGBA teal;
|
310
|
+
extern const Color_RGBA thistle;
|
311
|
+
extern const Color_RGBA tomato;
|
312
|
+
extern const Color_RGBA turquoise;
|
313
|
+
extern const Color_RGBA violet;
|
314
|
+
extern const Color_RGBA wheat;
|
315
|
+
extern const Color_RGBA white;
|
316
|
+
extern const Color_RGBA whitesmoke;
|
317
|
+
extern const Color_RGBA yellow;
|
318
|
+
extern const Color_RGBA yellowgreen;
|
319
|
+
extern const Color_RGBA rebeccapurple;
|
320
|
+
extern const Color_RGBA transparent;
|
321
321
|
}
|
322
322
|
|
323
|
-
|
324
|
-
|
323
|
+
const Color_RGBA* name_to_color(const char*);
|
324
|
+
const Color_RGBA* name_to_color(const std::string&);
|
325
325
|
const char* color_to_name(const int);
|
326
|
-
const char* color_to_name(const
|
326
|
+
const char* color_to_name(const Color_RGBA&);
|
327
327
|
const char* color_to_name(const double);
|
328
328
|
|
329
329
|
}
|