Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit d41a598

Browse files
committed
Adds inactive icon
1 parent 42c983b commit d41a598

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed
Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
<shape xmlns:android="http://schemas.android.com/apk/res/android"
2-
android:shape="ring">
3-
<solid android:color="#000000" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:shape="oval">
5+
6+
<solid
7+
android:color="@color/solid_color" />
8+
9+
<stroke
10+
android:width="1px"
11+
android:color="@color/stroke_color" />
12+
413
<size
514
android:width="16dp"
615
android:height="16dp" />
7-
</shape>
16+
</shape>

app/src/main/res/values-night/colors.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@
2929
<color name="top_snackbar_show_button_text_color">#d26811</color>
3030
<color name="top_snackbar_bg_color">#ffffff</color>
3131
<color name="top_snackbar_text_color">#131313</color>
32+
<color name="solid_color">#262626</color>
33+
<color name="stroke_color">#FFF</color>
3234
</resources>

app/src/main/res/values/colors.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@
3232
<color name="top_snackbar_text_color">#ffffff</color>
3333
<color name="progress_background_color">#444444</color>
3434
<color name="notif_background">#009688</color>
35+
<color name="solid_color">#FFF</color>
36+
<color name="stroke_color">#000</color>
3537
</resources>

0 commit comments

Comments
 (0)