Skip to content

Commit 0743eb7

Browse files
Changed the foreground color of the box labels showing the percentages for Code, Complexity, Achitecture, and Style from black to white because for some reason on Windows (10) systems black as foreground color doesn't seem to work (see #37) (#600)
Signed-off-by: Jan-Christoph Ihrens <[email protected]> Signed-off-by: Jan-Christoph Ihrens <[email protected]>
1 parent 4d00775 commit 0743eb7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Application/Console/Formatters/Console.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,25 @@ final class Console implements Formatter
5151

5252
private const QUALITY = <<<EOD
5353
<%quality_color%>%block_size%</>
54-
<fg=black;options=bold;%quality_color%> %quality% </>
54+
<fg=white;options=bold;%quality_color%> %quality% </>
5555
<%quality_color%>%block_size%</>
5656
EOD;
5757

5858
private const COMPLEXITY = <<<EOD
5959
<%complexity_color%>%block_size%</>
60-
<fg=black;options=bold;%complexity_color%> %complexity% </>
60+
<fg=white;options=bold;%complexity_color%> %complexity% </>
6161
<%complexity_color%>%block_size%</>
6262
EOD;
6363

6464
private const STRUCTURE = <<<EOD
6565
<%structure_color%>%block_size%</>
66-
<fg=black;options=bold;%structure_color%> %structure% </>
66+
<fg=white;options=bold;%structure_color%> %structure% </>
6767
<%structure_color%>%block_size%</>
6868
EOD;
6969

7070
private const STYLE = <<<EOD
7171
<%style_color%>%block_size%</>
72-
<fg=black;options=bold;%style_color%> %style% </>
72+
<fg=white;options=bold;%style_color%> %style% </>
7373
<%style_color%>%block_size%</>
7474
EOD;
7575

0 commit comments

Comments
 (0)