dotfiles

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

button.rc (2135B)


      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 text[ACTIVE]      	= @selected_fg_color
      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 text[ACTIVE]      	= @selected_fg_color
     21 
     22 engine "murrine" {
     23 reliefstyle 		= 2
     24 gradient_shades 	= {0.95, 1.0, 1.0, 1.08}
     25 }}
     26 
     27 
     28 style "infobar" {
     29 text[ACTIVE]      	= @selected_fg_color
     30 engine "murrine" {
     31 roundness = 6
     32 border_shades = {1.16, 1.0}
     33 glow_shade = 1.1
     34 glowstyle = 5
     35 contrast = 0.6
     36 gradient_shades 	= {1.07, 0.98, 0.98, 0.95}
     37 }}
     38 
     39 style "treeview" = "default" {
     40 text[ACTIVE]      	= @selected_fg_color
     41 # SELECTED ITEMS COLOR
     42 #base[PRELIGHT]      	= @base_color
     43 #base[ACTIVE]      	= @base_color
     44 #base[SELECTED]      	= @base_color
     45 
     46 # SELECTED ITEMS TEXT
     47 #text[PRELIGHT]      	= @tooltip_fg_color
     48 #text[ACTIVE]      	= @tooltip_fg_color
     49 #text[SELECTED]      	= @tooltip_fg_color
     50 
     51 engine "murrine" {
     52 gradient_shades 	= {.95, .975, .975, 1.0}
     53 }}
     54 
     55 style "radiocheck" {
     56 base[NORMAL]      	= lighter (@bg_color)
     57 fg[ACTIVE]		= shade (1.0, @fg_color)	# unselected tab
     58 engine "murrine" {
     59 roundness = 3
     60 border_shades = {1.0, 1.0}
     61 glow_shade = 1.0
     62 glowstyle = 0
     63 }}
     64 ##########################################
     65 # MATCHES	
     66 ##########################################
     67 class "GtkButton*"					style "button"
     68 
     69 widget_class "*GtkRadio*"                 	    		style "radiocheck"
     70 widget_class "*GtkCheck*"                           		style "radiocheck"
     71 
     72 class "GtkEntry"     					style "entrybox"
     73 class "GtkCombo*"					style "entrybox"
     74 class "GtkComboBox"					style "button"
     75 class "GtkComboBoxEntry"					style "entrybox"
     76 
     77 class "GtkInfoBar" 					style "infobar"
     78 class "GtkIconView" 					style "infobar"
     79 class "GtkTreeView" 					style "treeview"
     80 
     81