From 058e9ec42275100836752ca82f6e06398816b449 Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Thu, 11 Jun 2015 09:37:17 -0400 Subject: [PATCH] fix safe colors Signed-off-by: Adam Stokes --- subiquity/palette.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/subiquity/palette.py b/subiquity/palette.py index c7b884fb..f96758ba 100644 --- a/subiquity/palette.py +++ b/subiquity/palette.py @@ -21,12 +21,11 @@ def apply_default_colors(cls): 'light_orange': '#d31', 'white': 'white', 'black': 'black', - 'light_aubergine': '#77216F', - 'mid_aubergine': '#5E2750', - 'dark_aubergine': '#2C001E', - 'warm_grey': '#AEA79F', + 'light_aubergine': '#719', + 'mid_aubergine': '#525', + 'dark_aubergine': '#201', + 'warm_grey': '#aaa', 'cool_grey': '#333', - 'small_dot_grey': '#AEA79F', 'text_grey': '#333'} for k, v in color_map.items(): setattr(cls, k, v)