blob: 84828505db69f834d494c20e55f78030c9186d6b (
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
|
There may be a minor readability issue in Epiphany. To fix it:
(1) Select "Use custom stylesheet" in "Preferences > Font & Style"; and
(2) Create '~/.config/epiphany/user-stylesheet.css' as:
select {
border-radius: 0 !important;
border-color: transparent !important;
}
input {
color: #000 !important;
}
There is a posibillity for changing the background color of the panel for dark ambiance,
useful for a transparency panel with a dark DE background,
Edit the gtkrc file in the gtk-2.0 folder.
change those lines
style "misc-panel"
{
engine "murrine"
{
rgba = FALSE
roundness=3
}
bg[NORMAL] = "#C2D0BD" # for the (light) Ambiance background
# bg[NORMAL] = "#5A6C5F" # for the (dark) Ambiance background
bg[PRELIGHT] = "#AEC6A6" #for the (light) Ambiance background
# bg[PRELIGHT] = "#C7E3BE" #for the (dark) Ambiance background
bg[SELECTED] = shade (0.6, @bg_color) # to be compatible with menus
# bg[SELECTED] = shade (1.08, @bg_color) # to be compatible with menus (dark) Ambiance background
fg[NORMAL] = "#000000" # for light panel
# fg[NORMAL] = "#FFFFFF" # for dark panel
# fg[PRELIGHT] = "#000000" # for dark panel
# fg[SELECTED] = "#000000" # for dark panel
to this ones
style "misc-panel"
{
engine "murrine"
{
rgba = FALSE
roundness=3
}
# bg[NORMAL] = "#C2D0BD" # for the (light) Ambiance background
bg[NORMAL] = "#5A6C5F" # for the (dark) Ambiance background
# bg[PRELIGHT] = "#AEC6A6" #for the (light) Ambiance background
bg[PRELIGHT] = "#C7E3BE" #for the (dark) Ambiance background
# bg[SELECTED] = shade (0.6, @bg_color) # to be compatible with menus (light) Ambiance background
bg[SELECTED] = shade (1.08, @bg_color) # to be compatible with menus (dark) Ambiance background
# fg[NORMAL] = "#000000" # for light panel
fg[NORMAL] = "#FFFFFF" # for dark panel
fg[PRELIGHT] = "#000000" # for dark panel
fg[SELECTED] = "#000000" # for dark panel
Have fun.
|