1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-19 13:48:58 +00:00

Fixed colors

This commit is contained in:
M66B 2020-02-15 19:22:28 +01:00
parent 6b277f4ef6
commit 76ade0b1a3

View file

@ -392,7 +392,7 @@ public class HtmlHelper {
Integer color = parseColor(value, dark);
if (color != null) {
// fromHtml does not support transparency
String c = String.format("#%08x", color | 0xFF000000);
String c = String.format("#%06x", color);
sb.append("color:").append(c).append(";");
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N)
element.attr("color", c);