Replaced CYAN with TURQUOISE.
This commit is contained in:
parent
dd593ceb14
commit
b479308383
2 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ public class Htmlizer
|
||||||
pie.add("Dépôt cloné", stats.getClonerepoCount(), ChartColor.ORANGE);
|
pie.add("Dépôt cloné", stats.getClonerepoCount(), ChartColor.ORANGE);
|
||||||
pie.add("Archive", stats.getArchiveCount(), ChartColor.RED);
|
pie.add("Archive", stats.getArchiveCount(), ChartColor.RED);
|
||||||
pie.add("Sources", stats.getSourcesCount(), ChartColor.GREY);
|
pie.add("Sources", stats.getSourcesCount(), ChartColor.GREY);
|
||||||
pie.add("Containeur", stats.getContainerCount(), ChartColor.CYAN);
|
pie.add("Containeur", stats.getContainerCount(), ChartColor.TURQUOISE);
|
||||||
pie.add("Inconnu", stats.getUnknownCount(), ChartColor.BLUE);
|
pie.add("Inconnu", stats.getUnknownCount(), ChartColor.BLUE);
|
||||||
pie.setLegendPosition(Position.RIGHT);
|
pie.setLegendPosition(Position.RIGHT);
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,8 @@ public enum ChartColor
|
||||||
RED("#ff6384"),
|
RED("#ff6384"),
|
||||||
ORANGE("#ff9f40"),
|
ORANGE("#ff9f40"),
|
||||||
YELLOW("#ffcd56"),
|
YELLOW("#ffcd56"),
|
||||||
|
TURQUOISE("#40E0D0"),
|
||||||
GREEN("#4bc0c0"),
|
GREEN("#4bc0c0"),
|
||||||
CYAN("#00ffff"),
|
|
||||||
BLUE("#36a2eb"),
|
BLUE("#36a2eb"),
|
||||||
PURPLE("#9966ff"),
|
PURPLE("#9966ff"),
|
||||||
GREY("#c9cbcf");
|
GREY("#c9cbcf");
|
||||||
|
|
Loading…
Reference in a new issue