Browse Source

unify palettes

Daniel Sheffield 3 years ago
parent
commit
467426b3ba
2 changed files with 12 additions and 12 deletions
  1. 8 8
      grocery_transactions.py
  2. 4 4
      price_check.py

+ 8 - 8
grocery_transactions.py

@@ -40,7 +40,7 @@ except:
     from mock import *
 
 dark_palette = [
-    ("popup_focus", "black", "light red"),
+    ('popup_focus', 'black', 'light red'),
     ('popup', 'black', 'dark red'),
     ('banner', 'light gray', 'dark red'),
     ('streak', 'light red', 'black'),
@@ -48,7 +48,7 @@ dark_palette = [
 ]
 
 light_palette = [
-    ("popup_focus", "black", "light gray"),
+    ('popup_focus', 'black', 'light gray'),
     ('popup', 'dark gray', 'white'),
     ('banner', 'light gray', 'dark red'),
     ('streak', 'white', 'dark blue'),
@@ -153,7 +153,7 @@ class GroceryTransactionEditor(urwid.WidgetPlaceholder):
                 #print(self.cur.mogrify(line))
                 #input()
                 self.cur.execute(line)
-        
+
             if None not in (date, store):
                 txn.apply_choice('ts', date)
                 txn.apply_choice('store', store)
@@ -162,20 +162,20 @@ class GroceryTransactionEditor(urwid.WidgetPlaceholder):
         self.activity_manager.show(txn.update())
 
         self.log = self.open(log)
-    
+
     def _open(self, log):
         with open(log, 'a') as f:
             yield f
-    
+
     def open(self, log):
         self._to_close = self._open(log)
         return next(self._to_close)
-    
+
     def close(self):
         if self._to_close is not None:
             self._to_close.close()
             self._to_close = None
-        
+
     def save(self, data):
         ts = data['ts']
         store = data['store']
@@ -224,7 +224,7 @@ try:
     )
 
     loop.run()
-   
+
 finally:
     if app is not None:
         app.close()

+ 4 - 4
price_check.py

@@ -38,8 +38,8 @@ 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 gray', 'black'),
     ('bg', 'dark red', 'black'),
@@ -50,8 +50,8 @@ dark_palette = [
 ]
 
 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 blue'),
     ('bg', 'white', 'dark blue'),