瀏覽代碼

improve palettes

Daniel Sheffield 3 年之前
父節點
當前提交
36feac3c4b
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      grocery_transactions.py

+ 6 - 6
grocery_transactions.py

@@ -40,18 +40,18 @@ except:
     from mock import *
 
 dark_palette = [
-    ("popup_focus", "light red", "light gray"),
-    ('popup', 'light red', 'dark gray'),
+    ("popup_focus", "black", "light red"),
+    ('popup', 'black', 'dark red'),
     ('banner', 'light gray', 'dark red'),
-    ('streak', 'light red', 'dark gray'),
+    ('streak', 'light red', 'black'),
     ('bg', 'light red', 'black'),
 ]
 
 light_palette = [
-    ("popup_focus", "dark blue", "light gray"),
-    ('popup', 'light blue', 'dark gray'),
+    ("popup_focus", "black", "light gray"),
+    ('popup', 'dark gray', 'white'),
     ('banner', 'light gray', 'dark red'),
-    ('streak', 'white', 'dark gray'),
+    ('streak', 'white', 'dark blue'),
     ('bg', 'white', 'dark blue'),
 ]