CountdownCanvasView ring progress and track now use themed color resources (md_color_ring_progress/md_color_ring_track) instead of hardcoded Material3 purple, so they stay green in both light and dark mode. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
14 lines
629 B
XML
14 lines
629 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<color name="md_theme_dark_primary">#A5D6A7</color>
|
|
<color name="md_theme_dark_primaryContainer">#2E7D32</color>
|
|
<color name="md_theme_dark_secondary">#869F7C</color>
|
|
|
|
<style name="Theme.CountdownTimer" parent="Theme.Material3.DayNight.NoActionBar">
|
|
<item name="colorPrimary">@color/md_theme_dark_primary</item>
|
|
<item name="colorSecondary">@color/md_theme_dark_secondary</item>
|
|
<item name="android:statusBarColor">@color/color_gradient_start</item>
|
|
<item name="android:windowLightStatusBar">false</item>
|
|
</style>
|
|
</resources>
|