From cf7634858ff9e86844d21e8edb9d2a13a14f1cb0 Mon Sep 17 00:00:00 2001 From: Jurre de Ruiter Date: Mon, 18 Nov 2024 17:19:11 +0100 Subject: [PATCH 1/2] Changed default info color on dark themes to be blue, instead of gray --- .../bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json | 4 ++++ .../services/amazonq/webview/theme/EditorThemeAdapter.kt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json 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..97264ccf1d0 --- /dev/null +++ b/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json @@ -0,0 +1,4 @@ +{ + "type" : "bugfix", + "description" : "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), From 540402b5ee82ac4753c4932fd29198effca52860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Jurre=20de=20Ruiter?= <62119716+Jurredr@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:38:05 +0100 Subject: [PATCH 2/2] Update .changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json Co-authored-by: Richard Li <742829+rli@users.noreply.github.com> --- .../bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json b/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json index 97264ccf1d0..22044ad184e 100644 --- a/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json +++ b/.changes/next-release/bugfix-df4f6f49-36d7-487b-8a3f-591d32a70b60.json @@ -1,4 +1,4 @@ { "type" : "bugfix", - "description" : "Changed default info color on dark themes to be blue, instead of gray" + "description" : "Amazon Q Chat: Changed default info color on dark themes to be blue, instead of gray" } \ No newline at end of file