summaryrefslogtreecommitdiffstats
path: root/x11-themes/ds-themes/files/gtkrc
blob: c547c436261e931715621be96f7d88aafc0769e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
# The syntax in the engine sections is a mess. Here are some hints:

# gradient : '{' direction gradient-color-list '}'
#	   | '<' INT '>'				-- palette ref

# direction : /* nothing */
#	    | VERTICAL
#	    | HORIZONTAL

# gradient-color-list : color
#		      : color ',' gradient-color-list
#		      : color '[' weight ']' gradient-color-list

# weight : FLOAT
#	 | INT

# color : "#RRGGBB"
#	| '{' FLOAT ',' FLOAT ',' FLOAT '}'
#	| '<' color-ext '>'

# color-ext : STRING			-- file in $HOME to read color from
#	    | '<' INT '>'		-- use indexed palette entry
#	    | '<' INT ',' FLOAT '>'	-- multiply palette entry

# Allow the engine module to be loaded no matter what --prefix GTK+
# was configured with
module_path ".:/usr/lib/gtk/themes/engines"

# Default style for all widgets to build from
style "default"
{
  font = "-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1"

  fg[NORMAL] = "#000000"
  fg[ACTIVE] = "#000000"
  fg[PRELIGHT] = "#000000"
  fg[INSENSITIVE] = "#000000"
  fg[SELECTED] = "#ffffff"

  bg[NORMAL] = "#dcdcdc"
  bg[ACTIVE] = "#ababab"
  bg[PRELIGHT] = "#f2f2f2"
  bg[INSENSITIVE] = "#ffffff"
  bg[SELECTED] = "#0A5F89"

  text[NORMAL] = "#000000"
  text[ACTIVE] = "#000000"
  text[PRELIGHT] = "#000000"
  text[SELECTED] = "#000000"
  text[INSENSITIVE] = "#000000"

  base[NORMAL] = "#ffffff"
  base[PRELIGHT] = "#ffffff"
  base[INSENSITIVE] = "#ffffff"

  engine "eazel-engine" {

    # The focus/selection color
    palette[0] = { "#dcdcdc" }

    # The gradient used for recoloring images
    palette[1] = { "#000000", <0>, "#ffffff" }

    # Used for recolouring inactive images
    palette[2] = { "#000000", "#888888", "#ffffff" }

    # Set these colors here, so we can just reference the palette
#    bg[SELECTED] = <0>
#    base[SELECTED] = <0>

#    focus_color = <0>
#    insensitive_colors = "#636563", "#cecfce"

    # Create the default (only) stock image table. This maps from
    # identifiers used in the engine to reference image parts to
    # the actual images, and sets attributes of the images
    stock
    {
      "CHECK" {
        image = "check-default.png"
      }
      "CHECK_FOCUS" {
        image = "check-default-focus.png"
	recolor = <1>
      }
      "CHECK_HI" {
        image = "check-hilight.png"
      }
      "CHECK_HI_FOCUS" {
        image = "check-hilight-focus.png"
	recolor = <1>
      }
      "CHECK_PRESSED" {
        image = "check-pressed.png"
      }
      "CHECK_PRESSED_FOCUS" {
	image = "check-pressed-focus.png"
	recolor = <1>
      }
      "CHECK_DISABLED" {
	image = "check-insensitive.png"
      }
      "CHECK_ACTIVE" {
	image = "check-active-default.png"
      }
      "CHECK_ACTIVE_FOCUS" {
	image = "check-active-default-focus.png"
	recolor = <1>
      }
      "CHECK_ACTIVE_HI" {
	image = "check-active-hilight.png"
      }
      "CHECK_ACTIVE_HI_FOCUS" {
	image = "check-active-hilight-focus.png"
	recolor = <1>
      }
      "CHECK_ACTIVE_PRESSED" {
	image = "check-active-pressed.png"
      }
      "CHECK_ACTIVE_PRESSED_FOCUS" {
	image = "check-active-pressed-focus.png"
	recolor = <1>
      }
      "CHECK_ACTIVE_DISABLED" {
	image = "check-active-insensitive.png"
      }
      "OPTION" {
	image = "radio-default.png"
      }
      "OPTION_FOCUS" {
	image = "radio-default-focus.png"
	recolor = <1>
      }
      "OPTION_HI" {
	image = "radio-hilight.png"
      }
      "OPTION_HI_FOCUS" {
	image = "radio-hilight-focus.png"
	recolor = <1>
      }
      "OPTION_PRESSED" {
	image = "radio-pressed.png"
      }
      "OPTION_PRESSED_FOCUS" {
	image = "radio-pressed-focus.png"
	recolor = <1>
      }
      "OPTION_DISABLED" {
	image = "radio-insensitive.png"
      }
      "OPTION_ACTIVE" {
	image = "radio-active-default.png"
      }
      "OPTION_ACTIVE_FOCUS" {
	image = "radio-active-default-focus.png"
	recolor = <1>
      }
      "OPTION_ACTIVE_HI" {
	image = "radio-active-hilight.png"
      }
      "OPTION_ACTIVE_HI_FOCUS" {
	image = "radio-active-hilight-focus.png"
	recolor = <1>
      }
      "OPTION_ACTIVE_PRESSED" {
	image = "radio-active-pressed.png"
      }
      "OPTION_ACTIVE_PRESSED_FOCUS" {
	image = "radio-active-pressed-focus.png"
	recolor = <1>
      }
      "OPTION_ACTIVE_DISABLED" {
	image = "radio-active-insensitive.png"
      }
      "H_TROUGH" {
	image = "scroller-h-trough.png"
	border = { 28, 28, 2, 2 }
      }
      "V_TROUGH" {
	image = "scroller-v-trough.png"
	border = { 2, 2, 28, 28 }
      }
      "ARROW_UP" {
	image = "scroller-arrow-up.png"
      }
      "ARROW_UP_HI" {
	image = "scroller-arrow-up-hilight.png"
      }
      "ARROW_UP_ACTIVE" {
	image = "scroller-arrow-up-pressed.png"
      }
      "ARROW_DOWN" {
	image = "scroller-arrow-down.png"
      }
      "ARROW_DOWN_HI" {
	image = "scroller-arrow-down-hilight.png"
      }
      "ARROW_DOWN_ACTIVE" {
	image = "scroller-arrow-down-pressed.png"
      }
      "ARROW_RIGHT" {
	image = "scroller-arrow-right.png"
      }
      "ARROW_RIGHT_HI" {
	image = "scroller-arrow-right-hilight.png"
      }
      "ARROW_RIGHT_ACTIVE" {
	image = "scroller-arrow-right-pressed.png"
      }
      "ARROW_LEFT" {
	image = "scroller-arrow-left.png"
      }
      "ARROW_LEFT_HI" {
	image = "scroller-arrow-left-hilight.png"
      }
      "ARROW_LEFT_ACTIVE" {
	image = "scroller-arrow-left-pressed.png"
      }
      "H_SCROLLBAR" {
	image = "scroller-h.png"
	border = { 3, 3, 1, 1 }
	recolor = <1>
      }
      "H_SCROLLBAR_HI" {
	image = "scroller-h-hilight.png"
	border = { 3, 3, 1, 1 }
	recolor = <1>
      }
      "H_SCROLLBAR_INACTIVE" {
	image = "scroller-h.png"
	border = { 3, 3, 1, 1 }
	recolor = <2>
      }
      "H_SCROLLBAR_THUMB" {
	image = "scroller-h-thumb.png"
	recolor = <1>
      }
      "H_SCROLLBAR_THUMB_HI" {
	image = "scroller-h-thumb.png"
	recolor = <1>
      }
      "H_SCROLLBAR_THUMB_INACTIVE" {
	image = "scroller-h-thumb.png"
	recolor = <2>
      }
      "V_SCROLLBAR" {
	image = "scroller-v.png"
	border = { 1, 1, 3, 3 }
	recolor = <1>
      }
      "V_SCROLLBAR_HI" {
	image = "scroller-v.png"
	border = { 1, 1, 3, 3 }
	recolor = <1>
      }
      "V_SCROLLBAR_INACTIVE" {
	image = "scroller-v.png"
	border = { 1, 1, 3, 3 }
	recolor = <1>
      }
      "V_SCROLLBAR_THUMB" {
	image = "scroller-v-thumb.png"
	recolor = <1>
      }
      "V_SCROLLBAR_THUMB_HI" {
	image = "scroller-v-thumb.png"
	recolor = <1>
      }
      "V_SCROLLBAR_THUMB_INACTIVE" {
	image = "scroller-v-thumb.png"
	recolor = <2>
      }
      "PROGRESS_BAR" {
	image = "progressbar.png"
	border = { 4, 4, 1, 1 }
	recolor = <1>
      }
      "PROGRESS_BAR_LEFT" {
	image = "progressbar-left.png"
      }
      "PROGRESS_BAR_RIGHT" {
	image = "progressbar-right.png"
	border = { 0, 0, 2, 0 }
      }
      "PROGRESS_BAR_INACTIVE" {
	image = "progressbar.png"
	border = { 4, 4, 1, 1 }
	recolor = <2>
      }
      "PROGRESS_TROUGH" {
	image = "progressbar_trough.png"
	border = { 6, 4, 6, 4 }
      }
      "H_SLIDER_THUMB" {
	image = "slider_h_thumb.png"
	border = { 4, 4, 1, 1 }
	recolor = <1>
      }
      "H_SLIDER_THUMB_INACTIVE" {
	image = "slider_h_thumb.png"
	border = { 4, 4, 1, 1 }
	recolor = <2>
      }
      "H_SLIDER_TROUGH" {
	image = "slider_h_trough.png"
	border = { 6, 6, 0, 0 }
      }
      "H_SLIDER_TROUGH_ACTIVE" {
	image = "slider_h_trough_focus.png"
	border = { 6, 6, 0, 0 }
	recolor = <1>
      }
      "V_SLIDER_THUMB" {
	image = "slider_v_thumb.png"
	border = { 1, 1, 4, 4 }
	recolor = <1>
      }
      "V_SLIDER_THUMB_INACTIVE" {
	image = "slider_v_thumb.png"
	border = { 1, 1, 4, 4 }
	recolor = <2>
      }
      "V_SLIDER_TROUGH" {
	image = "slider_v_trough.png"
	border = { 0, 0, 6, 6 }
      }
      "V_SLIDER_TROUGH_ACTIVE" {
	image = "slider_v_trough_focus.png"
	border = { 0, 0, 6, 6 }
	recolor = <1>
      }
      "TAB_TOP" {
	image = "tab_usel.png"
	border = { 4, 4, 10, 5 }
      }
      "TAB_TOP_LEFT" {
	image = "tab_usel-left.png"
	border = { 4, 4, 10, 5 }
      }
      "TAB_TOP_ACTIVE" {
	image = "tab_sel.png"
	border = { 4, 14, 10, 5 }
      }
      "TAB_BOTTOM" {
	image = "tab_usel-bottom.png"
	border = { 4, 4, 10, 5 }
      }
      "TAB_BOTTOM_LEFT" {
	image = "tab_usel-bottom-left.png"
	border = { 4, 4, 10, 5 }
      }
      "TAB_BOTTOM_ACTIVE" {
	image = "tab_sel-bottom.png"
	border = { 4, 4, 10, 5 }
      }
      "SPIN_ARROW_UP" {
	image = "arrow_up-spinner.png"
      }
      "SPIN_ARROW_DOWN" {
	image = "arrow_down-spinner.png"
      }
    }
  }
}

