1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Use very light grey instead of white for message text in dark theme

This commit is contained in:
cketti 2013-04-24 01:05:11 +02:00
parent d14bdc0b79
commit 1c722876f1

View File

@ -172,7 +172,7 @@ public class MessageWebView extends TitleBarWebView {
String content = "<html><head><meta name=\"viewport\" content=\"width=device-width\"/>";
if (K9.getK9MessageViewTheme() == K9.Theme.DARK) {
content += "<style type=\"text/css\">" +
"* { background: black ! important; color: white !important }" +
"* { background: black ! important; color: #F3F3F3 !important }" +
":link, :link * { color: #CCFF33 !important }" +
":visited, :visited * { color: #551A8B !important }</style> ";
}