blob: ab468804f3754180d108878dc940126eef921b5c (
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
|
# Edit these colors and fonts however you like.
style "default"
{
GtkRange::slider_width = 12
GtkRange::stepper_size = 12
GtkScrollbar::min_slider_length = 14
GtkCheckButton::indicator_size = 12
GtkCheckMenuItem::indicator_size = 12
GtkButton::default_border = {0, 0, 0, 0}
fg[NORMAL] = "#000000"
fg[ACTIVE] = "#314a82"
fg[INSENSITIVE] = "#969696"
fg[PRELIGHT] = "#415a92"
fg[SELECTED] = "#ffffff"
bg[ACTIVE] = "#c2c2be"
bg[NORMAL] = "#e2e2de"
bg[INSENSITIVE] = "#e2e2de"
bg[PRELIGHT] = "#f2f2ee"
bg[SELECTED] = "#456b7f"
base[NORMAL] = "#ffffff"
base[ACTIVE] = "#456b7f"
base[INSENSITIVE] = "#ffffff"
base[PRELIGHT] = "#eaeaea"
base[SELECTED] = "#456b7f"
text[NORMAL] = "#000000"
text[ACTIVE] = "#000000"
text[PRELIGHT] = "#000000"
text[SELECTED] = "#ffffff"
text[INSENSITIVE] = "#000000"
engine "thinice"
{
# Do you want the scrollbar handles rectangular or a bit shaped?
rect_scrollbar = TRUE
# The following variables are semi-generic, can be applied to
# different widget classes etc..
# Mark type 1 is used on scrollbar handles, handleboxes etc
mark_type1 = DOT
# Mark type 2 is used on scrollbar buttons
mark_type2 = ARROW
}
}
style "menu" = "default"
{
bg[PRELIGHT] = "#ffffff"
text[PRELIGHT] = { 1.0, 1.0, 1.0 }
engine "redmond95" { }
}
style "togglebuttons" = "default"
{
engine "redmond95" { }
}
style "progressbar" = "default"
{
bg[PRELIGHT] = "#456b7f"
fg[PRELIGHT] = "#ffffff"
}
style "entry"
{
bg[SELECTED] = "#A3B0C9"
fg[SELECTED] = "#000000"
}
class "GtkWidget" style "default"
class "GtkMenuItem*" style "menu"
class "GtkCheckButton" style "togglebuttons"
class "GtkRadioButton" style "togglebuttons"
class "GtkProgressBar" style "progressbar"
class "GtkEntry" style "entry"
# caja improvment
style "simply-caja-location"
{
bg[NORMAL] = mix (0.60, shade (1.05, "#e2e2de"), "#e2e2de")
}
widget "*.caja-extra-view-widget" style : highest "simply-caja-location"
|