We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3996325 + 09a83c5 commit 6ade9beCopy full SHA for 6ade9be
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