]> git.decadent.org.uk Git - ion3.git/blobdiff - etc/lookcommon_clean.lua
[svn-upgrade] Integrating new upstream version, ion3 (20070506)
[ion3.git] / etc / lookcommon_clean.lua
index cfb059ad7ab70cc50662597fb0d812cb4c1f9ae8..49bf70af24fb4b10fb18429c5fb7316b657c8f87 100644 (file)
@@ -1,60 +1,93 @@
--- Settings common to some styles.
+-- Common settings for the "clean" styles
 
-de.defstyle("stdisp", {
-    based_on = "*",
-    shadow_pixels = 0,
-    highlight_pixels = 0,
-    text_align = "left",
+de.defstyle("frame", {
     background_colour = "#000000",
-    foreground_colour = "grey",
-    font="-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
-    
-    de.substyle("important", {
-        foreground_colour = "green",
+    de.substyle("quasiactive", {
+        -- Something detached from the frame is active
+        padding_colour = "#901010",
     }),
-
-    de.substyle("critical", {
-        foreground_colour = "red",
+    de.substyle("userattr1", {
+        -- For user scripts
+        padding_colour = "#009010",
     }),
 })
 
+de.defstyle("frame-tiled", {
+    shadow_pixels = 0,
+    highlight_pixels = 0,
+    padding_pixels = 1,
+    spacing = 1,
+})
+
+de.defstyle("frame-tiled-alt", {
+    bar = "none",
+})
+
+de.defstyle("frame-floating", {
+    bar = "shaped",
+    padding_pixels = 0,
+})
+
+
 de.defstyle("actnotify", {
-    based_on = "*",
-    shadow_colour = "#e0c0c0",
-    highlight_colour = "#e0c0c0",
-    background_colour = "#990000",
+    shadow_colour = "#c04040",
+    highlight_colour = "#c04040",
+    background_colour = "#901010",
     foreground_colour = "#eeeeee",
 })
 
-de.defstyle("tab-frame", {
-    based_on = "tab",
-    de.substyle("*-*-*-*-activity", {
-        shadow_colour = "#e0c0c0",
-        highlight_colour = "#e0c0c0",
-        background_colour = "#990000",
+de.defstyle("tab", {
+    de.substyle("*-*-*-unselected-activity", {
+        shadow_colour = "#c04040",
+        highlight_colour = "#c04040",
+        background_colour = "#901010",
         foreground_colour = "#eeeeee",
     }),
+    
+    de.substyle("*-*-*-selected-activity", {
+        shadow_colour = "#c04040",
+        highlight_colour = "#c04040",
+        background_colour = "#b03030",
+        foreground_colour = "#ffffff",
+    }),
+    
+    de.substyle("*-*-*-tabnumber", {
+        background_colour = "black",
+        foreground_colour = "green",
+    }),
 })
 
-de.defstyle("tab-frame-tiled", {
-    based_on = "tab-frame",
+de.defstyle("tab-frame", {
     spacing = 1,
 })
 
-de.defstyle("frame-tiled", {
-    based_on = "frame",
-    shadow_pixels = 0,
-    highlight_pixels = 0,
-    padding_pixels = 0,
-    spacing = 1,
+de.defstyle("tab-frame-floating", {
+    spacing = 0,
 })
 
-de.defstyle("frame-tiled-alt", {
-    based_on = "frame-tiled",
-    bar = "none",
+de.defstyle("tab-menuentry", {
+    text_align = "left",
 })
 
-de.defstyle("frame-floating", {
-    based_on = "frame",
-    bar = "shaped"
+de.defstyle("tab-menuentry-big", {
+    font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
+    padding_pixels = 7,
+})
+
+
+de.defstyle("stdisp", {
+    shadow_pixels = 0,
+    highlight_pixels = 0,
+    text_align = "left",
+    background_colour = "#000000",
+    foreground_colour = "grey",
+    font="-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
+    
+    de.substyle("important", {
+        foreground_colour = "green",
+    }),
+
+    de.substyle("critical", {
+        foreground_colour = "red",
+    }),
 })