Skip to content

Commit 43a2f2b

Browse files
Merge pull request #644 from data-8/color-contrast-fix
Fix Color Contrast
2 parents a71010d + 60d8505 commit 43a2f2b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

datascience/tables.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3130,9 +3130,9 @@ def to_array(self):
31303130

31313131
# As RGB tuples
31323132
chart_colors = (
3133-
(0.0, 30/256, 66/256),
3134-
(1.0, 200/256, 44/256),
3135-
(0.0, 150/256, 207/256),
3133+
(0/256, 47/256, 167/256),
3134+
(112/256, 103/256, 0/256),
3135+
(0.0, 106/256, 148/256),
31363136
(30/256, 100/256, 0.0),
31373137
(172/256, 60/256, 72/256),
31383138
)

0 commit comments

Comments
 (0)