Skip to content

Commit

Permalink
dark mode: reduce contrast of colors
Browse files Browse the repository at this point in the history
- change background from #000 to #1f1f1f
- change text color from #ffffff to #e0e0e0
- dashboard: customize Sleeps and Daily colors

Fixes <#506>.
  • Loading branch information
vmiklos committed Nov 8, 2024
1 parent b41089d commit ab06994
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/src/main/res/values-night/colors.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="textColor">#ffffff</color>
<color name="colorPrimary">#000</color>
<color name="colorPrimaryDark">#000</color>
<color name="textColor">#e0e0e0</color>
<color name="colorPrimary">#1f1f1f</color>
<color name="colorPrimaryDark">#1f1f1f</color>
<color name="colorAccent">#D81B60</color>
<color name="colorBackground">#000000</color>
<color name="colorBackground">#1f1f1f</color>
<color name="colorSurface">#1E1E1E</color>

<!-- FAB color -->
<color name="colorFabPrimary">#613583</color>
<color name="colorFabAccent">#463A31</color>

<!-- Dashboard color-->
<color name="dash_nights">#26862e</color>
<color name="dash_daily">#8c6e1b</color>
</resources>

0 comments on commit ab06994

Please sign in to comment.