From 028cc74970520331f2a5974b2688b02edb8c2f94 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Mon, 2 Apr 2012 15:35:18 +0400 Subject: [PATCH] Changed highlighting for auto-casted value from green foreground to light green background. --- .../jetbrains/jet/plugin/highlighter/JetHighlightingColors.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/src/org/jetbrains/jet/plugin/highlighter/JetHighlightingColors.java b/idea/src/org/jetbrains/jet/plugin/highlighter/JetHighlightingColors.java index b25f4e589b8..4cd1f3171a8 100644 --- a/idea/src/org/jetbrains/jet/plugin/highlighter/JetHighlightingColors.java +++ b/idea/src/org/jetbrains/jet/plugin/highlighter/JetHighlightingColors.java @@ -218,7 +218,7 @@ public class JetHighlightingColors { public static final TextAttributesKey AUTO_CASTED_VALUE = TextAttributesKey.createTextAttributesKey( "KOTLIN_AUTO_CASTED_VALUE", - new TextAttributes(STRING.getDefaultAttributes().getForegroundColor(), null, null, null, Font.PLAIN) + new TextAttributes(null, new Color(0xdbffdb), null, null, Font.PLAIN) ); public static final TextAttributesKey LABEL = TextAttributesKey.createTextAttributesKey(