Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion metrics/domain/charts/colour_scheme.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from enum import Enum

RGBA_VALUES = tuple[int, int, int, int]
RGBA_VALUES = tuple[int, int, int]


class RGBAChartLineColours(Enum):
Expand All @@ -17,6 +17,12 @@ class RGBAChartLineColours(Enum):
COLOUR_11_KHAKI = 71, 71, 0
COLOUR_12_BLUE = 0, 157, 214

MAP_COLOUR_1_LIGHT_YELLOW = 240, 249, 232
MAP_COLOUR_2_LIGHT_GREEN = 186, 228, 188
MAP_COLOUR_3_TURQUOISE = 123, 204, 196
MAP_COLOUR_4_BLUE = 67, 162, 202
MAP_COLOUR_5_DARK_BLUE = 8, 104, 172

# simplified single line chart colours
TREND_LINE_POSITIVE = 0, 112, 60
TREND_LINE_NEGATIVE = 171, 43, 23
Expand Down