Initial commit

This commit is contained in:
2026-05-10 10:45:02 +08:00
commit e62384a9c5
1053 changed files with 19615 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ball">#C2410C</color>
<color name="ic_launcher_background">#FAFAF7</color>
<color name="ink">#1A1A1A</color>
<color name="paper">#FAFAF7</color>
<string name="app_name">Hoops</string>
<style name="Theme.Hoops" parent="android:Theme.Material.Light.NoActionBar">
<item name="android:windowBackground">@color/paper</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowLightNavigationBar">true</item>
</style>
<style name="Theme.Hoops.Splash" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/paper</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
<item name="postSplashScreenTheme">@style/Theme.Hoops</item>
</style>
</resources>