blob: a3495b4bf998f0b9705d17a3ac8014313677b9a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Description: This file contains the color mapping for the members in the channel
# These are used for the trace colors in the graph
# MAKE SURE YOU USE THE ACTUAL NAME OF THE CHANNEL. NOT THE CHANNEL ID OR @USERNAME
member_color_map = {
'Channel Name': '#D985B3',
}
# Description: Groupings to make it easier to see who is in which group. On the legend
# Key: Member name
# Value: Group name
# Note: If a member is not in the list, they will be placed in the 'Other' group
member_groups = {
'Channel Name': 'Group Name',
}
|