Skip to content

Commit e216d55

Browse files
authored
fix(amazonq): default info color on dark themes changed to blue (#5096)
The default fallback info color for AmazonQ was set to #A0A0A0 for dark themes. This is a gray color, but the info color should be blue by default, so that in themes that don't set this variable (like Darcula), a blue color is used as intended.
1 parent 2a8fd52 commit e216d55

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q Chat: Changed default info color on dark themes to be blue, instead of gray"
4+
}

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/EditorThemeAdapter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class EditorThemeAdapter {
108108
secondaryButtonBackground = themeColor("Button.startBackground", default = 0xFFFFFF, darkDefault = 0x4C5052),
109109
secondaryButtonForeground = themeColor("Button.foreground", default = 0x000000, darkDefault = 0xBBBBBB),
110110

111-
info = themeColor("ProgressBar.progressColor", default = 0x1E82E6, darkDefault = 0xA0A0A0),
111+
info = themeColor("ProgressBar.progressColor", default = 0x1E82E6, darkDefault = 0x1E82E6),
112112
success = themeColor("ProgressBar.passedColor", default = 0x34B171, darkDefault = 0x008F50),
113113
warning = themeColor("Component.warningFocusColor", default = 0xE2A53A),
114114
error = themeColor("ProgressBar.failedColor", default = 0xD64F4F, darkDefault = 0xE74848),

0 commit comments

Comments
 (0)