forked from quozl/implode-activity
-
Notifications
You must be signed in to change notification settings - Fork 5
/
color.py
48 lines (47 loc) · 2 KB
/
color.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/python3
#
# Copyright (C) 2007, Joseph C. Lee
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# Derived from Sugar list of colors.
colors = (
(0.498039, 0.000000, 0.749020), # 7F00BF
(0.901961, 0.000000, 0.039216), # E6000A
(0.000000, 0.917647, 0.066667), # 00EA11
(1.000000, 0.980392, 0.000000), # FFFA00
(0.368627, 0.000000, 0.549020), # 5E008C
(1.000000, 0.560784, 0.000000), # FF8F00
(0.000000, 0.372549, 0.894118), # 005FE4
(0.603922, 0.321569, 0.000000), # 9A5200
(0.000000, 0.345098, 0.549020), # 00588C
(0.737255, 0.807843, 1.000000), # BCCEFF
(1.000000, 0.678431, 0.807843), # FFADCE
(0.000000, 0.627451, 1.000000), # 00A0FF
(0.788235, 0.494118, 0.000000), # C97E00
(0.000000, 0.698039, 0.050980), # 00B20D
(0.545098, 1.000000, 0.478431), # 8BFF7A
(0.501961, 0.458824, 0.000000), # 807500
(0.674510, 0.196078, 1.000000), # AC32FF
(0.654902, 0.000000, 1.000000), # A700FF
(0.972549, 0.909804, 0.000000), # F8E800
(0.000000, 0.501961, 0.035294), # 008009
(0.600000, 0.000000, 0.901961), # 9900E6
(0.745098, 0.619608, 0.000000), # BE9E00
(1.000000, 0.756863, 0.411765), # FFC169
(0.698039, 0.000000, 0.031373), # B20008
(0.819608, 0.639216, 1.000000), # D1A3FF
(1.000000, 0.168627, 0.203922), # FF2B34
(0.737255, 0.803922, 1.000000), # BCCDFF
)