Skip to content

Commit

Permalink
Update Colors according to Archiate off. Specs
Browse files Browse the repository at this point in the history
This is mainly a proposal.
The colors at the moment are sometimes quite "loud" and on some it's a bit hard to read the (black) text on it. The colors from the Archimate Specifications (https://pubs.opengroup.org/architecture/archimate3-doc/chap03.html#_Toc10045294) are more subtle and you can better read text on it. It is not necessary to change the colors of the sprites too. But that's just my opinion.
  • Loading branch information
boessu authored Apr 10, 2020
1 parent 85ad30b commit b2f3330
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/net/sourceforge/plantuml/ugraphic/color/HColorSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,13 @@ private HColorSet() {
register("Yellow", "#FFFF00");
register("YellowGreen", "#9ACD32");
// Archimate
register("BUSINESS", "#FFFF00");
register("APPLICATION", "#A9DCDF");
register("MOTIVATION", "#B19CD9");
register("STRATEGY", "#F6E4CC");
register("TECHNOLOGY", "#90EE90");
register("PHYSICAL", "#CCFFCC");
register("IMPLEMENTATION", "#FFA6BF");
register("BUSINESS", "#FFFFCC");
register("APPLICATION", "#C2F0FF");
register("MOTIVATION", "#EFEFFF");
register("STRATEGY", "#F8E7C0");
register("TECHNOLOGY", "#C9FFC9");
register("PHYSICAL", "#97FF97");
register("IMPLEMENTATION", "#FFE0E0");
}

private void register(String s, String color) {
Expand Down

0 comments on commit b2f3330

Please sign in to comment.