• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

apps/H03-May-2022-565482

cinnamon/H03-May-2022-2,7402,292

gtk-2.0/H03-May-2022-2,4462,109

gtk-3.0/H03-May-2022-8,7417,524

metacity-1/H03-May-2022-3,3402,620

unity/H03-May-2022-561489

COPYINGH A D09-Sep-202134.3 KiB676553

Makefile.amH A D09-Sep-2021417 2419

Makefile.inH A D03-May-202220.8 KiB691606

READMEH A D09-Sep-20212.5 KiB9470

index.theme.inH A D09-Sep-2021230 1512

README

1WORKAROUNDS
2
3Like it's the case with other dark themes, there may be readability issues in LibreOffice and also in webpage input fields when seen with Firefox or Epiphany. Fortunately, there are workarounds:
4
5LibreOffice
6============
7The first issue can be fixed by changing "OOO > Tools > Options > LibreOffice > Appearance > Document background" to white after disabling automatic detection of high contrast in Accessibility.
8
9Firefox
10========
11To fix the second issue for Firefox, create '~/.mozilla/firefox/<YOUR_PROFILE>/chrome/userContent.css' with these lines in it:
12
13/*------------ start ------------*/
14
15input[type=text], textarea, select {
16	-moz-appearance: none !important;
17	background-color: white;
18	color: black;
19}
20
21a[class="file"],
22a[class="dir"],
23a[class="symlink"] {
24	color: #2EB8E6 !important;
25}
26
27a:visited[class="file"],
28a:visited[class="dir"],
29a:visited[class="symlink"] {
30	color: #FF6666 !important;
31}
32/*------------- end -------------*/
33
34Also, create '~/.mozilla/firefox/<YOUR_PROFILE>/chrome/userChrome.css' and paste these lines in it:
35
36/*------------ start ------------*/
37
38.autocomplete-richlistbox richlistitem .ac-url,
39.autocomplete-richlistbox richlistitem .ac-separator {
40	color: #2EB8E6 !important;
41}
42/*------------- end -------------*/
43
44Seamonkey
45==========
46Do the same thing for Seamonkey. The difference is just your profile folder, which is inside '~/.mozilla/seamonkey/'.
47
48Thunderbird
49============
50The same as above but inside Thunderbird's profile folder.
51
52Epiphany
53=========
54Take control of Epiphany by selecting "Use custom stylesheet" in "Preferences > Font & Style" and creating '~/.config/epiphany/user-stylesheet.css' as:
55
56/*------------ start ------------*/
57
58select {
59	color: #fff !important;
60	border-radius: 0 !important;
61	border-color: transparent !important;
62}
63
64input {
65	background-color: #fcfcfc !important;
66	color: #000 !important;
67}
68/*------------- end -------------*/
69
70Meld
71=====
72Just for more readability, you could change #880000" to #e60000" in '/usr/lib/meld/meld/tree.py' but this isn't necessary.
73
74Liferea
75========
76Go to or create '~/.liferea_X.Y/liferea.css' (X.Y is the version of Liferea) and add this to it:
77
78table.headmeta {color: #fff;}
79#errors, #commentFeedError {
80	color: #000;
81}
82
83Ubuntu Software Center
84======================
85Find the following definitions in '/usr/share/software-center/ui/gtk3/css/softwarecenter.css':
86
87@define-color light-aubergine
88@define-color super-light-aubergine
89
90Then, change their values to #4D4D4D and #3B3B3E respectively, i.e.
91
92@define-color light-aubergine #4D4D4D;
93@define-color super-light-aubergine #3B3B3E;
94