Skip to content

Commit a2752c2

Browse files
committed
add dark colors to Guest palette
1 parent 5cd399f commit a2752c2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

qsdsan/utils/colors.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ def test_colormaps(colormaps=[]):
7474
Guest.orange = Color('orange', (249, 143, 96))
7575
Guest.red = Color('red', (237, 88, 111))
7676
Guest.gray = Color('gray', (144, 145, 142))
77+
# dark colors
78+
Guest.dpurple = Color('dpurple', (76, 56, 90))
79+
Guest.dblue = Color('dblue', (53, 118, 127))
80+
Guest.dgreen = Color('dgreen', (77, 126, 83))
81+
Guest.dyellow = Color('dyellow', (171, 137, 55))
82+
Guest.dorange = Color('dorange', (167, 95, 62))
83+
Guest.dred = Color('dred', (156, 75, 80))
84+
Guest.dgray = Color('dgray', (78, 78, 78))
7785

7886
RGBn['Guest'] = [
7987
Guest.red.RGBn,
@@ -88,7 +96,6 @@ def test_colormaps(colormaps=[]):
8896
# # If want to anchor color at a specific point
8997
# colormaps['Guest'] = LSC.from_list('Guest', list(zip([0, 0.2, 0.4, 0.6, 1], RGBn['Guest'])))
9098

91-
9299
# CABBI colors
93100
CABBI = Palette()
94101
CABBI.feedstock = Color('feedstock', (45, 130, 63))

0 commit comments

Comments
 (0)