blob: 9e56c9e222227e1f24f0d1c2a274ac7d590ad5b0 (
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
|
# GDM Theme:
# "Das Mini"
#
# Author:
# Ryan Johnson <rhino.citguy@gmail.com>
#
# Feel free to modify and share!
gtk_color_scheme="text_color_norm:#FFFFFF
text_color_insensitive:#777777
widget_base_norm:#000000
widget_base_insensitive:#000000"
style "login_prompt"
{
text[NORMAL] = @text_color_norm
base[NORMAL] = @widget_base_norm
text[ACTIVE] = @text_color_norm
base[ACTIVE] = @widget_base_norm
text[PRELIGHT] = @text_color_norm
base[PRELIGHT] = @widget_base_norm
text[INSENSITIVE] = @text_color_insensitive
base[INSENSITIVE] = @widget_base_insensitive
}
class "GtkEntry" style "login_prompt"
|