diff --git a/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json b/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json new file mode 100644 index 00000000000..22044ad184e --- /dev/null +++ b/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json @@ -0,0 +1,4 @@ +{ + "type" : "bugfix", + "description" : "Amazon Q Chat: Changed default info color on dark themes to be blue, instead of gray" +} \ No newline at end of file diff --git a/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/EditorThemeAdapter.kt b/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/EditorThemeAdapter.kt index 3727ea17bb9..4f56b127994 100644 --- a/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/EditorThemeAdapter.kt +++ b/plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/theme/EditorThemeAdapter.kt @@ -108,7 +108,7 @@ class EditorThemeAdapter { secondaryButtonBackground = themeColor("Button.startBackground", default = 0xFFFFFF, darkDefault = 0x4C5052), secondaryButtonForeground = themeColor("Button.foreground", default = 0x000000, darkDefault = 0xBBBBBB), - info = themeColor("ProgressBar.progressColor", default = 0x1E82E6, darkDefault = 0xA0A0A0), + info = themeColor("ProgressBar.progressColor", default = 0x1E82E6, darkDefault = 0x1E82E6), success = themeColor("ProgressBar.passedColor", default = 0x34B171, darkDefault = 0x008F50), warning = themeColor("Component.warningFocusColor", default = 0xE2A53A), error = themeColor("ProgressBar.failedColor", default = 0xD64F4F, darkDefault = 0xE74848),