Skip to content

Commit

Permalink
Add Arcade theme colors to arcade.color (#2438)
Browse files Browse the repository at this point in the history
* add some colors

* fix test
  • Loading branch information
DigiDuncan authored Oct 28, 2024
1 parent adc46c4 commit fa960c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions arcade/color/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
APRICOT = Color(251, 206, 177, 255)
AQUA = Color(0, 255, 255, 255)
AQUAMARINE = Color(127, 255, 212, 255)
ARCADE_GREEN = Color(39, 160, 92, 255)
ARCADE_YELLOW = Color(250, 242, 142, 255)
ARMY_GREEN = Color(75, 83, 32, 255)
ARSENIC = Color(59, 68, 75, 255)
ARTICHOKE = Color(143, 151, 121, 255)
Expand Down Expand Up @@ -175,6 +177,7 @@
CHAMOISEE = Color(160, 120, 90, 255)
CHAMPAGNE = Color(247, 231, 206, 255)
CHARCOAL = Color(54, 69, 79, 255)
CHARM_GREEN = Color(149, 223, 170, 255)
CHARLESTON_GREEN = Color(35, 43, 43, 255)
CHARM_PINK = Color(230, 143, 172, 255)
CHARTREUSE = Color(127, 255, 0, 255)
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/color/test_module_color.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ def test_colors():
from arcade import color
names = color.__dict__.keys()
# number of colors + 1 real import + 1 annotations
assert 1013 + 1 + 1 == len(names)
assert 1016 + 1 + 1 == len(names)

0 comments on commit fa960c1

Please sign in to comment.