mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 13:48:58 +00:00
Fixed colors
This commit is contained in:
parent
6b277f4ef6
commit
76ade0b1a3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue