mirror of
https://github.com/KokaKiwi/BarInsta
synced 2026-03-05 12:01:35 +00:00
parent
3899b9adfa
commit
8240829fa8
10 changed files with 37 additions and 248 deletions
5
app/src/main/res/drawable/launch.xml
Normal file
5
app/src/main/res/drawable/launch.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:opacity="opaque">
|
||||
<item android:drawable="@color/white"/>
|
||||
</layer-list>
|
||||
5
app/src/main/res/drawable/launch_dark.xml
Normal file
5
app/src/main/res/drawable/launch_dark.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:opacity="opaque">
|
||||
<item android:drawable="@color/black"/>
|
||||
</layer-list>
|
||||
|
|
@ -1,5 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!--
|
||||
<style name="AppTheme.LaunchTheme" parent="AppTheme">
|
||||
<item name="android:windowBackground">@drawable/launch_dark</item>
|
||||
</style>
|
||||
-->
|
||||
|
||||
<style name="AppTheme.BottomSheetDialog" parent="Theme.MaterialComponents.BottomSheetDialog" />
|
||||
|
||||
|
|
|
|||
|
|
@ -8,9 +8,6 @@
|
|||
<color name="btn_green_background">#5CE362</color>
|
||||
<color name="btn_green_text_color">@color/text_color_light</color>
|
||||
|
||||
<color name="btn_black_background">#000000</color>
|
||||
<color name="btn_black_text_color">@color/text_color_dark</color>
|
||||
|
||||
<color name="btn_blue_background">#0288D1</color>
|
||||
<color name="btn_blue_text_color">@color/text_color_light</color>
|
||||
|
||||
|
|
@ -18,8 +15,6 @@
|
|||
<color name="btn_red_text_color">@color/text_color_dark</color>
|
||||
|
||||
<color name="btn_purple_background">#909090</color>
|
||||
<color name="btn_pink_background">#FF69B4</color>
|
||||
<color name="btn_pink_text_color">@color/text_color_dark</color>
|
||||
<color name="btn_lightpink_background">#FFB6C1</color>
|
||||
<color name="btn_lightpink_text_color">@color/text_color_light</color>
|
||||
|
||||
|
|
|
|||
|
|
@ -325,4 +325,5 @@
|
|||
<item quantity="one">%d comment</item>
|
||||
<item quantity="other">%d comments</item>
|
||||
</plurals>
|
||||
<string name="download_permission">Storage permission not granted!</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<!--
|
||||
<style name="AppTheme.LaunchTheme" parent="AppTheme">
|
||||
<item name="android:windowBackground">@drawable/launch</item>
|
||||
</style>
|
||||
-->
|
||||
|
||||
<style name="Theme.AppCompat.Translucent" parent="Theme.AppCompat.NoActionBar">
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
|
|
@ -11,10 +17,12 @@
|
|||
|
||||
<style name="PlayButtonCard" parent="CardView.Dark" />
|
||||
|
||||
<!--
|
||||
<style name="FlyingGayDialog" parent="Theme.MaterialComponents.DayNight.Dialog.FixedSize">
|
||||
<item name="windowNoTitle">true</item>
|
||||
<item name="android:windowActionBar">false</item>
|
||||
</style>
|
||||
-->
|
||||
|
||||
<!--<style name="AppTheme.BottomSheetDialog" parent="Theme.MaterialComponents.Light.BottomSheetDialog" />-->
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue