31 lines
781 B
Python
31 lines
781 B
Python
#
|
|
# 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['GEN']="#080"
|
|
fg_group_colors['INT']="#088"
|
|
fg_group_colors['OPS']="#800"
|
|
fg_group_colors['RAI']="#808"
|
|
fg_group_colors['RTG']="#880"
|
|
fg_group_colors['SEC']="#488"
|
|
fg_group_colors['TSV']="#484"
|
|
fg_group_colors['IRTF']="#448"
|
|
fg_group_colors['IETF']="blue"
|
|
|
|
bg_group_colors = dict()
|
|
bg_group_colors['APP']="#eef"
|
|
bg_group_colors['GEN']="#efe"
|
|
bg_group_colors['INT']="#eff"
|
|
bg_group_colors['OPS']="#fee"
|
|
bg_group_colors['RAI']="#fef"
|
|
bg_group_colors['RTG']="#ffe"
|
|
bg_group_colors['SEC']="#dff"
|
|
bg_group_colors['TSV']="#dfd"
|
|
bg_group_colors['IRTF']="#ddf"
|
|
bg_group_colors['IETF']="white"
|
|
|
|
|