ntfy-android/app/src/main/res/values-night/styles.xml
2023-05-20 15:50:44 +02:00

27 lines
1.2 KiB
XML

<resources>
<!--
This file contains only overrides for the dark theme.
Also see "ui/Colors.kt" for colors that have to be defined in code.
Resources:
- https://material.io/design/color/dark-theme.html
- https://material.io/develop/android/theming/dark
- https://developer.android.com/codelabs/basic-android-kotlin-training-change-app-theme#4
- https://developer.android.com/guide/topics/ui/look-and-feel/themes
-->
<style name="AppTheme" parent="Theme.Material3.DayNight">
<item name="colorPrimary">@color/teal_light</item>
<item name="colorSecondary">@color/teal_light</item> <!-- checkboxes, text fields -->
<!-- Action bar background & text color -->
<item name="colorSurface">@color/black_800b</item>
<item name="colorOnSurface">@color/white</item>
<item name="android:colorBackground">?backgroundColor</item> <!-- background -->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="actionModeBackground">?backgroundColor</item>
<item name="switchPreferenceCompatStyle">@style/MaterialSwitch</item>
</style>
</resources>