dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

button-light.rc (1976B)


      1 ##########################################
      2 # BUTTONS ENTRYBOX COMBO INFOBAR RADIO	
      3 ##########################################
      4 style "button" = "wider" {
      5 
      6 bg[PRELIGHT]      	= shade (1.0, mix (0.0, @base_color, @selected_bg_color)) 	# BUTTON MOUSEOVER
      7 bg[ACTIVE]        	= shade (0.93, @bg_color) 					# PUSHED BUTTONS
      8 
      9 engine "murrine" {
     10 reliefstyle 		= 2
     11 border_shades 		= {1.03, 0.88}
     12 glow_shade 		= 1.08
     13 glowstyle 		= 5
     14 lightborder_shade 	= 1.5
     15 gradient_shades 	= {0.95, 1.0, 1.0, 1.08}
     16 }}
     17 
     18 style "entrybox" = "wider" {
     19 base[NORMAL]      	= lighter (@bg_color)
     20 engine "murrine" {
     21 reliefstyle 		= 2
     22 gradient_shades 	= {0.95, 1.0, 1.0, 1.08}
     23 }}
     24 
     25 
     26 style "infobar" {
     27 
     28 engine "murrine" {
     29 roundness = 6
     30 border_shades = {1.16, 1.0}
     31 glow_shade = 1.1
     32 glowstyle = 5
     33 contrast = 0.6
     34 gradient_shades 	= {1.07, 0.98, 0.98, 0.95}
     35 }}
     36 
     37 style "treeview" = "default" {
     38 # SELECTED ITEMS COLOR
     39 #base[PRELIGHT]      	= @base_color
     40 #base[ACTIVE]      	= @base_color
     41 #base[SELECTED]      	= @base_color
     42 
     43 # SELECTED ITEMS TEXT
     44 #text[PRELIGHT]      	= @tooltip_fg_color
     45 #text[ACTIVE]      	= @tooltip_fg_color
     46 #text[SELECTED]      	= @tooltip_fg_color
     47 
     48 engine "murrine" {
     49 gradient_shades 	= {.95, .975, .975, 1.0}
     50 }}
     51 
     52 style "radiocheck" {
     53 base[NORMAL]      	= lighter (@bg_color)
     54 fg[ACTIVE]		= shade (1.0, @fg_color)	# unselected tab
     55 
     56 engine "murrine" {
     57 roundness = 3
     58 border_shades = {1.0, 1.0}
     59 glow_shade = 1.0
     60 glowstyle = 0
     61 }}
     62 ##########################################
     63 # MATCHES	
     64 ##########################################
     65 class "GtkButton*"					style "button"
     66 
     67 widget_class "*GtkRadio*"                 	    		style "radiocheck"
     68 widget_class "*GtkCheck*"                           		style "radiocheck"
     69 
     70 class "GtkEntry"     					style "entrybox"
     71 class "GtkCombo*"					style "entrybox"
     72 class "GtkComboBox"					style "button"
     73 class "GtkComboBoxEntry"				style "entrybox"
     74 
     75 class "GtkInfoBar" 					style "infobar"
     76 class "GtkIconView" 					style "infobar"
     77 class "GtkTreeView" 					style "treeview"
     78 
     79