# common default
class "GtkWidget" style "default"


# Style for widgets that don't want gradient backgrounds
style "no-gradients"
{
  engine "eazel-engine"
  {
    gradient[NORMAL] = {}
    gradient[ACTIVE] = {}
    gradient[PRELIGHT] = {}
    gradient[SELECTED] = {}
  }
}

class "GtkNotebook" style "no-gradients"
class "GtkRuler" style "no-gradients"


# Style used for (prelighted) menu items
style "menuitem"
{
  fg[PRELIGHT] = "#000000"
  
  engine "eazel-engine"
  {
    bg[PRELIGHT] = <0>

    gradient[NORMAL] = {}
    gradient[ACTIVE] = {}
    gradient[SELECTED] = {}
    # by default menuitem_gradient just references <0>
    gradient[PRELIGHT] = { "#f2f2f2" }
#	{ vertical : <0,0.5> [3] <0> [10] <0> [2] <0,0.6> }
  }
}

class "GtkMenuItem" style "menuitem"
widget_class "*.*MenuItem.*" style "menuitem"


style "menu"
{
  engine "eazel-engine"
  {
    gradient[NORMAL] = {}
    gradient[ACTIVE] = {}
    gradient[SELECTED] = {}
  }
}

# This enables gradiented menu backgrounds
class "GtkMenu" style "menu"



