Files
lastochka-messenger/lastochka-android-compose/app/src/main/res/values/themes.xml
Anton Budylin ea171ed95a first commit
2026-04-14 10:12:51 +03:00

26 lines
1.4 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Splash Screen theme (Android 12+) -->
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/brand_primary</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/logo_splash</item>
<item name="windowSplashScreenAnimationDuration">800</item>
<item name="splashScreenIconSize">96dp</item>
<item name="postSplashScreenTheme">@style/Theme.Lаstochka</item>
<item name="android:statusBarColor">@color/brand_primary</item>
<item name="android:navigationBarColor">@color/brand_primary</item>
</style>
<!-- Main app theme (will be overridden by Compose) -->
<style name="Theme.Lаstochka" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="colorPrimary">@color/brand_primary</item>
<item name="colorPrimaryDark">@color/brand_primary_dark</item>
<item name="colorAccent">@color/brand_secondary</item>
<item name="android:windowBackground">@color/background</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowLightStatusBar" tools:targetApi="m">true</item>
</style>
</resources>