forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.py
More file actions
32 lines (28 loc) · 886 Bytes
/
colors.py
File metadata and controls
32 lines (28 loc) · 886 Bytes
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
#
# colours should be taken from the group as a list of "Areas"
# but for now, just return a dict of areas and colours.
#
fg_group_colors = dict()
fg_group_colors['APP']="#008"
fg_group_colors['ART']="#5b5a53"
fg_group_colors['GEN']="#e1dfdb"
fg_group_colors['INT']="#f3fcf6"
fg_group_colors['OPS']="#516770"
fg_group_colors['RAI']="#808"
fg_group_colors['RTG']="#866997"
fg_group_colors['SEC']="#cee6ce"
fg_group_colors['TSV']="#806c6a"
fg_group_colors['IRTF']="#80776e"
fg_group_colors['IETF']="blue"
bg_group_colors = dict()
bg_group_colors['APP']="#eef"
bg_group_colors['ART']="#c5b8cb"
bg_group_colors['GEN']="#8b879b"
bg_group_colors['INT']="#e7a39d"
bg_group_colors['OPS']="#facab3"
bg_group_colors['RAI']="#fef"
bg_group_colors['RTG']="#fbeeaf"
bg_group_colors['SEC']="#b97373"
bg_group_colors['TSV']="#d4ffe1"
bg_group_colors['IRTF']="#ddf"
bg_group_colors['IETF']="white"