diff options
| author | Claude <noreply@anthropic.com> | 2026-04-11 09:55:54 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-11 09:55:54 +0000 |
| commit | 122e8b7b84df85b1f6a9ed50c6c66273acee911d (patch) | |
| tree | 0ff274561af606f0cd745400939cd10448aa3ad9 /android-app/app/src/main/res/values-night | |
| parent | e4ae5ac3a83f1da940ab33c93da4ed3e03cd7f14 (diff) | |
WaveView adapts sky/sea colors to light/dark mode
Day (light mode): vivid sky blue (#2B8FC4 → #87C8DF) fading into
tropical deep-sea blue (#0D7A9A → #074B68) — evokes a clear Kona
afternoon with deep Pacific below. Shimmer is bright white sunlight
on water (#50FFFFFF).
Night (dark mode): retains the existing dark charcoal sky (#1C1B1F →
#162433) and midnight navy sea (#0B3050 → #0D2137) with blue shimmer.
Colors are defined as adaptive color resources (values/ and values-night/)
and read in WaveView.onSizeChanged() and paint init instead of hardcoded
Color.parseColor() calls.
https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX
Diffstat (limited to 'android-app/app/src/main/res/values-night')
| -rw-r--r-- | android-app/app/src/main/res/values-night/colors.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/values-night/colors.xml b/android-app/app/src/main/res/values-night/colors.xml index 4d9faee..b3f8669 100644 --- a/android-app/app/src/main/res/values-night/colors.xml +++ b/android-app/app/src/main/res/values-night/colors.xml @@ -29,4 +29,12 @@ <color name="instrument_text_secondary">#9A94A0</color> <color name="instrument_background">#1C1B1F</color> <color name="instrument_card_background">#2B2930</color> + + <!-- WaveView — night: dark sky + midnight ocean --> + <color name="wave_sky_top">#1C1B1F</color> + <color name="wave_sky_bottom">#162433</color> + <color name="wave_sea_top">#0B3050</color> + <color name="wave_sea_bottom">#0D2137</color> + <color name="wave_shimmer">#4D6FC3E8</color> + <color name="wave_whitecap">#80FFFFFF</color> </resources> |
