Skip to content

Commit

Permalink
Add 'wazuh' themed assets for light and dark color schemes, ensuring …
Browse files Browse the repository at this point in the history
…proper handling in the theme configuration
  • Loading branch information
guidomodarelli committed Dec 24, 2024
1 parent 273db7f commit 6d4f89a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/server/rendering/views/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ export const THEME_SOURCES: {
[ThemeColorSchemes.LIGHT]: '@elastic/eui/dist/eui_theme_v9_light.json',
[ThemeColorSchemes.DARK]: '@elastic/eui/dist/eui_theme_v9_dark.json',
},
default: {
v8: {
[ThemeColorSchemes.LIGHT]: '@elastic/eui/dist/eui_theme_next_light.json',
[ThemeColorSchemes.DARK]: '@elastic/eui/dist/eui_theme_next_dark.json',
},
default: {
[ThemeColorSchemes.LIGHT]: '@elastic/eui/dist/eui_theme_wazuh_light.json',
[ThemeColorSchemes.DARK]: '@elastic/eui/dist/eui_theme_wazuh_dark.json',
},
});

export const getThemeDefinitionSource = (
Expand Down

0 comments on commit 6d4f89a

Please sign in to comment.