Newer
Older
music / app / src / main / res / values-night / themes.xml
  1. <!--
  2. ~ Copyright (C) 2022 Lukas Eisenhauer
  3. ~
  4. ~ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or(at your option) any later version.
  5. ~
  6. ~ This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  7. ~
  8. ~ You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
  9. -->
  10.  
  11. <resources xmlns:tools="http://schemas.android.com/tools">
  12. <!-- Base application theme. -->
  13. <style name="Theme.Music" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
  14. <!-- Primary brand color. -->
  15. <item name="colorPrimary">@color/purple_200</item>
  16. <item name="colorPrimaryVariant">@color/purple_700</item>
  17. <item name="colorOnPrimary">@color/black</item>
  18. <!-- Secondary brand color. -->
  19. <item name="colorSecondary">@color/teal_200</item>
  20. <item name="colorSecondaryVariant">@color/teal_200</item>
  21. <item name="colorOnSecondary">@color/black</item>
  22. <!-- Status bar color. -->
  23. <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
  24. <!-- Customize your theme here. -->
  25. </style>
  26. </resources>