diff --git a/packages/mercury/README.md b/packages/mercury/README.md index d9f715134..8faab2472 100644 --- a/packages/mercury/README.md +++ b/packages/mercury/README.md @@ -87,6 +87,7 @@ npm i @genexus/mercury ```scss $icons-path: "assets/custom/path/icons/"; $font-face-path: "assets/custom/path/fonts/"; + $globant-colors: false; ``` 3. Run the following command to transpile the bundles with the new path for the assets: diff --git a/packages/mercury/src/bundles/scss/base/base.scss b/packages/mercury/src/bundles/scss/base/base.scss index df18e019c..0bfd24d22 100644 --- a/packages/mercury/src/bundles/scss/base/base.scss +++ b/packages/mercury/src/bundles/scss/base/base.scss @@ -6,7 +6,7 @@ $light-theme: true, $dark-theme: true, - $globant-colors: true, + $globant-colors: $globant-colors, $font-face: true, $font-face-path: $font-face-path, diff --git a/packages/mercury/src/config.scss b/packages/mercury/src/config.scss index 55bb3e925..cfaedbe77 100644 --- a/packages/mercury/src/config.scss +++ b/packages/mercury/src/config.scss @@ -3,3 +3,4 @@ $icons-path: "./assets/icons/"; $font-face-path: "./assets/fonts/"; +$globant-colors: false;