Orange is such a nice color!

This commit is contained in:
M66B 2019-09-25 14:46:38 +02:00
parent 13997a0848
commit 828ed7a1a6
1 changed files with 3 additions and 1 deletions

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);