chore: Use a defined default color for categories

This commit is contained in:
Peter Vacho 2025-01-05 16:14:18 +01:00
parent 224f8642bb
commit 6d6e1945bb
Signed by: school
GPG key ID: 8CFC3837052871B4
4 changed files with 4 additions and 3 deletions

View file

@ -46,7 +46,7 @@
android:layout_marginTop="16dp"
android:text="@string/select_color"
app:icon="@drawable/ic_circle"
app:iconTint="@android:color/holo_blue_dark"
app:iconTint="@color/category_indicator_color"
app:cornerRadius="8dp"
style="@style/Widget.MaterialComponents.Button.OutlinedButton" />

View file

@ -20,7 +20,7 @@
android:id="@+id/colorIndicator"
android:layout_width="8dp"
android:layout_height="0dp"
android:background="@android:color/holo_blue_dark"
android:background="@color/category_indicator_color"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

View file

@ -17,6 +17,6 @@
app:chipIconTint="?android:attr/textColorSecondary"
app:chipBackgroundColor="@android:color/transparent"
app:chipSurfaceColor="@android:color/transparent"
app:chipStrokeColor="@android:color/holo_blue_dark"
app:chipStrokeColor="@color/category_indicator_color"
app:closeIconEnabled="false"
tools:text="Work" />

View file

@ -7,5 +7,6 @@
<color name="splash_dark_background">#121212</color> <!-- Dark gray -->
<color name="event_indicator_color">#0035D0</color>
<color name="category_indicator_color">#0035D0</color>
<color name="unreadIndicator">#bb6633</color>
</resources>