Guest User

GnomishDark Readme

a guest
Jul 12th, 2013
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. WORKAROUNDS
  2.  
  3. Like 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.  
  5. LibreOffice
  6. ============
  7. The 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.  
  9. Firefox
  10. ========
  11. To fix the second issue for Firefox, create '~/.mozilla/firefox/<YOUR_PROFILE>/chrome/userContent.css' with these lines in it:
  12.  
  13. /*------------ start ------------*/
  14. input, textarea, select {
  15. -moz-appearance: none !important;
  16. background-color: white;
  17. color: black;
  18. }
  19.  
  20. a[class="file"],
  21. a[class="dir"],
  22. a[class="symlink"] {
  23. color: #2EB8E6 !important;
  24. }
  25.  
  26. a:visited[class="file"],
  27. a:visited[class="dir"],
  28. a:visited[class="symlink"] {
  29. color: #FF6666 !important;
  30. }
  31. /*------------- end -------------*/
  32.  
  33. Seamonkey
  34. ==========
  35. Do the same thing for Seamonkey. The difference is just your profile folder, which is inside '~/.mozilla/seamonkey/'.
  36.  
  37. Thunderbird
  38. ============
  39. The same as above but inside Thunderbird's profile folder.
  40.  
  41. Epiphany
  42. =========
  43. Take control of Epiphany by selecting "Use custom stylesheet" in "Preferences > Font & Style" and creating '~/.config/epiphany/user-stylesheet.css' as:
  44.  
  45. /*------------ start ------------*/
  46. select {
  47. color: #fff !important;
  48. border-radius: 0 !important;
  49. border-color: transparent !important;
  50. }
  51.  
  52. input {
  53. background-color: #fcfcfc !important;
  54. color: #000 !important;
  55. }
  56. /*------------- end -------------*/
  57.  
  58. Meld
  59. =====
  60. Just for more readability, you could change #880000" to #e60000" in '/usr/lib/meld/meld/tree.py' but this isn't necessary.
  61.  
  62. Liferea
  63. ========
  64. Go to or create '~/.liferea_X.Y/liferea.css' (X.Y is the version of Liferea) and add this to it:
  65.  
  66. table.headmeta {color: #fff;}
  67. #errors, #commentFeedError {
  68. color: #000;
  69. }
  70.  
  71. Ubuntu Software Center (thanks to Marcelo Ruiz)
  72. ===============================================
  73. Find the following definitions in '/usr/share/software-center/ui/gtk3/css/softwarecenter.css':
  74.  
  75. @define-color light-aubergine
  76. @define-color super-light-aubergine
  77.  
  78. Then, change their values to #4D4D4D and #3B3B3E respectively, i.e.
  79.  
  80. @define-color light-aubergine #4D4D4D;
  81. @define-color super-light-aubergine #3B3B3E;
Advertisement
Add Comment
Please, Sign In to add comment