root/nicotine-app/trunk/nicotine/data/gtkrc-2.0

Revision 33, 4.1 KB (checked in by vasi, 4 years ago)

new module

Line 
1# Based on Bluecurve
2# Created by Richard Stellingwerff, Emil Jacobs and Daniel Borgmann.
3
4style "clearlooks-default"
5{
6  font_name = "Bitstream Vera Sans 12"
7
8  GtkButton      ::default_border    = { 0, 0, 0, 0 }
9  GtkRange       ::trough_border     = 0
10  GtkPaned       ::handle_size       = 6
11  GtkRange       ::slider_width      = 15
12  GtkRange       ::stepper_size      = 15
13  GtkScrollbar   ::min_slider_length = 30
14  GtkCheckButton ::indicator_size    = 12
15  GtkMenuBar     ::internal-padding  = 0
16  GtkTreeView    ::expander_size     = 14
17  GtkExpander    ::expander_size     = 16
18
19  xthickness = 1
20  ythickness = 1
21
22  fg[NORMAL]        = "#101010" # very dark gray #101010
23  fg[PRELIGHT]      = "#101010" # dark grey
24  fg[ACTIVE]        = "#000000" # black
25  fg[SELECTED]      = "#ffffff" # white
26  fg[INSENSITIVE]   = "#b5b3ac" # dark beige / grey
27
28  bg[NORMAL]        = "#efebe7" # light beige / grey
29  bg[PRELIGHT]      = "#f5f3f0" # very light beige
30  bg[ACTIVE]        = "#d4cfca" # mid beige / grey
31  bg[SELECTED]      = "#7c99ad" # blueish
32  bg[INSENSITIVE]   = "#efebe7" # light beige / grey
33       
34  base[NORMAL]      = "#ffffff" # white
35  base[PRELIGHT]    = "#7c99ad" # blueish
36  base[ACTIVE]      = "#a29e8e" # dark beige / grey
37  base[SELECTED]    = "#7c99ad" # blueish
38  base[INSENSITIVE] = "#efebe7" #light beige / grey
39       
40  text[NORMAL]      = "#000000" # black
41  text[PRELIGHT]    = "#000000" # black
42  text[ACTIVE]      = "#ffffff" # white
43  text[SELECTED]    = "#ffffff" # white
44  text[INSENSITIVE] = "#b5b3ac" # dark beige / grey
45
46  engine "clearlooks"  {
47    menubarstyle      = 1       # 0 = flat, 1 = sunken, 2 = flat gradient
48    menuitemstyle     = 1       # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
49    listviewitemstyle = 1       # 0 = flat, 1 = 3d-ish (gradient)
50    progressbarstyle  = 0       # 0 = candy bar, 1 = flat
51  }
52}
53
54style "clearlooks-wide" = "clearlooks-default"
55{
56  xthickness = 2
57  ythickness = 2
58}
59
60style "clearlooks-notebook" = "clearlooks-wide"
61{
62  bg[NORMAL] = "#eae4df"
63}
64
65style "clearlooks-tasklist" = "clearlooks-default"
66{
67  xthickness = 5
68  ythickness = 3
69}
70
71style "clearlooks-menu" = "clearlooks-default"
72{
73  xthickness = 2
74  ythickness = 1
75  bg[NORMAL] = "#f8f5f2"
76}
77
78style "clearlooks-menu-item" = "clearlooks-default"
79{
80  xthickness = 2
81  ythickness = 3
82  fg[PRELIGHT] = "#ffffff"
83  text[PRELIGHT] = "#ffffff"
84}
85
86style "clearlooks-menu-itembar" = "clearlooks-default"
87{
88  xthickness = 3
89  ythickness = 3
90}
91
92style "clearlooks-tree" = "clearlooks-default"
93{
94  xthickness = 2
95  ythickness = 2
96}
97
98style "clearlooks-frame-title" = "clearlooks-default"
99{
100  fg[NORMAL] = "#404040"
101}
102
103style "clearlooks-panel" = "clearlooks-default"
104{
105  xthickness = 3
106  ythickness = 3
107}
108
109style "clearlooks-tooltips" = "clearlooks-default"
110{
111  xthickness = 4
112  ythickness = 4
113  bg[NORMAL] = { 1.0,1.0,0.75 }
114}
115
116style "clearlooks-progressbar" = "clearlooks-default"
117{
118  xthickness = 1
119  ythickness = 1
120
121  fg[PRELIGHT]  = "#ffffff"
122}
123
124style "clearlooks-combo" = "clearlooks-default"
125{
126  xthickness = 1
127  ythickness = 2
128}
129
130class "GtkWidget" style "clearlooks-default"
131class "GtkButton" style "clearlooks-wide"
132class "GtkRange" style "clearlooks-wide"
133class "GtkFrame" style "clearlooks-wide"
134class "GtkStatusbar" style "clearlooks-wide"
135class "GtkMenu" style "clearlooks-menu"
136class "GtkMenuItem" style "clearlooks-menu-item"
137widget_class "*MenuItem.*" style "clearlooks-menu-item"
138class "GtkEntry" style "clearlooks-wide"
139widget_class "*.tooltips.*.GtkToggleButton" style "clearlooks-tasklist"
140widget_class "*.GtkTreeView.GtkButton" style "clearlooks-tree"
141widget_class "*.GtkCTree.GtkButton" style "clearlooks-tree"
142widget_class "*.GtkList.GtkButton" style "clearlooks-tree"
143widget_class "*.GtkCList.GtkButton" style "clearlooks-tree"
144widget_class "*.GtkFrame.GtkLabel" style "clearlooks-frame-title"
145widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "clearlooks-panel"
146widget "gtk-tooltips" style "clearlooks-tooltips"
147class "GtkNotebook" style "clearlooks-notebook"
148class "GtkProgressBar" style "clearlooks-progressbar"
149widget_class "*.GtkComboBox.GtkButton" style "clearlooks-combo"
150widget_class "*.GtkCombo.GtkButton" style "clearlooks-combo"
Note: See TracBrowser for help on using the browser.