Add diagnostic pane coloring

- Give each top-level pane a distinct temporary diagnostic color and stripe pattern.
- Give the root app background a separate purple diagnostic color so empty space outside panes is identifiable.
This commit is contained in:
Joe Tretter
2026-05-13 17:48:01 -05:00
parent dec1340082
commit bd6568357f
3 changed files with 59 additions and 7 deletions

View File

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