1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 06:31:17 +00:00

Orange is such a nice color!

This commit is contained in:
M66B 2019-09-25 14:46:38 +02:00
parent 13997a0848
commit 828ed7a1a6

View file

@ -199,7 +199,9 @@ public class HtmlHelper {
Integer.parseInt(rgb[2])
);
}
} else
} else if (c.equals("orange"))
color = 0Xffa500; // CSS Level 2
else
color = Color.parseColor(c);
} catch (Throwable ex) {
Log.e("Color=" + c);