mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-01-07 19:58:10 -05:00
Theme: First version of theme palette.
This commit is contained in:
parent
7cd59283eb
commit
4c26ac0586
11
app/src/main/res/values/colors.xml
Normal file
11
app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="primary">#FF9800</color>
|
||||||
|
<color name="primary_dark">#F57C00</color>
|
||||||
|
<color name="light_primary">#FFE0B2</color>
|
||||||
|
<color name="primary_text">#212121</color>
|
||||||
|
<color name="accent">#FF5722</color>
|
||||||
|
<color name="secondary_text">#727272</color>
|
||||||
|
<color name="divider">#B6B6B6</color>
|
||||||
|
<color name="window_background">#EEEEEE</color>
|
||||||
|
</resources>
|
@ -1,5 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<style name="Theme.Yaaic" parent="android:Theme.Material">
|
<style name="Theme.Yaaic" parent="android:Theme.Material.Light.DarkActionBar">
|
||||||
|
<item name="android:colorPrimary">@color/primary</item>
|
||||||
|
<item name="android:colorPrimaryDark">@color/primary_dark</item>
|
||||||
|
<item name="android:colorAccent">@color/accent</item>
|
||||||
|
<item name="android:windowBackground">@color/window_background</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
Loading…
Reference in New Issue
Block a user