[gnome-calendar] theme: use system colors



commit 4edca6b2556e4721f10dcffb62863f437555d347
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date:   Wed Sep 24 07:45:41 2014 -0300

    theme: use system colors
    
    It's better and more portable than using custom hardcoded colors

 data/theme/gtk-styles.css |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/data/theme/gtk-styles.css b/data/theme/gtk-styles.css
index e7829ba..77c8edc 100644
--- a/data/theme/gtk-styles.css
+++ b/data/theme/gtk-styles.css
@@ -1,6 +1,6 @@
 .views {
     /* background color of every view */
-    background-color: #fafafa;
+    background-color: @theme_base_color;
     background-image: none;
 }
 
@@ -31,8 +31,8 @@
 }
 
 .calendar-view:selected {
-    color: #0C73E5;
-    background-color: shade (#fff, 0.8);
+    color: @theme_selected_bg_color;
+    background-color: shade (@theme_base_color, 0.9);
     font: bold;
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]