-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.py
20 lines (17 loc) · 964 Bytes
/
colors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from seaborn import color_palette
l_5_colors = color_palette('bright', 4)[1:]
k_5_colors = [color_palette('bright', 5)[0]] + [color_palette('bright', 5)[4]] + l_5_colors
l_70_colors = [(0.2160246080043269, 0.49487120380588606, 0.7198769869757634),
(0.9585082685246187, 0.5084660039228551, 0.7449288887136123),
(0.8941176533699036, 0.10196078568696976, 0.10980392247438431),
(0.33725490196078434, 0.7058823529411765, 0.9137254901960784),
(0.8, 0.4745098039215686, 0.6549019607843137),
(0.8352941176470589, 0.3686274509803922, 0.0),
(0.0, 0.6196078431372549, 0.45098039215686275),
(0.9411764705882353, 0.8941176470588236, 0.25882352941176473),
(0.6008304736193488, 0.30814303335021526, 0.6316955229815315),
(0.30426760128900115, 0.6832910605505401, 0.29293349969620797),
(0.0, 0.8431372549019608, 1.0),
(0.011764705882352941, 0.9294117647058824, 0.22745098039215686),
(0.0, 0.24705882352941178, 1.0),
(0.6584544609574711, 0.34122261685483596, 0.1707958535236471)]