diff --git a/docs/demo/theme.ts b/docs/demo/theme.ts index dd2cc46dd..8f1c278e1 100644 --- a/docs/demo/theme.ts +++ b/docs/demo/theme.ts @@ -179,6 +179,7 @@ export const theme: ConfigBase['theme'] = { }, panel: { backgroundColor: 'var(--tk-elements-panel-backgroundColor)', + textColor: 'var(--tk-elements-panel-textColor)', header: { backgroundColor: 'var(--tk-elements-panel-header-backgroundColor)', textColor: 'var(--tk-elements-panel-header-textColor)', diff --git a/packages/astro/src/default/styles/variables.css b/packages/astro/src/default/styles/variables.css index cfbaf52fa..863e625c0 100644 --- a/packages/astro/src/default/styles/variables.css +++ b/packages/astro/src/default/styles/variables.css @@ -175,6 +175,7 @@ /* Panel */ --tk-elements-panel-backgroundColor: var(--tk-elements-app-backgroundColor); + --tk-elements-panel-textColor: var(--tk-elements-app-textColor); /* Panel > Header */ --tk-elements-panel-header-backgroundColor: var(--tk-background-secondary); diff --git a/packages/astro/src/theme.ts b/packages/astro/src/theme.ts index 4a5bafef8..860997705 100644 --- a/packages/astro/src/theme.ts +++ b/packages/astro/src/theme.ts @@ -179,6 +179,7 @@ export const theme: ConfigBase['theme'] = { }, panel: { backgroundColor: 'var(--tk-elements-panel-backgroundColor)', + textColor: 'var(--tk-elements-panel-textColor)', header: { backgroundColor: 'var(--tk-elements-panel-header-backgroundColor)', textColor: 'var(--tk-elements-panel-header-textColor)', diff --git a/packages/components/react/src/BootScreen.tsx b/packages/components/react/src/BootScreen.tsx index a9980f9e8..a4edca6cb 100644 --- a/packages/components/react/src/BootScreen.tsx +++ b/packages/components/react/src/BootScreen.tsx @@ -11,12 +11,7 @@ export function BootScreen({ className, tutorialStore }: Props) { const steps = useStore(tutorialStore.steps); return ( -
+
{steps ? (