- Replace broken chipBackground theme style with a color state-list selector (res/color/chip_duration_bg.xml) using chipBackgroundColor attribute directly on each Chip - Green (#81C784) when checked, light gray (#E8E8E8) when unchecked - Add minWidth="56dp" to give chips proper width Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
15 lines
740 B
XML
15 lines
740 B
XML
<resources>
|
|
<style name="Theme.CountdownTimer" parent="Theme.Material3.DayNight.NoActionBar">
|
|
<item name="colorPrimary">@color/md_theme_light_primary</item>
|
|
<item name="colorPrimaryContainer">@color/md_theme_light_primaryContainer</item>
|
|
<item name="colorSecondary">@color/md_theme_light_secondary</item>
|
|
<item name="android:statusBarColor">@color/color_gradient_start</item>
|
|
<item name="android:windowLightStatusBar">true</item>
|
|
</style>
|
|
|
|
<color name="md_theme_light_primary">#2E7D32</color>
|
|
<color name="md_theme_light_primaryContainer">#81C784</color>
|
|
<color name="md_theme_light_secondary">#4C6842</color>
|
|
<color name="md_theme_light_surface">#F1F8E9</color>
|
|
</resources>
|