From fce253f704bdd5ff1bdc59ee0910fea32dfb5537 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Fri, 9 Oct 2020 18:01:47 -0700 Subject: [PATCH] fix(css): white should be the default theme, not g10 --- scripts/build-css.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build-css.js b/scripts/build-css.js index feb04827..33c5d821 100644 --- a/scripts/build-css.js +++ b/scripts/build-css.js @@ -46,11 +46,11 @@ const themes = { @include carbon--theme(); `, all: ` - :root[theme="white"] { + :root { @include carbon--theme($carbon--theme--white, true); } - - :root { + + :root[theme="g10"] { @include carbon--theme($carbon--theme--g10, true); }