Skip to content

Commit

Permalink
Update theming + Ensure the name is the same overall
Browse files Browse the repository at this point in the history
  • Loading branch information
Lloir committed Sep 27, 2023
1 parent 9e766a7 commit 1bf2d1e
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 43 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:label="Orna Assistant"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Ornaassistant">
Expand All @@ -36,7 +36,7 @@
<service
android:name=".MyAccessibilityService"
android:exported="false"
android:label="@string/accessibility_service_label"
android:label="Orna Assistant"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
Expand Down
16 changes: 0 additions & 16 deletions app/src/main/res/values-night/themes.xml

This file was deleted.

27 changes: 18 additions & 9 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#E91E63</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="overlayWhite">#FFFFFF</color>
<!-- Color for the app's primary branding -->
<color name="colorPrimary">#3F51B5</color>
<!-- Darker shade of the primary color, used for status bar and app bar -->
<color name="colorPrimaryDark">#303F9F</color>
<!-- Accent color, used for floating action buttons and highlights -->
<color name="colorAccent">#FF4081</color>
<!-- Standard text color -->
<color name="colorText">#000000</color>
<!-- Secondary text color, often a lighter shade -->
<color name="colorTextSecondary">#757575</color>
<!-- Background color for the app -->
<color name="colorBackground">#FFFFFF</color>
<!-- Divider color, used to separate UI elements -->
<color name="colorDivider">#BDBDBD</color>

<!-- Overlay -->
<color name="overlayShadowColor">#000000</color>
</resources>
<color name="overlayWhite">#FFFFFF</color>
</resources>
9 changes: 9 additions & 0 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Ornaassistant" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
16 changes: 0 additions & 16 deletions app/src/main/res/values/themes.xml

This file was deleted.

0 comments on commit 1bf2d1e

Please sign in to comment.