Skip to content

Commit 28df8ef

Browse files
committed
feedbak
1 parent 9a03746 commit 28df8ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ data class AmazonQTheme(
1717
val inactiveText: Color,
1818
val linkText: Color,
1919
val lightText: Color,
20-
val watermarkText: Color,
20+
val emptyText: Color,
2121

2222
val background: Color,
2323
val border: Color,

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
@@ -125,7 +125,7 @@ class EditorThemeAdapter {
125125
editorProperty = currentScheme.foregroundColor(DefaultLanguageHighlighterColors.INSTANCE_FIELD),
126126
editorClassName = currentScheme.foregroundColor(DefaultLanguageHighlighterColors.CLASS_NAME),
127127
lightText = themeColor("TextField.inactiveForeground", default = 0xA8ADBD, darkDefault = 0x5A5D63),
128-
watermarkText = themeColor("TextField.inactiveForeground", default = 0xA8ADBD, darkDefault = 0x5A5D63),
128+
emptyText = themeColor("TextField.inactiveForeground", default = 0xA8ADBD, darkDefault = 0x5A5D63),
129129
inputBorderFocused = themeColor("ActionButton.focusedBorderColor", default = 0x4682FA, darkDefault = 0x3574f0),
130130
inputBorderUnfocused = themeColor("TextField.borderColor", default = 0xEBECF0, darkDefault = 0x4E5157),
131131
)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ class ThemeBrowserAdapter {
4040
append(CssVariable.TextColorStrong, theme.textFieldForeground)
4141
append(CssVariable.TextColorInput, theme.textFieldForeground)
4242
append(CssVariable.TextColorLink, theme.linkText)
43-
append(CssVariable.TextColorWeak, theme.watermarkText)
44-
append(CssVariable.TextColorLight, theme.watermarkText)
43+
append(CssVariable.TextColorWeak, theme.emptyText)
44+
append(CssVariable.TextColorLight, theme.emptyText)
4545
append(CssVariable.TextColorDisabled, theme.inactiveText)
4646

4747
append(CssVariable.Background, bg)

0 commit comments

Comments
 (0)