-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update theming + Ensure the name is the same overall
- Loading branch information
Showing
5 changed files
with
29 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.