Add new theme attributes for light background colors, fonts and vector graphics

This commit is contained in:
uykek 2020-06-02 20:15:26 +02:00
parent c6262b3789
commit 2557cda248
2 changed files with 10 additions and 1 deletions

View file

@ -1,2 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
<resources>
<declare-styleable name="AppTheme">
<attr name="lightestBackGround" format="color"/>
<attr name="lightestFontColor" format="color"/>
<attr name="standardVectorGraphic" format="color"/>
</declare-styleable>
</resources>

View file

@ -6,6 +6,9 @@
<item name="colorPrimary">@color/colorPrimaryDark</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="lightestBackGround">@color/white</item>
<item name="lightestFontColor">@color/white</item>
<item name="standardVectorGraphic">@color/black</item>
<item name="actionBarTheme">@style/ToolbarStyle</item>
</style>