diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-28 15:23:27 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-28 15:26:54 -0700 |
| commit | a8f93beffc48c955c7a0270caa3da6400b34f87a (patch) | |
| tree | 51c5bb99ca77ebd5e810dbb6b317e3edec6e7d16 /member_colors.py | |
| parent | 48ec6b6e703a40ff4731fa840ccbe3fbba41b5e1 (diff) | |
add option for channel groupings on legend
Diffstat (limited to 'member_colors.py')
| -rw-r--r-- | member_colors.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/member_colors.py b/member_colors.py index 8bb7784..a3495b4 100644 --- a/member_colors.py +++ b/member_colors.py @@ -4,3 +4,11 @@ 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', +} |
