-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtkrc
89 lines (81 loc) · 2.24 KB
/
gtkrc
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
/**
* AwesomeDark GIMP Theme
*
* Version 1.0.0
*
* Copyright © 2017, Manuel Thalmann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing premissions and
* limitations under the License.
*/
style "Default"
{
fg[NORMAL] = "blue"
fg[PRELIGHT] = "blue"
fg[ACTIVE] = "blue"
fg[SELECTED] = "blue"
fg[INSENSITIVE] = "blue"
bg[NORMAL] = "red"
bg[PRELIGHT] = "red"
bg[ACTIVE] = "red"
bg[SELECTED] = "red"
bg[INSENSITIVE] = "red"
base[NORMAL] = "gold"
base[PRELIGHT] = "gold"
base[ACTIVE] = "gold"
base[SELECTED] = "gold"
base[INSENSITIVE] = "gold"
text[NORMAL] = "green"
text[PRELIGHT] = "green"
text[ACTIVE] = "green"
text[SELECTED] = "green"
text[INSENSITIVE] = "green"
engine "pixmap"
{
}
}
style "Test"
{
fg[NORMAL] = "cyan"
fg[PRELIGHT] = "cyan"
fg[ACTIVE] = "cyan"
fg[SELECTED] = "cyan"
fg[INSENSITIVE] = "cyan"
bg[NORMAL] = "violet"
bg[PRELIGHT] = "violet"
bg[ACTIVE] = "violet"
bg[SELECTED] = "violet"
bg[INSENSITIVE] = "violet"
base[NORMAL] = "orange"
base[PRELIGHT] = "orange"
base[ACTIVE] = "orange"
base[SELECTED] = "orange"
base[INSENSITIVE] = "orange"
text[NORMAL] = "pink"
text[PRELIGHT] = "pink"
text[ACTIVE] = "pink"
text[SELECTED] = "pink"
text[INSENSITIVE] = "pink"
}
widget_class "*" style "Default"
include "components/Button.gtkrc"
include "components/CheckBox.gtkrc"
include "components/RadioButton.gtkrc"
include "components/ComboBox.gtkrc"
include "components/TextBox.gtkrc"
include "components/TaggedTextBox.gtkrc"
include "components/UpDownBox.gtkrc"
include "components/Slider.gtkrc"
include "components/TabControl.gtkrc"
include "components/TreeView.gtkrc"
include "components/MenuBar.gtkrc"
include "components/ToolTip.gtkrc"