refactor(tui): migrate dialog views to V2 themes (#37516)

This commit is contained in:
James Long 2026-07-17 12:17:11 -04:00 committed by GitHub
commit 677526d72e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 86 additions and 81 deletions

View file

@ -2,7 +2,7 @@ import { useTheme } from "../context/theme"
import { Spinner } from "./spinner"
export function Reconnecting() {
const theme = useTheme().theme
const { themeV2 } = useTheme()
return (
<box
@ -12,12 +12,12 @@ export function Reconnecting() {
right={0}
bottom={0}
left={0}
backgroundColor={theme.background}
backgroundColor={themeV2.background()}
alignItems="center"
justifyContent="center"
>
<box width={62} maxWidth="90%" flexDirection="column" alignItems="center" gap={1}>
<Spinner color={theme.textMuted}>Waiting for background service...</Spinner>
<Spinner color={themeV2.text.subdued()}>Waiting for background service...</Spinner>
</box>
</box>
)