From 122e8b7b84df85b1f6a9ed50c6c66273acee911d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 11 Apr 2026 09:55:54 +0000 Subject: WaveView adapts sky/sea colors to light/dark mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- android-app/app/src/main/res/layout/layout_instruments_sheet.xml | 3 +-- android-app/app/src/main/res/values-night/colors.xml | 8 ++++++++ android-app/app/src/main/res/values/colors.xml | 8 ++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) (limited to 'android-app/app/src/main/res') diff --git a/android-app/app/src/main/res/layout/layout_instruments_sheet.xml b/android-app/app/src/main/res/layout/layout_instruments_sheet.xml index e14b468..3a4adf1 100644 --- a/android-app/app/src/main/res/layout/layout_instruments_sheet.xml +++ b/android-app/app/src/main/res/layout/layout_instruments_sheet.xml @@ -159,10 +159,9 @@ - + #9A94A0 #1C1B1F #2B2930 + + + #1C1B1F + #162433 + #0B3050 + #0D2137 + #4D6FC3E8 + #80FFFFFF diff --git a/android-app/app/src/main/res/values/colors.xml b/android-app/app/src/main/res/values/colors.xml index a470c0c..2df4109 100755 --- a/android-app/app/src/main/res/values/colors.xml +++ b/android-app/app/src/main/res/values/colors.xml @@ -48,6 +48,14 @@ #FF9800 #F44336 + + #2B8FC4 + #87C8DF + #0D7A9A + #074B68 + #50FFFFFF + #80FFFFFF + #FFFF0000 #FFBB0000 -- cgit v1.2.3