We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd399f commit a2752c2Copy full SHA for a2752c2
qsdsan/utils/colors.py
@@ -74,6 +74,14 @@ def test_colormaps(colormaps=[]):
74
Guest.orange = Color('orange', (249, 143, 96))
75
Guest.red = Color('red', (237, 88, 111))
76
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))
85
86
RGBn['Guest'] = [
87
Guest.red.RGBn,
@@ -88,7 +96,6 @@ def test_colormaps(colormaps=[]):
88
96
# # If want to anchor color at a specific point
89
97
# colormaps['Guest'] = LSC.from_list('Guest', list(zip([0, 0.2, 0.4, 0.6, 1], RGBn['Guest'])))
90
98
91
-
92
99
# CABBI colors
93
100
CABBI = Palette()
94
101
CABBI.feedstock = Color('feedstock', (45, 130, 63))
0 commit comments