forked from ofZach/devart-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColors.py
More file actions
executable file
·19 lines (16 loc) · 918 Bytes
/
Colors.py
File metadata and controls
executable file
·19 lines (16 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Colors(object):
# the color names are just indexes into a table
pink = [255.0 /255.0, 000.0 /255.0, 133.0 /255.0]
yellow = [254.0 /255.0, 254.0 /255.0, 000.0 /255.0]
green = [131.0 /255.0, 245.0 /255.0, 044.0 /255.0]
orange = [255.0 /255.0, 102.0 /255.0, 000.0 /255.0]
violet = [110.0 /255.0, 013.0 /255.0, 208.0 /255.0]
rubyRed = [255.0 /255.0, 000.0 /255.0, 000.0 /255.0]
deepTurquoise = [000.0 /255.0, 204.0 /255.0, 255.0 /255.0]
white = [255.0 /255.0, 255.0 /255.0, 255.0 /255.0]
black = [000.0 /255.0, 000.0 /255.0, 000.0 /255.0]
user1 = [round(080.0 /255.0, 3), round(080.0 /255.0, 3), round(080.0 /255.0, 3)]
user2 = [round(160.0 /255.0, 3), round(160.0 /255.0, 3), round(160.0 /255.0, 3)]
transparent = [-255.0 /255.0, -255.0 /255.0, -255.0 /255.0]