forked from xuhaoyang/ClashForAndroid
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy paththemes.xml
More file actions
15 lines (15 loc) · 895 Bytes
/
Copy paththemes.xml
File metadata and controls
15 lines (15 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppThemeLight" parent="AppThemeLightBase">
<item name="android:statusBarColor">@color/color_system_ui_overlay</item>
<item name="android:navigationBarColor">@color/color_system_ui_overlay</item>
<item name="android:windowSplashScreenBackground">@color/color_light_background</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_logo</item>
</style>
<style name="AppThemeDark" parent="AppThemeDarkBase">
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowSplashScreenBackground">@color/color_dark_background</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_logo</item>
</style>
</resources>