Fixed today text color (in meetings) in dark mode

This commit is contained in:
Sylvain Berfini 2024-12-16 15:37:21 +01:00
parent 0497237630
commit 0571862142
3 changed files with 3 additions and 3 deletions

View file

@ -113,7 +113,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{model.meetingDayNumber, default=`19`}"
android:textColor="?attr/color_main2_000"
android:textColor="?attr/color_on_main"
android:textSize="20sp"
android:paddingBottom="4dp"
app:layout_constraintStart_toStartOf="@id/today_background"

View file

@ -73,7 +73,7 @@
android:layout_height="wrap_content"
android:text="@{model.dayNumber, default=`19`}"
android:visibility="@{model.firstMeetingOfTheDay ? View.VISIBLE : View.INVISIBLE}"
android:textColor="@{model.isToday ? @color/main2_000 : @color/main2_500, default=`#ffffff`}"
android:textColor="@{model.isToday ? @color/bc_white : @color/main2_500, default=@color/bc_white}"
android:textSize="20sp"
android:paddingBottom="4dp"
app:layout_constraintStart_toStartOf="@id/today_background"

View file

@ -63,7 +63,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{model.dayNumber, default=`19`}"
android:textColor="?attr/color_main2_000"
android:textColor="?attr/color_on_main"
android:textSize="20sp"
android:paddingBottom="4dp"
app:layout_constraintStart_toStartOf="@id/today_background"