chore: Use a defined default color for categories
This commit is contained in:
parent
224f8642bb
commit
6d6e1945bb
|
@ -46,7 +46,7 @@
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:text="@string/select_color"
|
android:text="@string/select_color"
|
||||||
app:icon="@drawable/ic_circle"
|
app:icon="@drawable/ic_circle"
|
||||||
app:iconTint="@android:color/holo_blue_dark"
|
app:iconTint="@color/category_indicator_color"
|
||||||
app:cornerRadius="8dp"
|
app:cornerRadius="8dp"
|
||||||
style="@style/Widget.MaterialComponents.Button.OutlinedButton" />
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton" />
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
android:id="@+id/colorIndicator"
|
android:id="@+id/colorIndicator"
|
||||||
android:layout_width="8dp"
|
android:layout_width="8dp"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:background="@android:color/holo_blue_dark"
|
android:background="@color/category_indicator_color"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
app:layout_constraintStart_toStartOf="parent" />
|
||||||
|
|
|
@ -17,6 +17,6 @@
|
||||||
app:chipIconTint="?android:attr/textColorSecondary"
|
app:chipIconTint="?android:attr/textColorSecondary"
|
||||||
app:chipBackgroundColor="@android:color/transparent"
|
app:chipBackgroundColor="@android:color/transparent"
|
||||||
app:chipSurfaceColor="@android:color/transparent"
|
app:chipSurfaceColor="@android:color/transparent"
|
||||||
app:chipStrokeColor="@android:color/holo_blue_dark"
|
app:chipStrokeColor="@color/category_indicator_color"
|
||||||
app:closeIconEnabled="false"
|
app:closeIconEnabled="false"
|
||||||
tools:text="Work" />
|
tools:text="Work" />
|
||||||
|
|
|
@ -7,5 +7,6 @@
|
||||||
<color name="splash_dark_background">#121212</color> <!-- Dark gray -->
|
<color name="splash_dark_background">#121212</color> <!-- Dark gray -->
|
||||||
|
|
||||||
<color name="event_indicator_color">#0035D0</color>
|
<color name="event_indicator_color">#0035D0</color>
|
||||||
|
<color name="category_indicator_color">#0035D0</color>
|
||||||
<color name="unreadIndicator">#bb6633</color>
|
<color name="unreadIndicator">#bb6633</color>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue