Use style to adapt WebView for dark themes

This commit is contained in:
M66B
2019-04-23 12:33:57 +02:00
parent 5be86b443e
commit 769e625a15
6 changed files with 11 additions and 63 deletions

View File

@@ -132,13 +132,6 @@ public class Helper {
static final float LOW_LIGHT = 0.6f;
static final float[] MATRIX_NEGATIVE = new float[]{
-1, 0, 0, 0, 255, // red
0, -1, 0, 0, 255, // green
0, 0, -1, 0, 255, // blue
0, 0, 0, 1, 0 // alpha
};
static final String FAQ_URI = "https://github.com/M66B/open-source-email/blob/master/FAQ.md";
static ThreadFactory backgroundThreadFactory = new ThreadFactory() {