diff --git a/data-room-ui/packages/js/utils/themeFormatting.js b/data-room-ui/packages/js/utils/themeFormatting.js index ca56dd00..feb948b1 100644 --- a/data-room-ui/packages/js/utils/themeFormatting.js +++ b/data-room-ui/packages/js/utils/themeFormatting.js @@ -13,7 +13,7 @@ export function settingToTheme (config, type) { if (['dark', 'light'].includes(type)) { const theme = { dark: { ...config?.theme?.dark }, light: { ...config?.theme?.light } } config.setting.forEach((setItem) => { - if (['gradual', 'colorPicker'].includes(setItem.type)) { + if (['gradual', 'colorPicker', 'colorSelect'].includes(setItem.type)) { theme[type][setItem.field] = setItem.value } })