diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 23:47:20 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 23:47:20 +0000 |
| commit | dde00c0f8e4571b6253a8c65598e1de7d905e742 (patch) | |
| tree | 2c896f997d4489e0df04a4057dbac51da2198bda /android-app/app/src/main/res/values/themes.xml | |
| parent | dea0c6d1e873eac30f9087e80026cf5127428fbf (diff) | |
fix: resolve MapLibre 11.x migration issues and layout/resource errors
Diffstat (limited to 'android-app/app/src/main/res/values/themes.xml')
| -rw-r--r-- | android-app/app/src/main/res/values/themes.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/values/themes.xml b/android-app/app/src/main/res/values/themes.xml index c23c0ab..52028de 100644 --- a/android-app/app/src/main/res/values/themes.xml +++ b/android-app/app/src/main/res/values/themes.xml @@ -14,6 +14,26 @@ <!-- Customize your theme here. --> </style> + <!-- Night Vision Theme --> + <style name="Theme.AndroidApp.NightVision" parent="Theme.MaterialComponents.NoActionBar"> + <!-- Primary brand color. --> + <item name="colorPrimary">@color/night_red_primary</item> + <item name="colorPrimaryVariant">@color/night_red_variant</item> + <item name="colorOnPrimary">@color/night_on_red</item> + <!-- Secondary brand color. --> + <item name="colorSecondary">@color/night_red_primary</item> + <item name="colorSecondaryVariant">@color/night_red_variant</item> + <item name="colorOnSecondary">@color/night_on_red</item> + <!-- Background color --> + <item name="android:colorBackground">@color/night_background</item> + <!-- Surface color --> + <item name="colorSurface">@color/night_surface</item> + <item name="colorOnSurface">@color/night_on_surface</item> + <!-- Status bar color. --> + <item name="android:statusBarColor" tools:targetApi="l">@color/night_background</item> + <!-- Customize your theme here. --> + </style> + <!-- Instrument Display Styles --> <style name="InstrumentLabel" parent="Widget.AppCompat.TextView"> <item name="android:layout_width">0dp</item> |
