Skip to content

Commit fa960c1

Browse files
authored
Add Arcade theme colors to arcade.color (#2438)
* add some colors * fix test
1 parent adc46c4 commit fa960c1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

arcade/color/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
APRICOT = Color(251, 206, 177, 255)
3636
AQUA = Color(0, 255, 255, 255)
3737
AQUAMARINE = Color(127, 255, 212, 255)
38+
ARCADE_GREEN = Color(39, 160, 92, 255)
39+
ARCADE_YELLOW = Color(250, 242, 142, 255)
3840
ARMY_GREEN = Color(75, 83, 32, 255)
3941
ARSENIC = Color(59, 68, 75, 255)
4042
ARTICHOKE = Color(143, 151, 121, 255)
@@ -175,6 +177,7 @@
175177
CHAMOISEE = Color(160, 120, 90, 255)
176178
CHAMPAGNE = Color(247, 231, 206, 255)
177179
CHARCOAL = Color(54, 69, 79, 255)
180+
CHARM_GREEN = Color(149, 223, 170, 255)
178181
CHARLESTON_GREEN = Color(35, 43, 43, 255)
179182
CHARM_PINK = Color(230, 143, 172, 255)
180183
CHARTREUSE = Color(127, 255, 0, 255)

tests/unit/color/test_module_color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ def test_colors():
33
from arcade import color
44
names = color.__dict__.keys()
55
# number of colors + 1 real import + 1 annotations
6-
assert 1013 + 1 + 1 == len(names)
6+
assert 1016 + 1 + 1 == len(names)

0 commit comments

Comments
 (0)