kaizen-app/app/src/main/res/values/themes.xml
Bruno Deanoz 9e4eaf2297 feat: Kaizen orb app icon — light/dark backgrounds, monochrome, splash
Adaptive icon with amber orb on warm off-white (light) / Obsidian (dark).
Multi-layer radial gradients for the orb: body, depth shadow, specular
highlight, warm bounce light, crisp rim. Monochrome layer for Android 13+
themed icons. Splash screen uses orb foreground (API 31+).

Removed all old raster WebP icons — vector-only via mipmap-anydpi.
2026-06-21 15:22:28 +02:00

11 lines
622 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Kaizen" parent="android:Theme.Material.NoActionBar">
<item name="android:windowBackground">@color/window_background</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<!-- Splash screen (API 31+) -->
<item name="android:windowSplashScreenBackground">@color/window_background</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item>
</style>
</resources>