We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52279cb commit 09a83c5Copy full SHA for 09a83c5
compiler/src/dotty/tools/dotc/util/DiffUtil.scala
@@ -104,8 +104,8 @@ object DiffUtil {
104
}.mkString
105
}
106
107
- private def added(str: String): String = bgColored(str, Console.GREEN_B)
108
- private def deleted(str: String) = bgColored(str, Console.RED_B)
+ private def added(str: String): String = bgColored(str, Console.GREEN)
+ private def deleted(str: String) = bgColored(str, Console.RED)
109
private def bgColored(str: String, color: String): String = {
110
if (str.isEmpty) ""
111
else {
0 commit comments