From baaa8406d60374e7f30614fb48463b829a5d3c58 Mon Sep 17 00:00:00 2001 From: Jakub Jatczak Date: Mon, 9 Mar 2020 17:02:52 +0100 Subject: [PATCH] Add 'power' to fixed-style sections --- symbolator.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/symbolator.py b/symbolator.py index 013fdd7..3d5dbd8 100755 --- a/symbolator.py +++ b/symbolator.py @@ -131,9 +131,10 @@ def __init__(self, name, fill=None, line_color=(0,0,0)): self.name = None class_colors = { - 'clocks': sinebow.lighten(sinebow.sinebow(0), 0.75), # Red - 'data': sinebow.lighten(sinebow.sinebow(0.35), 0.75), # Green - 'control': sinebow.lighten(sinebow.sinebow(0.15), 0.75) # Yellow + 'clocks': sinebow.lighten(sinebow.sinebow(0), 0.75), # Red + 'data': sinebow.lighten(sinebow.sinebow(0.35), 0.75), # Green + 'control': sinebow.lighten(sinebow.sinebow(0.15), 0.75), # Yellow + 'power': sinebow.lighten(sinebow.sinebow(0.07), 0.75) # Orange } if self.sect_class in class_colors: