Skip to content

Commit

Permalink
update colors for both themes
Browse files Browse the repository at this point in the history
  • Loading branch information
thecattest committed May 8, 2021
1 parent b4f2518 commit 7208c0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/values-night/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<style name="Theme.LyceumReports" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorPrimaryVariant">@color/purple_600</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">@color/status_bar_night</item>
<item name="android:statusBarColor" tools:targetApi="l">@color/purple_200</item>
<!-- Customize your theme here. -->
</style>
</resources>
6 changes: 3 additions & 3 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?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="purple_200">#B39DDB</color>
<color name="purple_400">#7E57C2</color>
<color name="purple_600">#5E35B1</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<!-- Base application theme. -->
<style name="Theme.LyceumReports" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimary">@color/purple_400</item>
<!-- <item name="colorPrimary">@color/main</item>-->
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorPrimaryVariant">@color/purple_600</item>
<item name="colorOnPrimary">@color/white</item>
<!-- <item name="colorOnPrimary">@color/main_text_color</item>-->
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">@color/status_bar</item>
<item name="android:statusBarColor" tools:targetApi="l">@color/purple_400</item>
<!-- Customize your theme here. -->
</style>
</resources>

0 comments on commit 7208c0b

Please sign in to comment.