Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtkrc « patches « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48ba672f5c9fad77a8ce8330953bd48b51542ebf (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
include "/Library/Frameworks/Mono.framework/Versions/Current/share/themes/Clearlooks/gtk-2.0/gtkrc"
#gtk-icon-theme-name = "OSX" 
gtk-icon-theme-name = "Tango"
gtk_color_scheme = "fg_color:#222\nbg_color:#e6e6e6\nbase_color:#f9f9f9\ntext_color:#222\nselected_bg_color:#788ab0\nselected_fg_color:#fff"
gtk-menu-popup-delay = 1
gtk-button-images = 0
gtk-menu-images = 0
gtk-enable-mnemonics = 0

style "theme-default"
{
    GtkButton      ::default_border    = { 0, 0, 0, 0 }
    GtkRange       ::trough_border     = 0
    GtkPaned       ::handle_size       = 8
    GtkRange       ::slider_width      = 15
    GtkRange       ::stepper_size      = 15
    GtkScrollbar   ::min_slider_length = 30
    GtkCheckButton ::indicator_size    = 14
    GtkMenuBar     ::internal-padding  = 0
    GtkTreeView    ::expander_size     = 12
    GtkExpander    ::expander_size     = 14

    xthickness = 2
    ythickness = 2

    fg[NORMAL]        = @fg_color #"#000000" # black
    fg[PRELIGHT]      = @fg_color #"#000000" # black
    fg[SELECTED]      = @selected_fg_color #"#ffffff" # white 
    fg[ACTIVE]        = @fg_color #"#000000" # black
    fg[INSENSITIVE]   = darker (@bg_color) #"#b5b3ac" # dark beige

    bg[NORMAL]        = @bg_color # "#ede9e3"
    bg[PRELIGHT]      = shade (1.02, @bg_color) #"#f9f7f3" # very light beige
    bg[SELECTED]      = @selected_bg_color # "#5598d7" # deepsky
    bg[INSENSITIVE]   = @bg_color # "#efebe5" # beige
    bg[ACTIVE]        = shade (0.9, @bg_color) #"#dcd4c9" #"#d7d3ca" # dark beige

    base[NORMAL]      = @base_color # "#ffffff" # white 
    base[PRELIGHT]    = shade (0.95, @bg_color) # "#5f8ec4" # dark beige
    base[ACTIVE]      = shade (0.9, @selected_bg_color) # "#a69f91" # darker deepsky
    base[SELECTED]    = @selected_bg_color # "#5598d7" # deepsky
    base[INSENSITIVE] = @bg_color # "#e8e5de" # beige

    text[NORMAL]      = @text_color # "#000000" # black
    text[PRELIGHT]    = @text_color # "#000000" # black
    text[ACTIVE]      = @selected_fg_color # "#ffffff" # white
    text[SELECTED]    = @selected_fg_color # "#ffffff" # white
    text[INSENSITIVE] = darker (@bg_color) # "#b5b3ac" # dark beige

    engine "clearlooks"  {
      style               = GUMMY   # gummy look
      toolbarstyle        = 0       # flat toolbars
      animation           = TRUE    # animated progressbars
      menubarstyle        = 2       # rounded menus
      colorize_scrollbar  = TRUE    # colored slider
    }

    font              = "Lucida Grande 14"
}

style "theme-wide" = "theme-default"
{
    xthickness = 3
    ythickness = 3
}

style "theme-text" = "theme-default"
{
    #base[SELECTED]     = "#fc9747"  # Outline?
}

style "theme-toolbar" = "theme-default" 
{
    #top and bottom border
    bg[NORMAL] = @bg_color
}

style "theme-scrollbar" = "theme-default"
{
    bg[SELECTED] = shade (1.1, @selected_bg_color)
}

style "theme-tasklist" = "theme-default"
{
    xthickness = 5
    ythickness = 3
}

style "theme-menu" = "theme-default"
{
    xthickness = 3
    ythickness = 3
    bg[NORMAL] = shade (1.1,@bg_color)
}

style "theme-menu-item" = "theme-default"
{
    xthickness = 2
    ythickness = 4
    fg[PRELIGHT] = @selected_fg_color
    text[PRELIGHT] = @selected_fg_color
    base[PRELIGHT] = @selected_bg_color # Selection color
}

style "theme-menu-itembar" = "theme-default"
{
    xthickness = 0
    ythickness = 0
}

style "theme-tree" = "theme-default"
{
    xthickness = 2
    ythickness = 2
    GtkTreeView::odd-row-color = shade(0.9, @base_color)
    GtkTreeView::even-row-color = @base_color
}

style "theme-frame-title" = "theme-default"
{
    #fg[NORMAL] = "#f00" #button frames
}

style "theme-tooltips" = "theme-default"
{
    xthickness = 4
    ythickness = 4
    bg[NORMAL] = { 1.0,1.0,0.75 }
}

style "theme-progressbar" = "theme-default"
{
    xthickness = 1
    ythickness = 1
    fg[PRELIGHT]  = @base_color
}

style "theme-combo" = "theme-default"
{
    xthickness = 2
    ythickness = 4
}

style "theme-button" = "theme-wide"
{
    bg[NORMAL] = @bg_color
    bg[PRELIGHT] = shade (1.1, @bg_color)
    bg[ACTIVE] = shade (0.9, @bg_color)
    #xthickness = 4
    #ythickness = 2
}

style "theme-check" = "theme-button"
{
}

style "theme-panel" = "theme-default"
{
    xthickness = 3
    ythickness = 3
    bg[ACTIVE] = shade (1.1, @selected_bg_color)
    fg[ACTIVE] = @selected_fg_color
}

style "theme-notebook" = "theme-wide"
{
    base[SELECTED]    = @selected_bg_color  # Tab selection color
    bg[ACTIVE]        = shade(0.9, @bg_color)  # Unselected tabs

#    engine "clearlooks" {
#        style = CLASSIC
#    }
}

# widget styles
class "GtkWidget" style "theme-default"
class "GtkButton" style "theme-button"
class "GtkCombo"  style "theme-button"
class "GtkRange"  style "theme-wide"
class "GtkFrame"  style "theme-wide"
class "GtkMenu"   style "theme-menu"
class "GtkEntry"  style "theme-button"
class "GtkMenuItem"    style "theme-menu-item"
class "GtkStatusbar"   style "theme-wide"
class "GtkNotebook"    style "theme-notebook"
class "GtkProgressBar" style "theme-progressbar"
class "GtkCheckButton" style "theme-check"
class "GtkRadioButton" style "theme-check"
class "GtkToolbar" style "theme-toolbar"

widget_class "*MenuItem.*" style "theme-menu-item"

# combobox stuff
widget_class "*.GtkComboBox.GtkButton" style "theme-combo"
widget_class "*.GtkCombo.GtkButton"    style "theme-combo"

# tooltips stuff
widget_class "*.tooltips.*.GtkToggleButton" style "theme-tasklist"
widget "gtk-tooltips" style "theme-tooltips"

# treeview stuff
widget "*GtkTreeView*" style "theme-tree"
widget_class "*.GtkTreeView.GtkButton" style "theme-tree"
widget_class "*.GtkCTree.GtkButton" style "theme-tree"
widget_class "*.GtkList.GtkButton" style "theme-tree"
widget_class "*.GtkCList.GtkButton" style "theme-tree"
widget_class "*.GtkFrame.GtkLabel" style "theme-frame-title"

# notebook stuff
widget_class "*.GtkNotebook.*.GtkEventBox" style "theme-notebook"
widget_class "*.GtkNotebook.*.GtkViewport" style "theme-notebook"

# scrollbar stuff
class "GtkScrollbar" style "theme-scrollbar"

gtk-font-name = "Lucida Grande 12"