From 2f6747de85f85947ebf986807159c84eb2d9b838 Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Fri, 20 Oct 2017 03:52:54 -0500 Subject: [PATCH] feat(package): Add default theme config to patternlab-config.json closes #726 --- patternlab-config.json | 7 ++++++- test/util/patternlab-config.json | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/patternlab-config.json b/patternlab-config.json index ef5ea68a8..dc3021cc6 100644 --- a/patternlab-config.json +++ b/patternlab-config.json @@ -62,5 +62,10 @@ "markupOnly": ".markup-only" }, "cleanOutputHtml": true, - "exportToGraphViz": false + "exportToGraphViz": false, + "theme": { + "color": "dark", + "density": "compact", + "layout": "horizontal" + } } diff --git a/test/util/patternlab-config.json b/test/util/patternlab-config.json index 5c2f66ec2..720975302 100644 --- a/test/util/patternlab-config.json +++ b/test/util/patternlab-config.json @@ -69,5 +69,10 @@ }, "cleanOutputHtml": true, "exportToGraphViz": false, - "cleanPublic": true + "cleanPublic": true, + "theme": { + "color": "dark", + "density": "compact", + "layout": "horizontal" + } }