Skip to content

Commit

Permalink
fix(amazonq): default info color on dark themes changed to blue (#5096)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jurredr authored Nov 22, 2024
1 parent 2a8fd52 commit e216d55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Amazon Q Chat: Changed default info color on dark themes to be blue, instead of gray"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit e216d55

Please sign in to comment.