aboutsummaryrefslogtreecommitdiffstats
path: root/android/app/src/main/res/values/styles.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src/main/res/values/styles.xml')
-rw-r--r--android/app/src/main/res/values/styles.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..42d0aa7
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,16 @@
+<resources>
+ <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
+ <item name="android:textColor">@android:color/black</item>
+ <item name="android:editTextStyle">@style/ResetEditText</item>
+ </style>
+ <style name="ResetEditText" parent="@android:style/Widget.EditText">
+ <item name="android:padding">0dp</item>
+ <item name="android:textColorHint">#c8c8c8</item>
+ <item name="android:textColor">@android:color/black</item>
+ </style>
+ <style name="Theme.App.SplashScreen" parent="Theme.AppCompat.Light.NoActionBar">
+ <!-- Below line is handled by '@expo/configure-splash-screen' command and it's discouraged to modify it manually -->
+ <item name="android:windowBackground">@drawable/splashscreen</item>
+ <!-- Customize your splash screen theme here -->
+ </style>
+</resources>