Skip to content

Commit 0062ffe

Browse files
committed
update memory
1 parent 03edd6c commit 0062ffe

File tree

6 files changed

+407
-146
lines changed

6 files changed

+407
-146
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
__nest__ (
2+
__all__,
3+
'colors', {
4+
__all__: {
5+
__inited__: false,
6+
__init__: function (__all__) {
7+
var american_rose = tuple ([255, 3, 62, 0.506]);
8+
var amethyst = tuple ([153, 102, 204, 0.6]);
9+
var azure = tuple ([0, 127, 255, 0.5]);
10+
var antique_fushia = tuple ([145, 92, 131, 0.465]);
11+
var blue = tuple ([255, 0, 0, 0.5]);
12+
var yellow = tuple ([255, 246, 0, 0.5]);
13+
var chartreuse = tuple ([127, 255, 0, 0.5]);
14+
var international_orange = tuple ([255, 79, 207, 0.561]);
15+
var vivid = list ([amethyst, american_rose, azure, antique_fushia, blue, yellow, chartreuse, international_orange]);
16+
var red = tuple ([255, 0, 0, 1.0]);
17+
var cyan = tuple ([0, 255, 255, 1.0]);
18+
var yellow = tuple ([255, 255, 0, 1.0]);
19+
var green = tuple ([0, 255, 0, 1.0]);
20+
var blue = tuple ([0, 0, 255, 1.0]);
21+
var hollywood_cerise = tuple ([255, 0, 255, 1.0]);
22+
var purple = tuple ([120, 24, 74, 1.0]);
23+
var arylide_yellow = tuple ([233, 214, 107, 1.0]);
24+
var standard = list ([red, cyan, yellow, green, blue, hollywood_cerise, purple, arylide_yellow]);
25+
__pragma__ ('<all>')
26+
__all__.american_rose = american_rose;
27+
__all__.amethyst = amethyst;
28+
__all__.antique_fushia = antique_fushia;
29+
__all__.arylide_yellow = arylide_yellow;
30+
__all__.azure = azure;
31+
__all__.blue = blue;
32+
__all__.chartreuse = chartreuse;
33+
__all__.cyan = cyan;
34+
__all__.green = green;
35+
__all__.hollywood_cerise = hollywood_cerise;
36+
__all__.international_orange = international_orange;
37+
__all__.purple = purple;
38+
__all__.red = red;
39+
__all__.standard = standard;
40+
__all__.vivid = vivid;
41+
__all__.yellow = yellow;
42+
__pragma__ ('</all>')
43+
}
44+
}
45+
}
46+
);

0 commit comments

Comments
 (0)