Source canvas api colors.nas
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
#-------------------------------------------------------------------------------
# colors.nas
#-------------------------------------------------------------------------------
colors = {
black: [0, 0, 0],
white: [1, 1, 1],
grey25: [0.25, 0.25, 0.25],
grey50: [0.5, 0.5, 0.5],
grey75: [0.75, 0.75, 0.75],
red: [1, 0, 0],
green: [0, 1, 0],
blue: [0, 0, 1],
cyan: [0, 1, 1],
magenta: [1, 0, 1],
yellow: [1, 1, 0],
lightblue: [0, 0.5, 1],
purple: [0.5, 0, 1],
orange: [1, 0.5, 0],
amber: [1, 0.682, 0],
};