Auxio/app/src/main/res/values/themes.xml
OxygenCobalt 68bdd0d929
style: add basic black theme
Finally add black theme support to Auxio. This is abit of a janky
implementation since I had to add an extra set of accents, but it
shouldn't be as big of a problem after the styles refactoring.
Support for black android components is not implemented yet, but
will be eventually.
2021-06-11 09:13:20 -06:00

100 lines
No EOL
3.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--
All the base themes/accents.
-->
<style name="Theme.Red" parent="Theme.Base">
<item name="colorPrimary">@color/red</item>
<item name="colorSecondary">@color/red</item>
</style>
<style name="Theme.Pink" parent="Theme.Base">
<item name="colorPrimary">@color/pink</item>
<item name="colorSecondary">@color/pink</item>
</style>
<style name="Theme.Purple" parent="Theme.Base">
<item name="colorPrimary">@color/purple</item>
<item name="colorSecondary">@color/purple</item>
</style>
<style name="Theme.DeepPurple" parent="Theme.Base">
<item name="colorPrimary">@color/deep_purple</item>
<item name="colorSecondary">@color/deep_purple</item>
</style>
<style name="Theme.Indigo" parent="Theme.Base">
<item name="colorPrimary">@color/indigo</item>
<item name="colorSecondary">@color/indigo</item>
</style>
<style name="Theme.Blue" parent="Theme.Base">
<item name="colorPrimary">@color/blue</item>
<item name="colorSecondary">@color/blue</item>
</style>
<style name="Theme.LightBlue" parent="Theme.Base">
<item name="colorPrimary">@color/light_blue</item>
<item name="colorSecondary">@color/light_blue</item>
</style>
<style name="Theme.Cyan" parent="Theme.Base">
<item name="colorPrimary">@color/cyan</item>
<item name="colorSecondary">@color/cyan</item>
</style>
<style name="Theme.Teal" parent="Theme.Base">
<item name="colorPrimary">@color/teal</item>
<item name="colorSecondary">@color/teal</item>
</style>
<style name="Theme.Green" parent="Theme.Base">
<item name="colorPrimary">@color/green</item>
<item name="colorSecondary">@color/green</item>
</style>
<style name="Theme.LightGreen" parent="Theme.Base">
<item name="colorPrimary">@color/light_green</item>
<item name="colorSecondary">@color/light_green</item>
</style>
<style name="Theme.Lime" parent="Theme.Base">
<item name="colorPrimary">@color/lime</item>
<item name="colorSecondary">@color/lime</item>
</style>
<style name="Theme.Yellow" parent="Theme.Base">
<item name="colorPrimary">@color/yellow</item>
<item name="colorSecondary">@color/yellow</item>
</style>
<style name="Theme.Orange" parent="Theme.Base">
<item name="colorPrimary">@color/orange</item>
<item name="colorSecondary">@color/orange</item>
</style>
<style name="Theme.DeepOrange" parent="Theme.Base">
<item name="colorPrimary">@color/deep_orange</item>
<item name="colorSecondary">@color/deep_orange</item>
</style>
<style name="Theme.Brown" parent="Theme.Base">
<item name="colorPrimary">@color/brown</item>
<item name="colorSecondary">@color/brown</item>
</style>
<style name="Theme.Grey" parent="Theme.Base">
<item name="colorPrimary">@color/grey</item>
<item name="colorSecondary">@color/grey</item>
</style>
<style name="Theme.BlueGrey" parent="Theme.Base">
<item name="colorPrimary">@color/blue_grey</item>
<item name="colorSecondary">@color/blue_grey</item>
</style>
<style name="Theme.Neutral" parent="Theme.Base">
<item name="colorPrimary">@color/control_color</item>
<item name="colorSecondary">@color/control_color</item>
</style>
</resources>