52 lines
No EOL
2 KiB
XML
52 lines
No EOL
2 KiB
XML
<resources>
|
|
<!-- Base application theme. -->
|
|
<style name="Theme.Findroid" parent="Base.Theme.Findroid" />
|
|
|
|
<style name="Base.Theme.Findroid" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
|
<!-- Main colors -->
|
|
<item name="colorPrimary">@color/blue_600</item>
|
|
<item name="colorPrimaryVariant">@color/blue_800</item>
|
|
<item name="colorSecondary">@color/green_500</item>
|
|
<item name="colorSecondaryVariant">@color/green_800</item>
|
|
|
|
<!-- Background colors and error state color -->
|
|
<item name="android:colorBackground">@color/white</item>
|
|
<item name="colorSurface">@color/white</item>
|
|
<item name="colorError">@color/red</item>
|
|
|
|
<!-- Text, icons and strokes in relation to the surface -->
|
|
<item name="colorOnPrimary">@color/white</item>
|
|
<item name="colorOnSecondary">@color/black</item>
|
|
<item name="colorOnBackground">@color/black</item>
|
|
<item name="colorOnSurface">@color/black</item>
|
|
<item name="colorOnError">@color/white</item>
|
|
|
|
<!-- Status bar -->
|
|
<item name="android:statusBarColor">?attr/colorSurface</item>
|
|
<item name="android:windowLightStatusBar">?attr/isLightTheme</item>
|
|
|
|
<!-- Navigation bar -->
|
|
<item name="android:navigationBarColor">?attr/colorSurface</item>
|
|
|
|
<!-- Toolbar -->
|
|
<item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar.Surface</item>
|
|
</style>
|
|
|
|
<style name="Theme.FindroidSplashScreen" parent="Theme.SplashScreen">
|
|
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item>
|
|
<item name="windowSplashScreenBackground">@color/white</item>
|
|
<item name="postSplashScreenTheme">@style/Theme.Findroid</item>
|
|
</style>
|
|
|
|
<string-array name="themes">
|
|
<item>Follow system</item>
|
|
<item>Light</item>
|
|
<item>Dark</item>
|
|
</string-array>
|
|
|
|
<string-array name="themes_value">
|
|
<item>system</item>
|
|
<item>light</item>
|
|
<item>dark</item>
|
|
</string-array>
|
|
</resources> |