diff --git a/src-docs/src/components/with_theme/theme_context.tsx b/src-docs/src/components/with_theme/theme_context.tsx index 86e21a5096..c67a912561 100644 --- a/src-docs/src/components/with_theme/theme_context.tsx +++ b/src-docs/src/components/with_theme/theme_context.tsx @@ -17,7 +17,7 @@ import { applyTheme } from '../../services'; const THEME_NAMES = OUI_THEMES.map(({ value }) => value); const defaultState = { - theme: THEME_NAMES[2], + theme: THEME_NAMES[0], changeTheme: (themeValue: OUI_THEME['value']) => { applyTheme(themeValue); },