From 3d65158a64e8f18a4b8e7f3aa96a2bc094ca6f4c Mon Sep 17 00:00:00 2001 From: Simon Brown Date: Sun, 21 Jun 2020 17:05:51 +0100 Subject: [PATCH] Make the default background white for infrastructure nodes. --- structurizr-core/src/com/structurizr/view/Styles.java | 1 + 1 file changed, 1 insertion(+) diff --git a/structurizr-core/src/com/structurizr/view/Styles.java b/structurizr-core/src/com/structurizr/view/Styles.java index 3f50f847..265b5533 100644 --- a/structurizr-core/src/com/structurizr/view/Styles.java +++ b/structurizr-core/src/com/structurizr/view/Styles.java @@ -65,6 +65,7 @@ public void addDefaultStyles() { addElementStyle(Tags.CONTAINER).background("#438dd5").color("#ffffff"); addElementStyle(Tags.COMPONENT).background("#85bbf0").color("#000000"); addElementStyle(Tags.PERSON).background("#08427b").color("#ffffff").shape(Shape.Person); + addElementStyle(Tags.INFRASTRUCTURE_NODE).background("#ffffff"); } public Collection getRelationships() {