This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed77d4d
commit 4ba60c2
Showing
4 changed files
with
22 additions
and
30 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 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,22 +1,31 @@ | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<!-- Base application theme. --> | ||
<style name="Theme.SmartCrutch" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<style name="Theme.SmartCrutch.DayNight" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<!-- Primary brand color. --> | ||
<item name="colorPrimary">@color/Blue</item> | ||
<item name="colorPrimaryVariant">@color/teal_700</item> | ||
<item name="colorPrimaryVariant">@color/RoyalBlue</item> | ||
<item name="colorOnPrimary">@color/White</item> | ||
|
||
<!-- Secondary brand color. --> | ||
<item name="colorSecondary">@color/teal_200</item> | ||
<item name="colorSecondaryVariant">@color/teal_700</item> | ||
<item name="colorOnSecondary">@color/White</item> | ||
|
||
<!-- Status bar color. --> | ||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item> | ||
<!-- Customize your theme here. --> | ||
<item name="cornerSize">8dp</item> | ||
<item name="android:statusBarColor">?attr/backgroundColor</item> | ||
<item name="android:windowLightStatusBar">true</item> | ||
|
||
<item name="cornerSize">12dp</item> | ||
|
||
<!-- Make layout above navigation bar--> | ||
<item name="android:windowTranslucentStatus">true</item> | ||
<item name="android:windowTranslucentNavigation">true</item> | ||
<item name="android:fitsSystemWindows">true</item> | ||
</style> | ||
|
||
<style name="Theme.SmartCrutch.DayNight.NoActionBar" parent="Theme.SmartCrutch.DayNight"> | ||
<item name="windowNoTitle">true</item> | ||
<item name="windowActionBar">false</item> | ||
</style> | ||
</resources> |