Add hidden diagnostic skin toggle

- Open a hidden diagnostics dialog after tapping the header seven times within fifteen seconds.
- Let the diagnostics dialog toggle the pane color/stripe skin on demand.
- Restore the normal app background and pane colors by default.
- Stop Scaffold from preserving the bottom navigation-bar inset while the keyboard is visible.
- Apply bottom navigation padding only when the IME is not open.
This commit is contained in:
Joe Tretter
2026-05-13 18:35:36 -05:00
parent bd6568357f
commit 618e6e36bd
7 changed files with 142 additions and 21 deletions

View File

@@ -6,7 +6,8 @@ import androidx.compose.ui.graphics.Color
val PanelPrimary = Color(0xFF121212)
val PanelSecondary = Color(0xFF1E1E1E)
val PanelTertiary = Color(0xFF262626)
val AppBackground = Color(0xFF2D1745)
val AppBackground = PanelSecondary
val DiagnosticAppBackground = Color(0xFF2D1745)
val TerminalBackground = Color(0xFF050505)
val TextPrimary = Color(0xFFFFFFFF)
val TextSecondary = Color(0xFFE6E6E6)