diff --git a/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/ThemeBrowserAdapter.kt b/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/ThemeBrowserAdapter.kt index d0f43958664..b3bb829f4ba 100644 --- a/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/ThemeBrowserAdapter.kt +++ b/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/ThemeBrowserAdapter.kt @@ -44,10 +44,10 @@ class ThemeBrowserAdapter { append(CssVariable.TextColorLight, theme.emptyText) append(CssVariable.TextColorDisabled, theme.inactiveText) - append(CssVariable.Background, bg) + append(CssVariable.Background, theme.background) append(CssVariable.BackgroundAlt, altBg) append(CssVariable.CardBackground, bg) - append(CssVariable.CardBackgroundAlt, altBg) + append(CssVariable.CardBackgroundAlt, theme.editorBackground) append(CssVariable.BorderDefault, theme.border) append(CssVariable.BorderFocused, theme.inputBorderFocused) append(CssVariable.BorderUnfocused, theme.inputBorderUnfocused)