-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathncxmms2.colors
143 lines (128 loc) · 3.56 KB
/
ncxmms2.colors
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
// ncxmms2 color scheme file
// This file is typically stored in /usr/share/ncxmms2 (according to INSTALL_PREFIX)
// and provides default system wide color settinngs for ncxmms2. Of course, you can
// modify it, but it is much better to copy this file into ncxmms2 user config
// directory (typically ~/.config/ncxmms2) and use it as a starting point.
// You can set colors for any window class. Any window class can be in two states:
// "Active" or "Inactive" (having or not having input focus). Colors are setted via
// roles. Standart roles are:
// "Text" - text color
// "Background" - background color
// "Selection" - color to indicate selected item
// "Highlight" - color to indicate current item
// "HighlightedText" - text color under highlighted current item
// For custom window classes special roles can be provided.
// For each role you can use one of the following colors:
// "Black", "Red", "Green", "Yellow", "Blue", "Magenta", "Cyan", "White".
// Use "Default" for terminal default color.
// Maybe one day ncxmms2 will have 256 colors support...
// It's worth to mention, that you don't have to change all roles in some
// window class, because they are inherited from base window class.
//
// List of classes having only standart roles:
// "Window", "TextView", "ListView", "LineEdit", "Label", "CheckBox",
// "RadioButtonGroupBox",
// "ActivePlaylistWindow", "HeaderWindow", "ListViewAppIntegrated",
// "LocalFileSystemBrowser", "ServerSideBrowser", "MedialibBrowser",
// "PlaylistsBrowser", "PlaylistsListView", "PlaylistView",
// "PlaybackProgressBar", "PlaybackStatusWindow", "QuestionWindow",
// "StatusMessageWindow", "EqualizerBandsWindow", "EqualizerPreampWindow",
// "HelpBrowser", "SongInfoWindow".
{
"Window":
{
"Active":
{
"Text" : "Yellow",
"Background" : "Default",
"Selection" : "Magenta",
"Highlight" : "Blue",
"HighlightedText" : "White"
},
"Inactive":
{
"Text" : "Yellow",
"Background" : "Default",
"Selection" : "Magenta",
"Highlight" : "White",
"HighlightedText" : "Black"
}
},
"HeaderWindow":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"PlaybackProgressBar":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"PlaybackStatusWindow":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"QuestionWindow":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"StatusMessageWindow":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"MedialibBrowser":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
},
"PlaylistsBrowser":
{
"Active":
{
"Text" : "Default"
},
"Inactive":
{
"Text" : "Default"
}
}
}