style "entry"
{
  engine "eazel-engine"
  {
    thickness = 3
  }
}

# some extra padding around text entries, so the focus marking fits
class "GtkEntry" style "entry"
class "GtkText" style "entry"


style "slider"
{
  engine "eazel-engine"
  {
    thickness = 0
  }
}

class "GtkVScale" style "slider"
class "GtkHScale" style "slider"


style "eventbox"
{
  # Causes the parent-relative feature of gdk_window_set_back_pixmap ()
  # to be used.
  bg_pixmap[NORMAL] = "<parent>"
  bg_pixmap[INSENSITIVE] = "<parent>"
  bg_pixmap[PRELIGHT] = "<parent>"
  bg_pixmap[SELECTED] = "<parent>"
  bg_pixmap[ACTIVE] = "<parent>"
  engine "eazel-engine" {}
}

# Ensure that there are no holes in tool bars, etc..
class "GtkEventBox" style "eventbox"
class "GtkSocket" style "eventbox"
class "GtkPlug" style "eventbox"
class "BonoboSocket" style "eventbox"
class "BonoboPlug" style "eventbox"
class "NautilusZoomControl" style "eventbox"


# This sucks, but so far I've found no way to get a gradient drawn
# in the middle part of the Foobar. Maybe it's possible to hardcode
# a hack in eazel-theme-draw.c? (draw_flat_box perhaps?)

widget_class "FoobarWidget.*" style "no-gradients"