From 8ccb1b853bd511d75784a4a42c3ec11f0cd6cba5 Mon Sep 17 00:00:00 2001 From: Josh Black Date: Fri, 11 Dec 2020 10:56:00 -0600 Subject: [PATCH] feat(colors): add support for Sass Modules (#7395) * chore(project): add .next folders to gitignore * feat(colors): add support for Sass Modules * docs(colors): add sass-modules example * docs(project): sync sass docs Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- .gitignore | 5 +- packages/colors/README.md | 7 + packages/colors/docs/sass.md | 2258 +++++++++ .../colors/examples/sass-modules/package.json | 16 + .../examples/sass-modules/src/pages/_app.js | 12 + .../examples/sass-modules/src/pages/index.js | 19 + .../examples/sass-modules/src/styles.scss | 19 + .../colors/examples/sass-modules/yarn.lock | 4022 +++++++++++++++++ packages/colors/tasks/build.js | 67 +- packages/components/docs/sass.md | 2258 +++++++++ packages/elements/docs/sass.md | 2258 +++++++++ 11 files changed, 10939 insertions(+), 2 deletions(-) create mode 100644 packages/colors/examples/sass-modules/package.json create mode 100644 packages/colors/examples/sass-modules/src/pages/_app.js create mode 100644 packages/colors/examples/sass-modules/src/pages/index.js create mode 100644 packages/colors/examples/sass-modules/src/styles.scss create mode 100644 packages/colors/examples/sass-modules/yarn.lock diff --git a/.gitignore b/.gitignore index ee9dfa78b6e0..289530fd7293 100644 --- a/.gitignore +++ b/.gitignore @@ -49,4 +49,7 @@ node_modules package-lock.json # AAT test results from DAP/Axe -results/ \ No newline at end of file +results/ + +# Directories generated by Next.js +.next diff --git a/packages/colors/README.md b/packages/colors/README.md index dde1a561b5cf..825abb8fbd07 100644 --- a/packages/colors/README.md +++ b/packages/colors/README.md @@ -143,6 +143,13 @@ If you're looking for `@carbon/colors` API documentation, check out: - [Sass](./docs/sass.md) +## 📚 Examples + +If you're looking for more examples on how to use `@carbon/colors`, we have some +examples that you can check out: + +- [sass-modules](./examples/sass-modules) + ## 🙌 Contributing We're always looking for contributors to help us fix bugs, build new features, diff --git a/packages/colors/docs/sass.md b/packages/colors/docs/sass.md index 350f9beda53a..ee6410b32806 100644 --- a/packages/colors/docs/sass.md +++ b/packages/colors/docs/sass.md @@ -11,6 +11,118 @@ - [@carbon/colors](#carboncolors) - [✅⚠️ibm--colors [mixin]](#ibm--colors-mixin) - [✅carbon--colors [mixin]](#carbon--colors-mixin) + - [✅black [variable]](#black-variable) + - [✅white [variable]](#white-variable) + - [✅black-100 [variable]](#black-100-variable) + - [✅blue-10 [variable]](#blue-10-variable) + - [✅blue-20 [variable]](#blue-20-variable) + - [✅blue-30 [variable]](#blue-30-variable) + - [✅blue-40 [variable]](#blue-40-variable) + - [✅blue-50 [variable]](#blue-50-variable) + - [✅blue-60 [variable]](#blue-60-variable) + - [✅blue-70 [variable]](#blue-70-variable) + - [✅blue-80 [variable]](#blue-80-variable) + - [✅blue-90 [variable]](#blue-90-variable) + - [✅blue-100 [variable]](#blue-100-variable) + - [✅cool-gray-10 [variable]](#cool-gray-10-variable) + - [✅cool-gray-20 [variable]](#cool-gray-20-variable) + - [✅cool-gray-30 [variable]](#cool-gray-30-variable) + - [✅cool-gray-40 [variable]](#cool-gray-40-variable) + - [✅cool-gray-50 [variable]](#cool-gray-50-variable) + - [✅cool-gray-60 [variable]](#cool-gray-60-variable) + - [✅cool-gray-70 [variable]](#cool-gray-70-variable) + - [✅cool-gray-80 [variable]](#cool-gray-80-variable) + - [✅cool-gray-90 [variable]](#cool-gray-90-variable) + - [✅cool-gray-100 [variable]](#cool-gray-100-variable) + - [✅cyan-10 [variable]](#cyan-10-variable) + - [✅cyan-20 [variable]](#cyan-20-variable) + - [✅cyan-30 [variable]](#cyan-30-variable) + - [✅cyan-40 [variable]](#cyan-40-variable) + - [✅cyan-50 [variable]](#cyan-50-variable) + - [✅cyan-60 [variable]](#cyan-60-variable) + - [✅cyan-70 [variable]](#cyan-70-variable) + - [✅cyan-80 [variable]](#cyan-80-variable) + - [✅cyan-90 [variable]](#cyan-90-variable) + - [✅cyan-100 [variable]](#cyan-100-variable) + - [✅gray-10 [variable]](#gray-10-variable) + - [✅gray-20 [variable]](#gray-20-variable) + - [✅gray-30 [variable]](#gray-30-variable) + - [✅gray-40 [variable]](#gray-40-variable) + - [✅gray-50 [variable]](#gray-50-variable) + - [✅gray-60 [variable]](#gray-60-variable) + - [✅gray-70 [variable]](#gray-70-variable) + - [✅gray-80 [variable]](#gray-80-variable) + - [✅gray-90 [variable]](#gray-90-variable) + - [✅gray-100 [variable]](#gray-100-variable) + - [✅green-10 [variable]](#green-10-variable) + - [✅green-20 [variable]](#green-20-variable) + - [✅green-30 [variable]](#green-30-variable) + - [✅green-40 [variable]](#green-40-variable) + - [✅green-50 [variable]](#green-50-variable) + - [✅green-60 [variable]](#green-60-variable) + - [✅green-70 [variable]](#green-70-variable) + - [✅green-80 [variable]](#green-80-variable) + - [✅green-90 [variable]](#green-90-variable) + - [✅green-100 [variable]](#green-100-variable) + - [✅magenta-10 [variable]](#magenta-10-variable) + - [✅magenta-20 [variable]](#magenta-20-variable) + - [✅magenta-30 [variable]](#magenta-30-variable) + - [✅magenta-40 [variable]](#magenta-40-variable) + - [✅magenta-50 [variable]](#magenta-50-variable) + - [✅magenta-60 [variable]](#magenta-60-variable) + - [✅magenta-70 [variable]](#magenta-70-variable) + - [✅magenta-80 [variable]](#magenta-80-variable) + - [✅magenta-90 [variable]](#magenta-90-variable) + - [✅magenta-100 [variable]](#magenta-100-variable) + - [✅orange-40 [variable]](#orange-40-variable) + - [✅orange-60 [variable]](#orange-60-variable) + - [✅orange-70 [variable]](#orange-70-variable) + - [✅purple-10 [variable]](#purple-10-variable) + - [✅purple-20 [variable]](#purple-20-variable) + - [✅purple-30 [variable]](#purple-30-variable) + - [✅purple-40 [variable]](#purple-40-variable) + - [✅purple-50 [variable]](#purple-50-variable) + - [✅purple-60 [variable]](#purple-60-variable) + - [✅purple-70 [variable]](#purple-70-variable) + - [✅purple-80 [variable]](#purple-80-variable) + - [✅purple-90 [variable]](#purple-90-variable) + - [✅purple-100 [variable]](#purple-100-variable) + - [✅red-10 [variable]](#red-10-variable) + - [✅red-20 [variable]](#red-20-variable) + - [✅red-30 [variable]](#red-30-variable) + - [✅red-40 [variable]](#red-40-variable) + - [✅red-50 [variable]](#red-50-variable) + - [✅red-60 [variable]](#red-60-variable) + - [✅red-70 [variable]](#red-70-variable) + - [✅red-80 [variable]](#red-80-variable) + - [✅red-90 [variable]](#red-90-variable) + - [✅red-100 [variable]](#red-100-variable) + - [✅teal-10 [variable]](#teal-10-variable) + - [✅teal-20 [variable]](#teal-20-variable) + - [✅teal-30 [variable]](#teal-30-variable) + - [✅teal-40 [variable]](#teal-40-variable) + - [✅teal-50 [variable]](#teal-50-variable) + - [✅teal-60 [variable]](#teal-60-variable) + - [✅teal-70 [variable]](#teal-70-variable) + - [✅teal-80 [variable]](#teal-80-variable) + - [✅teal-90 [variable]](#teal-90-variable) + - [✅teal-100 [variable]](#teal-100-variable) + - [✅warm-gray-10 [variable]](#warm-gray-10-variable) + - [✅warm-gray-20 [variable]](#warm-gray-20-variable) + - [✅warm-gray-30 [variable]](#warm-gray-30-variable) + - [✅warm-gray-40 [variable]](#warm-gray-40-variable) + - [✅warm-gray-50 [variable]](#warm-gray-50-variable) + - [✅warm-gray-60 [variable]](#warm-gray-60-variable) + - [✅warm-gray-70 [variable]](#warm-gray-70-variable) + - [✅warm-gray-80 [variable]](#warm-gray-80-variable) + - [✅warm-gray-90 [variable]](#warm-gray-90-variable) + - [✅warm-gray-100 [variable]](#warm-gray-100-variable) + - [✅white-0 [variable]](#white-0-variable) + - [✅yellow-20 [variable]](#yellow-20-variable) + - [✅yellow-30 [variable]](#yellow-30-variable) + - [✅yellow-40 [variable]](#yellow-40-variable) + - [✅yellow-50 [variable]](#yellow-50-variable) + - [✅colors [variable]](#colors-variable) @@ -701,3 +813,2149 @@ Define color variables - **Group**: [@carbon/colors](#carboncolors) +- **Requires**: + - [black-100 [variable]](#black-100-variable) + - [blue-10 [variable]](#blue-10-variable) + - [blue-20 [variable]](#blue-20-variable) + - [blue-30 [variable]](#blue-30-variable) + - [blue-40 [variable]](#blue-40-variable) + - [blue-50 [variable]](#blue-50-variable) + - [blue-60 [variable]](#blue-60-variable) + - [blue-70 [variable]](#blue-70-variable) + - [blue-80 [variable]](#blue-80-variable) + - [blue-90 [variable]](#blue-90-variable) + - [blue-100 [variable]](#blue-100-variable) + - [cool-gray-10 [variable]](#cool-gray-10-variable) + - [cool-gray-20 [variable]](#cool-gray-20-variable) + - [cool-gray-30 [variable]](#cool-gray-30-variable) + - [cool-gray-40 [variable]](#cool-gray-40-variable) + - [cool-gray-50 [variable]](#cool-gray-50-variable) + - [cool-gray-60 [variable]](#cool-gray-60-variable) + - [cool-gray-70 [variable]](#cool-gray-70-variable) + - [cool-gray-80 [variable]](#cool-gray-80-variable) + - [cool-gray-90 [variable]](#cool-gray-90-variable) + - [cool-gray-100 [variable]](#cool-gray-100-variable) + - [cyan-10 [variable]](#cyan-10-variable) + - [cyan-20 [variable]](#cyan-20-variable) + - [cyan-30 [variable]](#cyan-30-variable) + - [cyan-40 [variable]](#cyan-40-variable) + - [cyan-50 [variable]](#cyan-50-variable) + - [cyan-60 [variable]](#cyan-60-variable) + - [cyan-70 [variable]](#cyan-70-variable) + - [cyan-80 [variable]](#cyan-80-variable) + - [cyan-90 [variable]](#cyan-90-variable) + - [cyan-100 [variable]](#cyan-100-variable) + - [gray-10 [variable]](#gray-10-variable) + - [gray-20 [variable]](#gray-20-variable) + - [gray-30 [variable]](#gray-30-variable) + - [gray-40 [variable]](#gray-40-variable) + - [gray-50 [variable]](#gray-50-variable) + - [gray-60 [variable]](#gray-60-variable) + - [gray-70 [variable]](#gray-70-variable) + - [gray-80 [variable]](#gray-80-variable) + - [gray-90 [variable]](#gray-90-variable) + - [gray-100 [variable]](#gray-100-variable) + - [green-10 [variable]](#green-10-variable) + - [green-20 [variable]](#green-20-variable) + - [green-30 [variable]](#green-30-variable) + - [green-40 [variable]](#green-40-variable) + - [green-50 [variable]](#green-50-variable) + - [green-60 [variable]](#green-60-variable) + - [green-70 [variable]](#green-70-variable) + - [green-80 [variable]](#green-80-variable) + - [green-90 [variable]](#green-90-variable) + - [green-100 [variable]](#green-100-variable) + - [magenta-10 [variable]](#magenta-10-variable) + - [magenta-20 [variable]](#magenta-20-variable) + - [magenta-30 [variable]](#magenta-30-variable) + - [magenta-40 [variable]](#magenta-40-variable) + - [magenta-50 [variable]](#magenta-50-variable) + - [magenta-60 [variable]](#magenta-60-variable) + - [magenta-70 [variable]](#magenta-70-variable) + - [magenta-80 [variable]](#magenta-80-variable) + - [magenta-90 [variable]](#magenta-90-variable) + - [magenta-100 [variable]](#magenta-100-variable) + - [orange-40 [variable]](#orange-40-variable) + - [orange-60 [variable]](#orange-60-variable) + - [orange-70 [variable]](#orange-70-variable) + - [purple-10 [variable]](#purple-10-variable) + - [purple-20 [variable]](#purple-20-variable) + - [purple-30 [variable]](#purple-30-variable) + - [purple-40 [variable]](#purple-40-variable) + - [purple-50 [variable]](#purple-50-variable) + - [purple-60 [variable]](#purple-60-variable) + - [purple-70 [variable]](#purple-70-variable) + - [purple-80 [variable]](#purple-80-variable) + - [purple-90 [variable]](#purple-90-variable) + - [purple-100 [variable]](#purple-100-variable) + - [red-10 [variable]](#red-10-variable) + - [red-20 [variable]](#red-20-variable) + - [red-30 [variable]](#red-30-variable) + - [red-40 [variable]](#red-40-variable) + - [red-50 [variable]](#red-50-variable) + - [red-60 [variable]](#red-60-variable) + - [red-70 [variable]](#red-70-variable) + - [red-80 [variable]](#red-80-variable) + - [red-90 [variable]](#red-90-variable) + - [red-100 [variable]](#red-100-variable) + - [teal-10 [variable]](#teal-10-variable) + - [teal-20 [variable]](#teal-20-variable) + - [teal-30 [variable]](#teal-30-variable) + - [teal-40 [variable]](#teal-40-variable) + - [teal-50 [variable]](#teal-50-variable) + - [teal-60 [variable]](#teal-60-variable) + - [teal-70 [variable]](#teal-70-variable) + - [teal-80 [variable]](#teal-80-variable) + - [teal-90 [variable]](#teal-90-variable) + - [teal-100 [variable]](#teal-100-variable) + - [warm-gray-10 [variable]](#warm-gray-10-variable) + - [warm-gray-20 [variable]](#warm-gray-20-variable) + - [warm-gray-30 [variable]](#warm-gray-30-variable) + - [warm-gray-40 [variable]](#warm-gray-40-variable) + - [warm-gray-50 [variable]](#warm-gray-50-variable) + - [warm-gray-60 [variable]](#warm-gray-60-variable) + - [warm-gray-70 [variable]](#warm-gray-70-variable) + - [warm-gray-80 [variable]](#warm-gray-80-variable) + - [warm-gray-90 [variable]](#warm-gray-90-variable) + - [warm-gray-100 [variable]](#warm-gray-100-variable) + - [white-0 [variable]](#white-0-variable) + - [yellow-20 [variable]](#yellow-20-variable) + - [yellow-30 [variable]](#yellow-30-variable) + - [yellow-40 [variable]](#yellow-40-variable) + - [yellow-50 [variable]](#yellow-50-variable) + +### ✅black [variable] + +Value for black + +
+Source code + +```scss +$black: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…white [variable] + +Value for white + +
+Source code + +```scss +$white: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…black-100 [variable] + +Value for black-100 from the IBM Design Language + +
+Source code + +```scss +$black-100: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-10 [variable] + +Value for blue-10 from the IBM Design Language + +
+Source code + +```scss +$blue-10: #edf5ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-20 [variable] + +Value for blue-20 from the IBM Design Language + +
+Source code + +```scss +$blue-20: #d0e2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-30 [variable] + +Value for blue-30 from the IBM Design Language + +
+Source code + +```scss +$blue-30: #a6c8ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-40 [variable] + +Value for blue-40 from the IBM Design Language + +
+Source code + +```scss +$blue-40: #78a9ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-50 [variable] + +Value for blue-50 from the IBM Design Language + +
+Source code + +```scss +$blue-50: #4589ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-60 [variable] + +Value for blue-60 from the IBM Design Language + +
+Source code + +```scss +$blue-60: #0f62fe; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-70 [variable] + +Value for blue-70 from the IBM Design Language + +
+Source code + +```scss +$blue-70: #0043ce; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-80 [variable] + +Value for blue-80 from the IBM Design Language + +
+Source code + +```scss +$blue-80: #002d9c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-90 [variable] + +Value for blue-90 from the IBM Design Language + +
+Source code + +```scss +$blue-90: #001d6c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-100 [variable] + +Value for blue-100 from the IBM Design Language + +
+Source code + +```scss +$blue-100: #001141; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-10 [variable] + +Value for cool-gray-10 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-10: #f2f4f8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-20 [variable] + +Value for cool-gray-20 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-20: #dde1e6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-30 [variable] + +Value for cool-gray-30 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-30: #c1c7cd; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-40 [variable] + +Value for cool-gray-40 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-40: #a2a9b0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-50 [variable] + +Value for cool-gray-50 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-50: #878d96; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-60 [variable] + +Value for cool-gray-60 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-60: #697077; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-70 [variable] + +Value for cool-gray-70 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-70: #4d5358; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-80 [variable] + +Value for cool-gray-80 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-80: #343a3f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-90 [variable] + +Value for cool-gray-90 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-90: #21272a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-100 [variable] + +Value for cool-gray-100 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-100: #121619; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-10 [variable] + +Value for cyan-10 from the IBM Design Language + +
+Source code + +```scss +$cyan-10: #e5f6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-20 [variable] + +Value for cyan-20 from the IBM Design Language + +
+Source code + +```scss +$cyan-20: #bae6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-30 [variable] + +Value for cyan-30 from the IBM Design Language + +
+Source code + +```scss +$cyan-30: #82cfff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-40 [variable] + +Value for cyan-40 from the IBM Design Language + +
+Source code + +```scss +$cyan-40: #33b1ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-50 [variable] + +Value for cyan-50 from the IBM Design Language + +
+Source code + +```scss +$cyan-50: #1192e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-60 [variable] + +Value for cyan-60 from the IBM Design Language + +
+Source code + +```scss +$cyan-60: #0072c3; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-70 [variable] + +Value for cyan-70 from the IBM Design Language + +
+Source code + +```scss +$cyan-70: #00539a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-80 [variable] + +Value for cyan-80 from the IBM Design Language + +
+Source code + +```scss +$cyan-80: #003a6d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-90 [variable] + +Value for cyan-90 from the IBM Design Language + +
+Source code + +```scss +$cyan-90: #012749; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-100 [variable] + +Value for cyan-100 from the IBM Design Language + +
+Source code + +```scss +$cyan-100: #061727; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-10 [variable] + +Value for gray-10 from the IBM Design Language + +
+Source code + +```scss +$gray-10: #f4f4f4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-20 [variable] + +Value for gray-20 from the IBM Design Language + +
+Source code + +```scss +$gray-20: #e0e0e0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-30 [variable] + +Value for gray-30 from the IBM Design Language + +
+Source code + +```scss +$gray-30: #c6c6c6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-40 [variable] + +Value for gray-40 from the IBM Design Language + +
+Source code + +```scss +$gray-40: #a8a8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-50 [variable] + +Value for gray-50 from the IBM Design Language + +
+Source code + +```scss +$gray-50: #8d8d8d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-60 [variable] + +Value for gray-60 from the IBM Design Language + +
+Source code + +```scss +$gray-60: #6f6f6f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-70 [variable] + +Value for gray-70 from the IBM Design Language + +
+Source code + +```scss +$gray-70: #525252; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-80 [variable] + +Value for gray-80 from the IBM Design Language + +
+Source code + +```scss +$gray-80: #393939; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-90 [variable] + +Value for gray-90 from the IBM Design Language + +
+Source code + +```scss +$gray-90: #262626; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-100 [variable] + +Value for gray-100 from the IBM Design Language + +
+Source code + +```scss +$gray-100: #161616; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-10 [variable] + +Value for green-10 from the IBM Design Language + +
+Source code + +```scss +$green-10: #defbe6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-20 [variable] + +Value for green-20 from the IBM Design Language + +
+Source code + +```scss +$green-20: #a7f0ba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-30 [variable] + +Value for green-30 from the IBM Design Language + +
+Source code + +```scss +$green-30: #6fdc8c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-40 [variable] + +Value for green-40 from the IBM Design Language + +
+Source code + +```scss +$green-40: #42be65; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-50 [variable] + +Value for green-50 from the IBM Design Language + +
+Source code + +```scss +$green-50: #24a148; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-60 [variable] + +Value for green-60 from the IBM Design Language + +
+Source code + +```scss +$green-60: #198038; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-70 [variable] + +Value for green-70 from the IBM Design Language + +
+Source code + +```scss +$green-70: #0e6027; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-80 [variable] + +Value for green-80 from the IBM Design Language + +
+Source code + +```scss +$green-80: #044317; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-90 [variable] + +Value for green-90 from the IBM Design Language + +
+Source code + +```scss +$green-90: #022d0d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-100 [variable] + +Value for green-100 from the IBM Design Language + +
+Source code + +```scss +$green-100: #071908; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-10 [variable] + +Value for magenta-10 from the IBM Design Language + +
+Source code + +```scss +$magenta-10: #fff0f7; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-20 [variable] + +Value for magenta-20 from the IBM Design Language + +
+Source code + +```scss +$magenta-20: #ffd6e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-30 [variable] + +Value for magenta-30 from the IBM Design Language + +
+Source code + +```scss +$magenta-30: #ffafd2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-40 [variable] + +Value for magenta-40 from the IBM Design Language + +
+Source code + +```scss +$magenta-40: #ff7eb6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-50 [variable] + +Value for magenta-50 from the IBM Design Language + +
+Source code + +```scss +$magenta-50: #ee5396; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-60 [variable] + +Value for magenta-60 from the IBM Design Language + +
+Source code + +```scss +$magenta-60: #d02670; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-70 [variable] + +Value for magenta-70 from the IBM Design Language + +
+Source code + +```scss +$magenta-70: #9f1853; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-80 [variable] + +Value for magenta-80 from the IBM Design Language + +
+Source code + +```scss +$magenta-80: #740937; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-90 [variable] + +Value for magenta-90 from the IBM Design Language + +
+Source code + +```scss +$magenta-90: #510224; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-100 [variable] + +Value for magenta-100 from the IBM Design Language + +
+Source code + +```scss +$magenta-100: #2a0a18; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-40 [variable] + +Value for orange-40 from the IBM Design Language + +
+Source code + +```scss +$orange-40: #ff832b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-60 [variable] + +Value for orange-60 from the IBM Design Language + +
+Source code + +```scss +$orange-60: #ba4e00; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-70 [variable] + +Value for orange-70 from the IBM Design Language + +
+Source code + +```scss +$orange-70: #8a3800; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-10 [variable] + +Value for purple-10 from the IBM Design Language + +
+Source code + +```scss +$purple-10: #f6f2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-20 [variable] + +Value for purple-20 from the IBM Design Language + +
+Source code + +```scss +$purple-20: #e8daff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-30 [variable] + +Value for purple-30 from the IBM Design Language + +
+Source code + +```scss +$purple-30: #d4bbff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-40 [variable] + +Value for purple-40 from the IBM Design Language + +
+Source code + +```scss +$purple-40: #be95ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-50 [variable] + +Value for purple-50 from the IBM Design Language + +
+Source code + +```scss +$purple-50: #a56eff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-60 [variable] + +Value for purple-60 from the IBM Design Language + +
+Source code + +```scss +$purple-60: #8a3ffc; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-70 [variable] + +Value for purple-70 from the IBM Design Language + +
+Source code + +```scss +$purple-70: #6929c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-80 [variable] + +Value for purple-80 from the IBM Design Language + +
+Source code + +```scss +$purple-80: #491d8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-90 [variable] + +Value for purple-90 from the IBM Design Language + +
+Source code + +```scss +$purple-90: #31135e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-100 [variable] + +Value for purple-100 from the IBM Design Language + +
+Source code + +```scss +$purple-100: #1c0f30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-10 [variable] + +Value for red-10 from the IBM Design Language + +
+Source code + +```scss +$red-10: #fff1f1; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-20 [variable] + +Value for red-20 from the IBM Design Language + +
+Source code + +```scss +$red-20: #ffd7d9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-30 [variable] + +Value for red-30 from the IBM Design Language + +
+Source code + +```scss +$red-30: #ffb3b8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-40 [variable] + +Value for red-40 from the IBM Design Language + +
+Source code + +```scss +$red-40: #ff8389; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-50 [variable] + +Value for red-50 from the IBM Design Language + +
+Source code + +```scss +$red-50: #fa4d56; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-60 [variable] + +Value for red-60 from the IBM Design Language + +
+Source code + +```scss +$red-60: #da1e28; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-70 [variable] + +Value for red-70 from the IBM Design Language + +
+Source code + +```scss +$red-70: #a2191f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-80 [variable] + +Value for red-80 from the IBM Design Language + +
+Source code + +```scss +$red-80: #750e13; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-90 [variable] + +Value for red-90 from the IBM Design Language + +
+Source code + +```scss +$red-90: #520408; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-100 [variable] + +Value for red-100 from the IBM Design Language + +
+Source code + +```scss +$red-100: #2d0709; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-10 [variable] + +Value for teal-10 from the IBM Design Language + +
+Source code + +```scss +$teal-10: #d9fbfb; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-20 [variable] + +Value for teal-20 from the IBM Design Language + +
+Source code + +```scss +$teal-20: #9ef0f0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-30 [variable] + +Value for teal-30 from the IBM Design Language + +
+Source code + +```scss +$teal-30: #3ddbd9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-40 [variable] + +Value for teal-40 from the IBM Design Language + +
+Source code + +```scss +$teal-40: #08bdba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-50 [variable] + +Value for teal-50 from the IBM Design Language + +
+Source code + +```scss +$teal-50: #009d9a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-60 [variable] + +Value for teal-60 from the IBM Design Language + +
+Source code + +```scss +$teal-60: #007d79; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-70 [variable] + +Value for teal-70 from the IBM Design Language + +
+Source code + +```scss +$teal-70: #005d5d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-80 [variable] + +Value for teal-80 from the IBM Design Language + +
+Source code + +```scss +$teal-80: #004144; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-90 [variable] + +Value for teal-90 from the IBM Design Language + +
+Source code + +```scss +$teal-90: #022b30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-100 [variable] + +Value for teal-100 from the IBM Design Language + +
+Source code + +```scss +$teal-100: #081a1c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-10 [variable] + +Value for warm-gray-10 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-10: #f7f3f2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-20 [variable] + +Value for warm-gray-20 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-20: #e5e0df; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-30 [variable] + +Value for warm-gray-30 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-30: #cac5c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-40 [variable] + +Value for warm-gray-40 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-40: #ada8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-50 [variable] + +Value for warm-gray-50 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-50: #8f8b8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-60 [variable] + +Value for warm-gray-60 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-60: #726e6e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-70 [variable] + +Value for warm-gray-70 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-70: #565151; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-80 [variable] + +Value for warm-gray-80 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-80: #3c3838; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-90 [variable] + +Value for warm-gray-90 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-90: #272525; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-100 [variable] + +Value for warm-gray-100 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-100: #171414; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…white-0 [variable] + +Value for white-0 from the IBM Design Language + +
+Source code + +```scss +$white-0: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-20 [variable] + +Value for yellow-20 from the IBM Design Language + +
+Source code + +```scss +$yellow-20: #fdd13a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-30 [variable] + +Value for yellow-30 from the IBM Design Language + +
+Source code + +```scss +$yellow-30: #f1c21b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-40 [variable] + +Value for yellow-40 from the IBM Design Language + +
+Source code + +```scss +$yellow-40: #d2a106; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-50 [variable] + +Value for yellow-50 from the IBM Design Language + +
+Source code + +```scss +$yellow-50: #b28600; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…colors [variable] + +Colors from the IBM Design Language + +
+Source code + +```scss +$colors: ( + black: ( + 100: #000000, + ), + blue: ( + 10: #edf5ff, + 20: #d0e2ff, + 30: #a6c8ff, + 40: #78a9ff, + 50: #4589ff, + 60: #0f62fe, + 70: #0043ce, + 80: #002d9c, + 90: #001d6c, + 100: #001141, + ), + cool-gray: ( + 10: #f2f4f8, + 20: #dde1e6, + 30: #c1c7cd, + 40: #a2a9b0, + 50: #878d96, + 60: #697077, + 70: #4d5358, + 80: #343a3f, + 90: #21272a, + 100: #121619, + ), + cyan: ( + 10: #e5f6ff, + 20: #bae6ff, + 30: #82cfff, + 40: #33b1ff, + 50: #1192e8, + 60: #0072c3, + 70: #00539a, + 80: #003a6d, + 90: #012749, + 100: #061727, + ), + gray: ( + 10: #f4f4f4, + 20: #e0e0e0, + 30: #c6c6c6, + 40: #a8a8a8, + 50: #8d8d8d, + 60: #6f6f6f, + 70: #525252, + 80: #393939, + 90: #262626, + 100: #161616, + ), + green: ( + 10: #defbe6, + 20: #a7f0ba, + 30: #6fdc8c, + 40: #42be65, + 50: #24a148, + 60: #198038, + 70: #0e6027, + 80: #044317, + 90: #022d0d, + 100: #071908, + ), + magenta: ( + 10: #fff0f7, + 20: #ffd6e8, + 30: #ffafd2, + 40: #ff7eb6, + 50: #ee5396, + 60: #d02670, + 70: #9f1853, + 80: #740937, + 90: #510224, + 100: #2a0a18, + ), + orange: ( + 40: #ff832b, + 60: #ba4e00, + 70: #8a3800, + ), + purple: ( + 10: #f6f2ff, + 20: #e8daff, + 30: #d4bbff, + 40: #be95ff, + 50: #a56eff, + 60: #8a3ffc, + 70: #6929c4, + 80: #491d8b, + 90: #31135e, + 100: #1c0f30, + ), + red: ( + 10: #fff1f1, + 20: #ffd7d9, + 30: #ffb3b8, + 40: #ff8389, + 50: #fa4d56, + 60: #da1e28, + 70: #a2191f, + 80: #750e13, + 90: #520408, + 100: #2d0709, + ), + teal: ( + 10: #d9fbfb, + 20: #9ef0f0, + 30: #3ddbd9, + 40: #08bdba, + 50: #009d9a, + 60: #007d79, + 70: #005d5d, + 80: #004144, + 90: #022b30, + 100: #081a1c, + ), + warm-gray: ( + 10: #f7f3f2, + 20: #e5e0df, + 30: #cac5c4, + 40: #ada8a8, + 50: #8f8b8b, + 60: #726e6e, + 70: #565151, + 80: #3c3838, + 90: #272525, + 100: #171414, + ), + white: ( + 0: #ffffff, + ), + yellow: ( + 20: #fdd13a, + 30: #f1c21b, + 40: #d2a106, + 50: #b28600, + ), +); +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) diff --git a/packages/colors/examples/sass-modules/package.json b/packages/colors/examples/sass-modules/package.json new file mode 100644 index 000000000000..75ec43f6f0c3 --- /dev/null +++ b/packages/colors/examples/sass-modules/package.json @@ -0,0 +1,16 @@ +{ + "name": "carbon-colors-sass-modules", + "private": true, + "version": "0.0.0", + "license": "Apache-2.0", + "scripts": { + "develop": "next" + }, + "dependencies": { + "@carbon/colors": "file:../../", + "next": "^10.0.3", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "sass": "^1.29.0" + } +} diff --git a/packages/colors/examples/sass-modules/src/pages/_app.js b/packages/colors/examples/sass-modules/src/pages/_app.js new file mode 100644 index 000000000000..64cc377adef8 --- /dev/null +++ b/packages/colors/examples/sass-modules/src/pages/_app.js @@ -0,0 +1,12 @@ +/** + * Copyright IBM Corp. 2016, 2018 + * + * This source code is licensed under the Apache-2.0 license found in the + * LICENSE file in the root directory of this source tree. + */ + +import '../styles.scss'; + +export default function App({ Component, pageProps }) { + return ; +} diff --git a/packages/colors/examples/sass-modules/src/pages/index.js b/packages/colors/examples/sass-modules/src/pages/index.js new file mode 100644 index 000000000000..2bb680071542 --- /dev/null +++ b/packages/colors/examples/sass-modules/src/pages/index.js @@ -0,0 +1,19 @@ +/** + * Copyright IBM Corp. 2016, 2018 + * + * This source code is licensed under the Apache-2.0 license found in the + * LICENSE file in the root directory of this source tree. + */ + +export default function IndexPage() { + return ( +
+
Header
+

+ Dolor eveniet facilis dolore ipsa accusamus Adipisci itaque rem adipisci + natus numquam. Dolorem ex reprehenderit laudantium mollitia id deleniti + Hic eveniet in id ipsam aut Architecto harum voluptate nulla excepturi? +

+
+ ); +} diff --git a/packages/colors/examples/sass-modules/src/styles.scss b/packages/colors/examples/sass-modules/src/styles.scss new file mode 100644 index 000000000000..c3d7b42d24be --- /dev/null +++ b/packages/colors/examples/sass-modules/src/styles.scss @@ -0,0 +1,19 @@ +// +// Copyright IBM Corp. 2018, 2020 +// +// This source code is licensed under the Apache-2.0 license found in the +// LICENSE file in the root directory of this source tree. +// + +@use '@carbon/colors/scss/module' as *; + +body { + background: $gray-20; +} + +.card { + background: $white; + width: 300px; + padding: 1rem; + border-radius: 8px; +} diff --git a/packages/colors/examples/sass-modules/yarn.lock b/packages/colors/examples/sass-modules/yarn.lock new file mode 100644 index 000000000000..d42dc1171b5a --- /dev/null +++ b/packages/colors/examples/sass-modules/yarn.lock @@ -0,0 +1,4022 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/toolbox-core@^2.6.0", "@ampproject/toolbox-core@^2.7.1": + version "2.7.1" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.7.1.tgz#d433a333c0dbb0bb6db7e69edd490d5694e06fc3" + integrity sha512-MWGmCLyBOouXTy1Vc30Jw7NkshJ5XkPlcXhhRc9Gw3dDAZJ8rUS69SIQ6cFMt2owCQnw7irMNlvZQTqdyx61rA== + dependencies: + cross-fetch "3.0.6" + lru-cache "6.0.0" + +"@ampproject/toolbox-optimizer@2.7.0-alpha.1": + version "2.7.0-alpha.1" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.7.0-alpha.1.tgz#ab4c386645f991e5da5a9d2967ed2bb734a9f6c4" + integrity sha512-2wTvOyM6GP6FrYQzxSQCg43STo1jMRGeDKa6YUkYXYH9fm9Wbt2wTRx+ajjb48JQ6WwUnGwga1MhQhVFzRQ+wQ== + dependencies: + "@ampproject/toolbox-core" "^2.6.0" + "@ampproject/toolbox-runtime-version" "^2.7.0-alpha.1" + "@ampproject/toolbox-script-csp" "^2.5.4" + "@ampproject/toolbox-validator-rules" "^2.5.4" + abort-controller "3.0.0" + cross-fetch "3.0.5" + cssnano-simple "1.2.0" + dom-serializer "1.0.1" + domhandler "3.0.0" + domutils "2.1.0" + htmlparser2 "4.1.0" + https-proxy-agent "5.0.0" + lru-cache "6.0.0" + node-fetch "2.6.0" + normalize-html-whitespace "1.0.0" + postcss "7.0.32" + postcss-safe-parser "4.0.2" + terser "5.1.0" + +"@ampproject/toolbox-runtime-version@^2.7.0-alpha.1": + version "2.7.1" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.7.1.tgz#2ae543c97e2659be444eb389b1277ed5a70568e6" + integrity sha512-3LsjaOz/Aw4YpWG6ZxpVhA2N8GF0gRfvCrNm0ZspUviz/NR+MLrJ50BPoOOAmKCzoNVA2Q8xF3Y8dfamGuoblA== + dependencies: + "@ampproject/toolbox-core" "^2.7.1" + +"@ampproject/toolbox-script-csp@^2.5.4": + version "2.5.4" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.5.4.tgz#d8b7b91a678ae8f263cb36d9b74e441b7d633aad" + integrity sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW/hl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ== + +"@ampproject/toolbox-validator-rules@^2.5.4": + version "2.7.1" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.7.1.tgz#5a257f2b21d1d44167769fe3eae7f587d249d9fa" + integrity sha512-LYkGKqFBOC39lvRX38wGjbLf4r8VXJyiCZSLRepiHjO4xbstZLyHPwxHlobQrBhD7UbHZn5TVD+qw+VMJNMSxw== + dependencies: + cross-fetch "^3.0.6" + +"@babel/code-frame@7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" + integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== + +"@babel/highlight@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" + integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== + dependencies: + "@babel/helper-validator-identifier" "^7.10.4" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@7.12.5": + version "7.12.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" + integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/types@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" + integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== + dependencies: + esutils "^2.0.2" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + +"@carbon/colors@file:../..": + version "10.17.0" + +"@hapi/accept@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.1.tgz#068553e867f0f63225a506ed74e899441af53e10" + integrity sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q== + dependencies: + "@hapi/boom" "9.x.x" + "@hapi/hoek" "9.x.x" + +"@hapi/boom@9.x.x": + version "9.1.0" + resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56" + integrity sha512-4nZmpp4tXbm162LaZT45P7F7sgiem8dwAh2vHWT6XX24dozNjGMg6BvKCRvtCUcmcXqeMIUqWN8Rc5X8yKuROQ== + dependencies: + "@hapi/hoek" "9.x.x" + +"@hapi/hoek@9.x.x": + version "9.1.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.1.0.tgz#6c9eafc78c1529248f8f4d92b0799a712b6052c6" + integrity sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw== + +"@next/env@10.0.3": + version "10.0.3" + resolved "https://registry.yarnpkg.com/@next/env/-/env-10.0.3.tgz#ef1077d78bf500855576f83090d6fb1ec96272f8" + integrity sha512-xjJt2VXoSxAydskmt77nJuEtRL782E4ltaj5JtMzJ8YkNUMMu3d5ktpCR+Q3INKHF/RY6zHJ9QzyE3/s1ikbNg== + +"@next/polyfill-module@10.0.3": + version "10.0.3" + resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-10.0.3.tgz#507e99f6dd351dc4a6e45b63dbd397087ece459a" + integrity sha512-JaiycQZZbqViaMZgRGYcPIdCPDz+qRnqEGxbhQlrxyPaBaOtsrAEkGf1SS2wJZKa/ncxqWHMfSvizDcGcz/ygQ== + +"@next/react-dev-overlay@10.0.3": + version "10.0.3" + resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-10.0.3.tgz#99f3151677747d8be08a9314fa7ab3611e8161b8" + integrity sha512-ykiKeUhTsMRoyyYnx4jM8xeOPfKGqQ7xgx2dNXOu4tbPpdivzjJp2+K6+xnqhTmZ7uxfFBV+b1OE1ZzA8qyX5Q== + dependencies: + "@babel/code-frame" "7.10.4" + ally.js "1.4.1" + anser "1.4.9" + chalk "4.0.0" + classnames "2.2.6" + data-uri-to-buffer "3.0.0" + shell-quote "1.7.2" + source-map "0.8.0-beta.0" + stacktrace-parser "0.1.10" + strip-ansi "6.0.0" + +"@next/react-refresh-utils@10.0.3": + version "10.0.3" + resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-10.0.3.tgz#276bec60eae18768f96baf8a52f668f657f50ab4" + integrity sha512-XtzzPX2R4+MIyu1waEQUo2tiNwWVEkmObA6pboRCDTPOs4Ri8ckaIE08lN5A5opyF6GVN+IEq/J8KQrgsePsZQ== + +"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": + version "7.0.6" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" + integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== + +"@webassemblyjs/ast@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" + integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== + dependencies: + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + +"@webassemblyjs/floating-point-hex-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" + integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== + +"@webassemblyjs/helper-api-error@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" + integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== + +"@webassemblyjs/helper-buffer@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" + integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== + +"@webassemblyjs/helper-code-frame@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" + integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== + dependencies: + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/helper-fsm@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" + integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== + +"@webassemblyjs/helper-module-context@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" + integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== + dependencies: + "@webassemblyjs/ast" "1.9.0" + +"@webassemblyjs/helper-wasm-bytecode@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" + integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== + +"@webassemblyjs/helper-wasm-section@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" + integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + +"@webassemblyjs/ieee754@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" + integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" + integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" + integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== + +"@webassemblyjs/wasm-edit@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" + integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/helper-wasm-section" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-opt" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/wasm-gen@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" + integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wasm-opt@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" + integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + +"@webassemblyjs/wasm-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" + integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wast-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" + integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/floating-point-hex-parser" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-code-frame" "1.9.0" + "@webassemblyjs/helper-fsm" "1.9.0" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" + integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +abort-controller@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn@^6.4.1: + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + +adjust-sourcemap-loader@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz#5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e" + integrity sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw== + dependencies: + loader-utils "^2.0.0" + regex-parser "^2.2.11" + +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ally.js@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/ally.js/-/ally.js-1.4.1.tgz#9fb7e6ba58efac4ee9131cb29aa9ee3b540bcf1e" + integrity sha1-n7fmuljvrE7pExyymqnuO1QLzx4= + dependencies: + css.escape "^1.5.0" + platform "1.3.3" + +anser@1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" + integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +arity-n@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" + integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U= + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +ast-types@0.13.2: + version "0.13.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48" + integrity sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA== + +async-each@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +babel-plugin-syntax-jsx@6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= + +babel-plugin-transform-define@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-define/-/babel-plugin-transform-define-2.0.0.tgz#79c3536635f899aabaf830b194b25519465675a4" + integrity sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg== + dependencies: + lodash "^4.17.11" + traverse "0.6.6" + +babel-plugin-transform-react-remove-prop-types@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" + integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base64-js@^1.0.2, base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^1.0.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + +binary-extensions@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" + integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bl@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" + integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +bluebird@^3.5.5: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: + version "4.11.9" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" + integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== + +bn.js@^5.0.0, bn.js@^5.1.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" + integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.1, braces@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" + integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== + dependencies: + bn.js "^5.1.1" + browserify-rsa "^4.0.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.3" + inherits "^2.0.4" + parse-asn1 "^5.1.5" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@4.14.6: + version "4.14.6" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.6.tgz#97702a9c212e0c6b6afefad913d3a1538e348457" + integrity sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A== + dependencies: + caniuse-lite "^1.0.30001154" + electron-to-chromium "^1.3.585" + escalade "^3.1.1" + node-releases "^1.1.65" + +buffer-from@^1.0.0, buffer-from@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" + integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + +buffer@^4.3.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +cacache@^12.0.2: + version "12.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" + integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== + dependencies: + bluebird "^3.5.5" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.4" + graceful-fs "^4.1.15" + infer-owner "^1.0.3" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.3" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +camelcase@5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" + integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== + +caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001113, caniuse-lite@^1.0.30001154: + version "1.0.30001164" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001164.tgz#5bbfd64ca605d43132f13cc7fdabb17c3036bfdc" + integrity sha512-G+A/tkf4bu0dSp9+duNiXc7bGds35DioCyC6vgK2m/rjA4Krpy5WeZgZyfH2f0wj2kI6yAWWucyap6oOwmY1mg== + +chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" + integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chokidar@3.4.3, "chokidar@>=2.0.0 <4.0.0", chokidar@^3.4.1: + version "3.4.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" + integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.5.0" + optionalDependencies: + fsevents "~2.1.2" + +chokidar@^2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.1" + optionalDependencies: + fsevents "^1.2.7" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chrome-trace-event@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" + integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== + dependencies: + tslib "^1.9.0" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +classnames@2.2.6: + version "2.2.6" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" + integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0, color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" + integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" + integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.4" + +colorette@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" + integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +compose-function@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" + integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8= + dependencies: + arity-n "^1.0.4" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +console-browserify@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +convert-source-map@1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + dependencies: + safe-buffer "~5.1.1" + +convert-source-map@^0.3.3: + version "0.3.5" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" + integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-fetch@3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.5.tgz#2739d2981892e7ab488a7ad03b92df2816e03f4c" + integrity sha512-FFLcLtraisj5eteosnX1gf01qYDCOc4fDy0+euOt8Kn9YBY2NtXL/pCoYPavw24NIQkQqm5ZOLsGD5Zzj0gyew== + dependencies: + node-fetch "2.6.0" + +cross-fetch@3.0.6, cross-fetch@^3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.6.tgz#3a4040bc8941e653e0e9cf17f29ebcd177d3365c" + integrity sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ== + dependencies: + node-fetch "2.6.1" + +crypto-browserify@3.12.0, crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css-loader@4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-4.3.0.tgz#c888af64b2a5b2e85462c72c0f4a85c7e2e0821e" + integrity sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg== + dependencies: + camelcase "^6.0.0" + cssesc "^3.0.0" + icss-utils "^4.1.1" + loader-utils "^2.0.0" + postcss "^7.0.32" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.3" + postcss-modules-scope "^2.2.0" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.1.0" + schema-utils "^2.7.1" + semver "^7.3.2" + +css.escape@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= + +css@^2.0.0: + version "2.2.4" + resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" + integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== + dependencies: + inherits "^2.0.3" + source-map "^0.6.1" + source-map-resolve "^0.5.2" + urix "^0.1.0" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-simple@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.2.0.tgz#afcf13eb076e8ebd91c4f311cd449781c14c7371" + integrity sha512-zojGlY+KasFeQT/SnD/WqYXHcKddz2XHRDtIwxrWpGqGHp5IyLWsWFS3UW7pOf3AWvfkpYSRdxOSlYuJPz8j8g== + dependencies: + caniuse-lite "^1.0.30001093" + postcss "^7.0.32" + +cssnano-preset-simple@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.2.1.tgz#8976013114b1fc4718253d30f21aaed1780fb80e" + integrity sha512-B2KahOIFTV6dw5Ioy9jHshTh/vAYNnUB2enyWRgnAEg3oJBjI/035ExpePaMqS2SwpbH7gCgvQqwpMBH6hTJSw== + dependencies: + caniuse-lite "^1.0.30001093" + postcss "^7.0.32" + +cssnano-simple@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.2.0.tgz#b8cc5f52c2a52e6513b4636d0da165ec9d48d327" + integrity sha512-pton9cZ70/wOCWMAbEGHO1ACsW1KggTB6Ikj7k71uOEsz6SfByH++86+WAmXjRSc9q/g9gxkpFP9bDX9vRotdA== + dependencies: + cssnano-preset-simple "1.2.0" + postcss "^7.0.32" + +cssnano-simple@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.2.1.tgz#6de5d9dd75774bc8f31767573410a952c7dd8a12" + integrity sha512-9vOyjw8Dj/T12kIOnXPZ5VnEIo6F3YMaIn0wqJXmn277R58cWpI3AvtdlCBtohX7VAUNYcyk2d0dKcXXkb5I6Q== + dependencies: + cssnano-preset-simple "1.2.1" + postcss "^7.0.32" + +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= + +d@1, d@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" + integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== + dependencies: + es5-ext "^0.10.50" + type "^1.0.1" + +data-uri-to-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.0.tgz#8a3088a5efd3f53c3682343313c6895d498eb8d7" + integrity sha512-MJ6mFTZ+nPQO+39ua/ltwNePXrfdF3Ww0wP1Od7EePySXN1cP9XNqRQOG3FxTfipp8jx898LUCgBCEP11Qw/ZQ== + dependencies: + buffer-from "^1.1.1" + +debug@4: + version "4.3.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" + integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== + dependencies: + ms "2.1.2" + +debug@^2.2.0, debug@^2.3.3: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== + dependencies: + mimic-response "^2.0.0" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +des.js@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dom-serializer@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795" + integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw== + dependencies: + domelementtype "^2.0.1" + domhandler "^3.0.0" + entities "^2.0.0" + +dom-serializer@^0.2.1: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.1.0.tgz#5f7c828f1bfc44887dc2a315ab5c45691d544b58" + integrity sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ== + dependencies: + domelementtype "^2.0.1" + domhandler "^3.0.0" + entities "^2.0.0" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +domelementtype@^2.0.1, domelementtype@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" + integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== + +domhandler@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" + integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== + dependencies: + domelementtype "^2.0.1" + +domhandler@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a" + integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA== + dependencies: + domelementtype "^2.0.1" + +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" + integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== + dependencies: + domelementtype "^2.1.0" + +domutils@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" + integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== + dependencies: + dom-serializer "^0.2.1" + domelementtype "^2.0.1" + domhandler "^3.0.0" + +domutils@^2.0.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.3.tgz#b8ca888695db9baf65b58462c0eff46d2d5cd85d" + integrity sha512-MDMfEjgtzHvRX7i21XQfkk/vfZbLOe0VJk8dDETkTTo3BTeH3NXz3Xvs94UQ+GzTw/GjRYKsfVKIIOheYX63fw== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +electron-to-chromium@^1.3.585: + version "1.3.615" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.615.tgz#50f523be4a04449410e9f3a694490814e602cd54" + integrity sha512-fNYTQXoUhNc6RmHDlGN4dgcLURSBIqQCN7ls6MuQ741+NJyLNRz8DxAC+pZpOKfRs6cfY0lv2kWdy8Oxf9j4+A== + +elliptic@^6.5.3: + version "6.5.3" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" + integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enhanced-resolve@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126" + integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.5.0" + tapable "^1.0.0" + +entities@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" + integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== + +errno@^0.1.3, errno@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + dependencies: + prr "~1.0.1" + +es5-ext@^0.10.35, es5-ext@^0.10.50: + version "0.10.53" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" + integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.3" + next-tick "~1.0.0" + +es6-iterator@2.0.3, es6-iterator@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-symbol@^3.1.1, es6-symbol@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" + integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== + dependencies: + d "^1.0.1" + ext "^1.1.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +esrecurse@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" + integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +events@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" + integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-template@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + +ext@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" + integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== + dependencies: + type "^2.0.0" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +fast-deep-equal@^3.1.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +figgy-pudding@^3.5.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" + integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-cache-dir@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" + integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-cache-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^1.2.7: + version "1.2.13" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== + dependencies: + bindings "^1.5.0" + nan "^2.12.1" + +fsevents@~2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" + integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3, glob@^7.1.4: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: + version "4.2.4" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +htmlparser2@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" + integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== + dependencies: + domelementtype "^2.0.1" + domhandler "^3.0.0" + domutils "^2.0.0" + entities "^2.0.0" + +http-errors@1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +https-proxy-agent@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^4.0.0, icss-utils@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + dependencies: + postcss "^7.0.14" + +ieee754@^1.1.13, ieee754@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + +infer-owner@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +jest-worker@24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" + integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== + dependencies: + minimist "^1.2.5" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klona@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" + integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== + +line-column@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" + integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI= + dependencies: + isarray "^1.0.0" + isobject "^2.0.0" + +loader-runner@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + +loader-utils@1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +loader-utils@2.0.0, loader-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@^1.2.3: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" + integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash@^4.17.11, lodash@^4.17.13: + version "4.17.20" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" + integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@6.0.0, lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +make-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +memory-fs@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +memory-fs@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" + integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mimic-response@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +mkdirp@^0.5.1, mkdirp@^0.5.3: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +nan@^2.12.1: + version "2.14.2" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" + integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== + +nanoid@^3.1.16: + version "3.1.20" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" + integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + +native-url@0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.3.4.tgz#29c943172aed86c63cee62c8c04db7f5756661f8" + integrity sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA== + dependencies: + querystring "^0.2.0" + +neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +next-tick@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= + +next@^10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/next/-/next-10.0.3.tgz#2bf9a1625dcd0afc8c31be19fc5516af68d99e80" + integrity sha512-QYCfjZgowjaLUFvyV8959SmkUZU/edFgHeiXNtWDv7kffo/oTm891p0KZAkk5cMIHcsDX3g3UuQdw/zmui783g== + dependencies: + "@ampproject/toolbox-optimizer" "2.7.0-alpha.1" + "@babel/runtime" "7.12.5" + "@hapi/accept" "5.0.1" + "@next/env" "10.0.3" + "@next/polyfill-module" "10.0.3" + "@next/react-dev-overlay" "10.0.3" + "@next/react-refresh-utils" "10.0.3" + ast-types "0.13.2" + babel-plugin-transform-define "2.0.0" + babel-plugin-transform-react-remove-prop-types "0.4.24" + browserslist "4.14.6" + buffer "5.6.0" + caniuse-lite "^1.0.30001113" + chalk "2.4.2" + chokidar "3.4.3" + crypto-browserify "3.12.0" + css-loader "4.3.0" + cssnano-simple "1.2.1" + etag "1.8.1" + find-cache-dir "3.3.1" + jest-worker "24.9.0" + loader-utils "2.0.0" + native-url "0.3.4" + node-fetch "2.6.1" + node-html-parser "1.4.9" + path-browserify "1.0.1" + pnp-webpack-plugin "1.6.4" + postcss "8.1.7" + process "0.11.10" + prop-types "15.7.2" + raw-body "2.4.1" + react-is "16.13.1" + react-refresh "0.8.3" + resolve-url-loader "3.1.2" + sass-loader "10.0.5" + schema-utils "2.7.1" + stream-browserify "3.0.0" + style-loader "1.2.1" + styled-jsx "3.3.2" + use-subscription "1.5.1" + vm-browserify "1.1.2" + watchpack "2.0.0-beta.13" + webpack "4.44.1" + webpack-sources "1.4.3" + optionalDependencies: + sharp "0.26.2" + +node-abi@^2.7.0: + version "2.19.3" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.19.3.tgz#252f5dcab12dad1b5503b2d27eddd4733930282d" + integrity sha512-9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg== + dependencies: + semver "^5.4.1" + +node-addon-api@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.0.2.tgz#04bc7b83fd845ba785bb6eae25bc857e1ef75681" + integrity sha512-+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg== + +node-fetch@2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" + integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== + +node-fetch@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + +node-html-parser@1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c" + integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw== + dependencies: + he "1.2.0" + +node-libs-browser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.1" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "^1.0.1" + +node-releases@^1.1.65: + version "1.1.67" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" + integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== + +noop-logger@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" + integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= + +normalize-html-whitespace@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34" + integrity sha512-9ui7CGtOOlehQu0t/OhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC/bdQi/Hr3iTrpyRKIG+ocabA== + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npmlog@^4.0.1, npmlog@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parallel-transform@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== + dependencies: + cyclist "^1.0.1" + inherits "^2.0.3" + readable-stream "^2.1.5" + +parse-asn1@^5.0.0, parse-asn1@^5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== + dependencies: + asn1.js "^5.2.0" + browserify-aes "^1.0.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + +path-browserify@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +pbkdf2@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" + integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +platform@1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.3.tgz#646c77011899870b6a0903e75e997e8e51da7461" + integrity sha1-ZGx3ARiZhwtqCQPnXpl+jlHadGE= + +pnp-webpack-plugin@1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" + integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== + dependencies: + ts-pnp "^1.1.6" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +postcss-modules-extract-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + dependencies: + postcss "^7.0.5" + +postcss-modules-local-by-default@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" + integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== + dependencies: + icss-utils "^4.1.1" + postcss "^7.0.32" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" + integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + +postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + dependencies: + icss-utils "^4.0.0" + postcss "^7.0.6" + +postcss-safe-parser@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" + integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g== + dependencies: + postcss "^7.0.26" + +postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" + integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== + dependencies: + cssesc "^3.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" + integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== + +postcss@7.0.21: + version "7.0.21" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17" + integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +postcss@7.0.32: + version "7.0.32" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" + integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +postcss@8.1.7: + version "8.1.7" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.1.7.tgz#ff6a82691bd861f3354fd9b17b2332f88171233f" + integrity sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ== + dependencies: + colorette "^1.2.1" + line-column "^1.0.2" + nanoid "^3.1.16" + source-map "^0.6.1" + +postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" + integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +prebuild-install@^5.3.5: + version "5.3.6" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.6.tgz#7c225568d864c71d89d07f8796042733a3f54291" + integrity sha512-s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg== + dependencies: + detect-libc "^1.0.3" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^2.7.0" + noop-logger "^0.1.1" + npmlog "^4.0.1" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^3.0.3" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + which-pm-runs "^1.0.0" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@0.11.10, process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +prop-types@15.7.2: + version "15.7.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0, querystring@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +raw-body@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" + integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== + dependencies: + bytes "3.1.0" + http-errors "1.7.3" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dom@^17.0.1: + version "17.0.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6" + integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.1" + +react-is@16.13.1, react-is@^16.8.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-refresh@0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" + integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== + +react@^17.0.1: + version "17.0.1" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127" + integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +readdirp@~3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" + integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.4: + version "0.13.7" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" + integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regex-parser@^2.2.11: + version "2.2.11" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" + integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +resolve-url-loader@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08" + integrity sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ== + dependencies: + adjust-sourcemap-loader "3.0.0" + camelcase "5.3.1" + compose-function "3.0.3" + convert-source-map "1.7.0" + es6-iterator "2.0.3" + loader-utils "1.2.3" + postcss "7.0.21" + rework "1.0.1" + rework-visit "1.0.0" + source-map "0.6.1" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +rework-visit@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" + integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= + +rework@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" + integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= + dependencies: + convert-source-map "^0.3.3" + css "^2.0.0" + +rimraf@^2.5.4, rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sass-loader@10.0.5: + version "10.0.5" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.5.tgz#f53505b5ddbedf43797470ceb34066ded82bb769" + integrity sha512-2LqoNPtKkZq/XbXNQ4C64GFEleSEHKv6NPSI+bMC/l+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ/gjo2Uf13w== + dependencies: + klona "^2.0.4" + loader-utils "^2.0.0" + neo-async "^2.6.2" + schema-utils "^3.0.0" + semver "^7.3.2" + +sass@^1.29.0: + version "1.29.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.29.0.tgz#ec4e1842c146d8ea9258c28c141b8c2b7c6ab7f1" + integrity sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA== + dependencies: + chokidar ">=2.0.0 <4.0.0" + +scheduler@^0.20.1: + version "0.20.1" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c" + integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +schema-utils@2.7.1, schema-utils@^2.6.6, schema-utils@^2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +schema-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" + integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + dependencies: + "@types/json-schema" "^7.0.6" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +semver@^5.4.1, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.2: + version "7.3.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" + integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + dependencies: + randombytes "^2.1.0" + +set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +sharp@0.26.2: + version "0.26.2" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.26.2.tgz#3d5777d246ae32890afe82a783c1cbb98456a88c" + integrity sha512-bGBPCxRAvdK9bX5HokqEYma4j/Q5+w8Nrmb2/sfgQCLEUx/HblcpmOfp59obL3+knIKnOhyKmDb4tEOhvFlp6Q== + dependencies: + color "^3.1.2" + detect-libc "^1.0.3" + node-addon-api "^3.0.2" + npmlog "^4.1.2" + prebuild-install "^5.3.5" + semver "^7.3.2" + simple-get "^4.0.0" + tar-fs "^2.1.0" + tunnel-agent "^0.6.0" + +shell-quote@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + +signal-exit@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" + +simple-get@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675" + integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@~0.5.12: + version "0.5.19" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@0.7.3: + version "0.7.3" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" + integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== + +source-map@0.8.0-beta.0: + version "0.8.0-beta.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" + integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== + dependencies: + whatwg-url "^7.0.0" + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + dependencies: + figgy-pudding "^3.5.1" + +stacktrace-parser@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== + dependencies: + type-fest "^0.7.1" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.5.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +stream-browserify@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" + integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== + dependencies: + inherits "~2.0.4" + readable-stream "^3.5.0" + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +string-hash@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2": + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +style-loader@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a" + integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg== + dependencies: + loader-utils "^2.0.0" + schema-utils "^2.6.6" + +styled-jsx@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.2.tgz#2474601a26670a6049fb4d3f94bd91695b3ce018" + integrity sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g== + dependencies: + "@babel/types" "7.8.3" + babel-plugin-syntax-jsx "6.18.0" + convert-source-map "1.7.0" + loader-utils "1.2.3" + source-map "0.7.3" + string-hash "1.1.3" + stylis "3.5.4" + stylis-rule-sheet "0.0.10" + +stylis-rule-sheet@0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" + integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw== + +stylis@3.5.4: + version "3.5.4" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe" + integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +tapable@^1.0.0, tapable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tar-fs@^2.0.0, tar-fs@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa" + integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +terser-webpack-plugin@^1.4.3: + version "1.4.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" + integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== + dependencies: + cacache "^12.0.2" + find-cache-dir "^2.1.0" + is-wsl "^1.1.0" + schema-utils "^1.0.0" + serialize-javascript "^4.0.0" + source-map "^0.6.1" + terser "^4.1.2" + webpack-sources "^1.4.0" + worker-farm "^1.7.0" + +terser@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.1.0.tgz#1f4ab81c8619654fdded51f3157b001e1747281d" + integrity sha512-pwC1Jbzahz1ZPU87NQ8B3g5pKbhyJSiHih4gLH6WZiPU8mmS1IlGbB0A2Nuvkj/LCNsgIKctg6GkYwWCeTvXZQ== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +terser@^4.1.2: + version "4.8.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" + integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +timers-browserify@^2.0.4: + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + dependencies: + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +traverse@0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" + integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= + +ts-pnp@^1.1.6: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" + integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== + +tslib@^1.9.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + +type@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" + integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== + +type@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" + integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +unpipe@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + +uri-js@^4.2.2: + version "4.4.0" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" + integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use-subscription@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" + integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== + dependencies: + object-assign "^4.1.1" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +vm-browserify@1.1.2, vm-browserify@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +watchpack-chokidar2@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" + integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== + dependencies: + chokidar "^2.1.8" + +watchpack@2.0.0-beta.13: + version "2.0.0-beta.13" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.0-beta.13.tgz#9d9b0c094b8402139333e04eb6194643c8384f55" + integrity sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +watchpack@^1.7.4: + version "1.7.5" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453" + integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== + dependencies: + graceful-fs "^4.1.2" + neo-async "^2.5.0" + optionalDependencies: + chokidar "^3.4.1" + watchpack-chokidar2 "^2.0.1" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webpack-sources@1.4.3, webpack-sources@^1.4.0, webpack-sources@^1.4.1: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@4.44.1: + version "4.44.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21" + integrity sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + acorn "^6.4.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.3.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.3" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.3" + watchpack "^1.7.4" + webpack-sources "^1.4.1" + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-pm-runs@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" + integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +worker-farm@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + dependencies: + errno "~0.1.7" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +xtend@^4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" + integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== diff --git a/packages/colors/tasks/build.js b/packages/colors/tasks/build.js index 98e01b1dfa8f..a96b78e7868d 100644 --- a/packages/colors/tasks/build.js +++ b/packages/colors/tasks/build.js @@ -21,9 +21,10 @@ const SCSS_DIR = path.resolve(__dirname, '../scss'); const COLORS_ENTRYPOINT = path.join(SCSS_DIR, 'colors.scss'); const INDEX_ENTRYPOINT = path.join(SCSS_DIR, 'index.scss'); const MIXINS_ENTRYPOINT = path.join(SCSS_DIR, 'mixins.scss'); +const MODULES_ENTRYPOINT = path.join(SCSS_DIR, 'module.scss'); const FILE_BANNER = t.Comment(` Code generated by @carbon/colors. DO NOT EDIT. - Copyright IBM Corp. 2018, 2018 + Copyright IBM Corp. 2018, 2020 This source code is licensed under the Apache-2.0 license found in the LICENSE file in the root directory of this source tree. @@ -164,11 +165,75 @@ async function build() { t.SassMixinCall(t.Identifier(`${NAMESPACE}--colors`)), ]); + const sassModule = t.StyleSheet([ + FILE_BANNER, + t.Newline(), + + t.Comment(`/ Value for black +/ @access public +/ @group @carbon/colors`), + t.Assignment({ + id: t.Identifier('black'), + init: t.SassColor('#000000'), + default: true, + }), + t.Newline(), + + t.Comment(`/ Value for white +/ @access public +/ @group @carbon/colors`), + t.Assignment({ + id: t.Identifier('white'), + init: t.SassColor('#ffffff'), + default: true, + }), + t.Newline(), + + ...colorValues.flatMap(({ grade, swatch, value }) => { + return [ + t.Comment(`/ Value for ${swatch}-${grade} from the IBM Design Language +/ @access public +/ @group @carbon/colors`), + t.Assignment({ + id: t.Identifier(`${swatch}-${grade}`), + init: t.SassColor(value), + default: true, + }), + t.Newline(), + ]; + }), + + t.Comment(`/ Colors from the IBM Design Language +/ @access public +/ @group @carbon/colors`), + t.Assignment({ + id: t.Identifier('colors'), + init: t.SassMap({ + properties: Object.keys(colors).map((key) => { + const swatch = paramCase(key); + return t.SassMapProperty({ + key: t.Identifier(swatch), + value: t.SassMap({ + properties: Object.keys(colors[key]).map((grade) => { + return t.SassMapProperty({ + key: t.Identifier(grade), + value: t.SassColor(colors[key][grade]), + }); + }), + }), + }); + }), + }), + default: true, + }), + ]); + await fs.ensureDir(SCSS_DIR); await Promise.all([ fs.writeFile(MIXINS_ENTRYPOINT, generate(mixins).code), fs.writeFile(COLORS_ENTRYPOINT, generate(entrypoint).code), fs.writeFile(INDEX_ENTRYPOINT, generate(entrypoint).code), + fs.writeFile(MODULES_ENTRYPOINT, generate(sassModule).code), ]); } diff --git a/packages/components/docs/sass.md b/packages/components/docs/sass.md index f916e152c2d1..f83b06524f02 100644 --- a/packages/components/docs/sass.md +++ b/packages/components/docs/sass.md @@ -11,6 +11,118 @@ - [@carbon/colors](#carboncolors) - [✅⚠️ibm--colors [mixin]](#ibm--colors-mixin) - [✅carbon--colors [mixin]](#carbon--colors-mixin) + - [✅black [variable]](#black-variable) + - [✅white [variable]](#white-variable) + - [✅black-100 [variable]](#black-100-variable) + - [✅blue-10 [variable]](#blue-10-variable) + - [✅blue-20 [variable]](#blue-20-variable) + - [✅blue-30 [variable]](#blue-30-variable) + - [✅blue-40 [variable]](#blue-40-variable) + - [✅blue-50 [variable]](#blue-50-variable) + - [✅blue-60 [variable]](#blue-60-variable) + - [✅blue-70 [variable]](#blue-70-variable) + - [✅blue-80 [variable]](#blue-80-variable) + - [✅blue-90 [variable]](#blue-90-variable) + - [✅blue-100 [variable]](#blue-100-variable) + - [✅cool-gray-10 [variable]](#cool-gray-10-variable) + - [✅cool-gray-20 [variable]](#cool-gray-20-variable) + - [✅cool-gray-30 [variable]](#cool-gray-30-variable) + - [✅cool-gray-40 [variable]](#cool-gray-40-variable) + - [✅cool-gray-50 [variable]](#cool-gray-50-variable) + - [✅cool-gray-60 [variable]](#cool-gray-60-variable) + - [✅cool-gray-70 [variable]](#cool-gray-70-variable) + - [✅cool-gray-80 [variable]](#cool-gray-80-variable) + - [✅cool-gray-90 [variable]](#cool-gray-90-variable) + - [✅cool-gray-100 [variable]](#cool-gray-100-variable) + - [✅cyan-10 [variable]](#cyan-10-variable) + - [✅cyan-20 [variable]](#cyan-20-variable) + - [✅cyan-30 [variable]](#cyan-30-variable) + - [✅cyan-40 [variable]](#cyan-40-variable) + - [✅cyan-50 [variable]](#cyan-50-variable) + - [✅cyan-60 [variable]](#cyan-60-variable) + - [✅cyan-70 [variable]](#cyan-70-variable) + - [✅cyan-80 [variable]](#cyan-80-variable) + - [✅cyan-90 [variable]](#cyan-90-variable) + - [✅cyan-100 [variable]](#cyan-100-variable) + - [✅gray-10 [variable]](#gray-10-variable) + - [✅gray-20 [variable]](#gray-20-variable) + - [✅gray-30 [variable]](#gray-30-variable) + - [✅gray-40 [variable]](#gray-40-variable) + - [✅gray-50 [variable]](#gray-50-variable) + - [✅gray-60 [variable]](#gray-60-variable) + - [✅gray-70 [variable]](#gray-70-variable) + - [✅gray-80 [variable]](#gray-80-variable) + - [✅gray-90 [variable]](#gray-90-variable) + - [✅gray-100 [variable]](#gray-100-variable) + - [✅green-10 [variable]](#green-10-variable) + - [✅green-20 [variable]](#green-20-variable) + - [✅green-30 [variable]](#green-30-variable) + - [✅green-40 [variable]](#green-40-variable) + - [✅green-50 [variable]](#green-50-variable) + - [✅green-60 [variable]](#green-60-variable) + - [✅green-70 [variable]](#green-70-variable) + - [✅green-80 [variable]](#green-80-variable) + - [✅green-90 [variable]](#green-90-variable) + - [✅green-100 [variable]](#green-100-variable) + - [✅magenta-10 [variable]](#magenta-10-variable) + - [✅magenta-20 [variable]](#magenta-20-variable) + - [✅magenta-30 [variable]](#magenta-30-variable) + - [✅magenta-40 [variable]](#magenta-40-variable) + - [✅magenta-50 [variable]](#magenta-50-variable) + - [✅magenta-60 [variable]](#magenta-60-variable) + - [✅magenta-70 [variable]](#magenta-70-variable) + - [✅magenta-80 [variable]](#magenta-80-variable) + - [✅magenta-90 [variable]](#magenta-90-variable) + - [✅magenta-100 [variable]](#magenta-100-variable) + - [✅orange-40 [variable]](#orange-40-variable) + - [✅orange-60 [variable]](#orange-60-variable) + - [✅orange-70 [variable]](#orange-70-variable) + - [✅purple-10 [variable]](#purple-10-variable) + - [✅purple-20 [variable]](#purple-20-variable) + - [✅purple-30 [variable]](#purple-30-variable) + - [✅purple-40 [variable]](#purple-40-variable) + - [✅purple-50 [variable]](#purple-50-variable) + - [✅purple-60 [variable]](#purple-60-variable) + - [✅purple-70 [variable]](#purple-70-variable) + - [✅purple-80 [variable]](#purple-80-variable) + - [✅purple-90 [variable]](#purple-90-variable) + - [✅purple-100 [variable]](#purple-100-variable) + - [✅red-10 [variable]](#red-10-variable) + - [✅red-20 [variable]](#red-20-variable) + - [✅red-30 [variable]](#red-30-variable) + - [✅red-40 [variable]](#red-40-variable) + - [✅red-50 [variable]](#red-50-variable) + - [✅red-60 [variable]](#red-60-variable) + - [✅red-70 [variable]](#red-70-variable) + - [✅red-80 [variable]](#red-80-variable) + - [✅red-90 [variable]](#red-90-variable) + - [✅red-100 [variable]](#red-100-variable) + - [✅teal-10 [variable]](#teal-10-variable) + - [✅teal-20 [variable]](#teal-20-variable) + - [✅teal-30 [variable]](#teal-30-variable) + - [✅teal-40 [variable]](#teal-40-variable) + - [✅teal-50 [variable]](#teal-50-variable) + - [✅teal-60 [variable]](#teal-60-variable) + - [✅teal-70 [variable]](#teal-70-variable) + - [✅teal-80 [variable]](#teal-80-variable) + - [✅teal-90 [variable]](#teal-90-variable) + - [✅teal-100 [variable]](#teal-100-variable) + - [✅warm-gray-10 [variable]](#warm-gray-10-variable) + - [✅warm-gray-20 [variable]](#warm-gray-20-variable) + - [✅warm-gray-30 [variable]](#warm-gray-30-variable) + - [✅warm-gray-40 [variable]](#warm-gray-40-variable) + - [✅warm-gray-50 [variable]](#warm-gray-50-variable) + - [✅warm-gray-60 [variable]](#warm-gray-60-variable) + - [✅warm-gray-70 [variable]](#warm-gray-70-variable) + - [✅warm-gray-80 [variable]](#warm-gray-80-variable) + - [✅warm-gray-90 [variable]](#warm-gray-90-variable) + - [✅warm-gray-100 [variable]](#warm-gray-100-variable) + - [✅white-0 [variable]](#white-0-variable) + - [✅yellow-20 [variable]](#yellow-20-variable) + - [✅yellow-30 [variable]](#yellow-30-variable) + - [✅yellow-40 [variable]](#yellow-40-variable) + - [✅yellow-50 [variable]](#yellow-50-variable) + - [✅colors [variable]](#colors-variable) - [@carbon/grid](#carbongrid) - [✅carbon--12-column-grid [variable]](#carbon--12-column-grid-variable) - [❌carbon--make-col-ready [mixin]](#carbon--make-col-ready-mixin) @@ -1176,6 +1288,2152 @@ Define color variables +- **Group**: [@carbon/colors](#carboncolors) +- **Requires**: + - [black-100 [variable]](#black-100-variable) + - [blue-10 [variable]](#blue-10-variable) + - [blue-20 [variable]](#blue-20-variable) + - [blue-30 [variable]](#blue-30-variable) + - [blue-40 [variable]](#blue-40-variable) + - [blue-50 [variable]](#blue-50-variable) + - [blue-60 [variable]](#blue-60-variable) + - [blue-70 [variable]](#blue-70-variable) + - [blue-80 [variable]](#blue-80-variable) + - [blue-90 [variable]](#blue-90-variable) + - [blue-100 [variable]](#blue-100-variable) + - [cool-gray-10 [variable]](#cool-gray-10-variable) + - [cool-gray-20 [variable]](#cool-gray-20-variable) + - [cool-gray-30 [variable]](#cool-gray-30-variable) + - [cool-gray-40 [variable]](#cool-gray-40-variable) + - [cool-gray-50 [variable]](#cool-gray-50-variable) + - [cool-gray-60 [variable]](#cool-gray-60-variable) + - [cool-gray-70 [variable]](#cool-gray-70-variable) + - [cool-gray-80 [variable]](#cool-gray-80-variable) + - [cool-gray-90 [variable]](#cool-gray-90-variable) + - [cool-gray-100 [variable]](#cool-gray-100-variable) + - [cyan-10 [variable]](#cyan-10-variable) + - [cyan-20 [variable]](#cyan-20-variable) + - [cyan-30 [variable]](#cyan-30-variable) + - [cyan-40 [variable]](#cyan-40-variable) + - [cyan-50 [variable]](#cyan-50-variable) + - [cyan-60 [variable]](#cyan-60-variable) + - [cyan-70 [variable]](#cyan-70-variable) + - [cyan-80 [variable]](#cyan-80-variable) + - [cyan-90 [variable]](#cyan-90-variable) + - [cyan-100 [variable]](#cyan-100-variable) + - [gray-10 [variable]](#gray-10-variable) + - [gray-20 [variable]](#gray-20-variable) + - [gray-30 [variable]](#gray-30-variable) + - [gray-40 [variable]](#gray-40-variable) + - [gray-50 [variable]](#gray-50-variable) + - [gray-60 [variable]](#gray-60-variable) + - [gray-70 [variable]](#gray-70-variable) + - [gray-80 [variable]](#gray-80-variable) + - [gray-90 [variable]](#gray-90-variable) + - [gray-100 [variable]](#gray-100-variable) + - [green-10 [variable]](#green-10-variable) + - [green-20 [variable]](#green-20-variable) + - [green-30 [variable]](#green-30-variable) + - [green-40 [variable]](#green-40-variable) + - [green-50 [variable]](#green-50-variable) + - [green-60 [variable]](#green-60-variable) + - [green-70 [variable]](#green-70-variable) + - [green-80 [variable]](#green-80-variable) + - [green-90 [variable]](#green-90-variable) + - [green-100 [variable]](#green-100-variable) + - [magenta-10 [variable]](#magenta-10-variable) + - [magenta-20 [variable]](#magenta-20-variable) + - [magenta-30 [variable]](#magenta-30-variable) + - [magenta-40 [variable]](#magenta-40-variable) + - [magenta-50 [variable]](#magenta-50-variable) + - [magenta-60 [variable]](#magenta-60-variable) + - [magenta-70 [variable]](#magenta-70-variable) + - [magenta-80 [variable]](#magenta-80-variable) + - [magenta-90 [variable]](#magenta-90-variable) + - [magenta-100 [variable]](#magenta-100-variable) + - [orange-40 [variable]](#orange-40-variable) + - [orange-60 [variable]](#orange-60-variable) + - [orange-70 [variable]](#orange-70-variable) + - [purple-10 [variable]](#purple-10-variable) + - [purple-20 [variable]](#purple-20-variable) + - [purple-30 [variable]](#purple-30-variable) + - [purple-40 [variable]](#purple-40-variable) + - [purple-50 [variable]](#purple-50-variable) + - [purple-60 [variable]](#purple-60-variable) + - [purple-70 [variable]](#purple-70-variable) + - [purple-80 [variable]](#purple-80-variable) + - [purple-90 [variable]](#purple-90-variable) + - [purple-100 [variable]](#purple-100-variable) + - [red-10 [variable]](#red-10-variable) + - [red-20 [variable]](#red-20-variable) + - [red-30 [variable]](#red-30-variable) + - [red-40 [variable]](#red-40-variable) + - [red-50 [variable]](#red-50-variable) + - [red-60 [variable]](#red-60-variable) + - [red-70 [variable]](#red-70-variable) + - [red-80 [variable]](#red-80-variable) + - [red-90 [variable]](#red-90-variable) + - [red-100 [variable]](#red-100-variable) + - [teal-10 [variable]](#teal-10-variable) + - [teal-20 [variable]](#teal-20-variable) + - [teal-30 [variable]](#teal-30-variable) + - [teal-40 [variable]](#teal-40-variable) + - [teal-50 [variable]](#teal-50-variable) + - [teal-60 [variable]](#teal-60-variable) + - [teal-70 [variable]](#teal-70-variable) + - [teal-80 [variable]](#teal-80-variable) + - [teal-90 [variable]](#teal-90-variable) + - [teal-100 [variable]](#teal-100-variable) + - [warm-gray-10 [variable]](#warm-gray-10-variable) + - [warm-gray-20 [variable]](#warm-gray-20-variable) + - [warm-gray-30 [variable]](#warm-gray-30-variable) + - [warm-gray-40 [variable]](#warm-gray-40-variable) + - [warm-gray-50 [variable]](#warm-gray-50-variable) + - [warm-gray-60 [variable]](#warm-gray-60-variable) + - [warm-gray-70 [variable]](#warm-gray-70-variable) + - [warm-gray-80 [variable]](#warm-gray-80-variable) + - [warm-gray-90 [variable]](#warm-gray-90-variable) + - [warm-gray-100 [variable]](#warm-gray-100-variable) + - [white-0 [variable]](#white-0-variable) + - [yellow-20 [variable]](#yellow-20-variable) + - [yellow-30 [variable]](#yellow-30-variable) + - [yellow-40 [variable]](#yellow-40-variable) + - [yellow-50 [variable]](#yellow-50-variable) + +### ✅black [variable] + +Value for black + +
+Source code + +```scss +$black: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…white [variable] + +Value for white + +
+Source code + +```scss +$white: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…black-100 [variable] + +Value for black-100 from the IBM Design Language + +
+Source code + +```scss +$black-100: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-10 [variable] + +Value for blue-10 from the IBM Design Language + +
+Source code + +```scss +$blue-10: #edf5ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-20 [variable] + +Value for blue-20 from the IBM Design Language + +
+Source code + +```scss +$blue-20: #d0e2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-30 [variable] + +Value for blue-30 from the IBM Design Language + +
+Source code + +```scss +$blue-30: #a6c8ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-40 [variable] + +Value for blue-40 from the IBM Design Language + +
+Source code + +```scss +$blue-40: #78a9ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-50 [variable] + +Value for blue-50 from the IBM Design Language + +
+Source code + +```scss +$blue-50: #4589ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-60 [variable] + +Value for blue-60 from the IBM Design Language + +
+Source code + +```scss +$blue-60: #0f62fe; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-70 [variable] + +Value for blue-70 from the IBM Design Language + +
+Source code + +```scss +$blue-70: #0043ce; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-80 [variable] + +Value for blue-80 from the IBM Design Language + +
+Source code + +```scss +$blue-80: #002d9c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-90 [variable] + +Value for blue-90 from the IBM Design Language + +
+Source code + +```scss +$blue-90: #001d6c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-100 [variable] + +Value for blue-100 from the IBM Design Language + +
+Source code + +```scss +$blue-100: #001141; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-10 [variable] + +Value for cool-gray-10 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-10: #f2f4f8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-20 [variable] + +Value for cool-gray-20 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-20: #dde1e6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-30 [variable] + +Value for cool-gray-30 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-30: #c1c7cd; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-40 [variable] + +Value for cool-gray-40 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-40: #a2a9b0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-50 [variable] + +Value for cool-gray-50 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-50: #878d96; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-60 [variable] + +Value for cool-gray-60 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-60: #697077; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-70 [variable] + +Value for cool-gray-70 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-70: #4d5358; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-80 [variable] + +Value for cool-gray-80 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-80: #343a3f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-90 [variable] + +Value for cool-gray-90 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-90: #21272a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-100 [variable] + +Value for cool-gray-100 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-100: #121619; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-10 [variable] + +Value for cyan-10 from the IBM Design Language + +
+Source code + +```scss +$cyan-10: #e5f6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-20 [variable] + +Value for cyan-20 from the IBM Design Language + +
+Source code + +```scss +$cyan-20: #bae6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-30 [variable] + +Value for cyan-30 from the IBM Design Language + +
+Source code + +```scss +$cyan-30: #82cfff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-40 [variable] + +Value for cyan-40 from the IBM Design Language + +
+Source code + +```scss +$cyan-40: #33b1ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-50 [variable] + +Value for cyan-50 from the IBM Design Language + +
+Source code + +```scss +$cyan-50: #1192e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-60 [variable] + +Value for cyan-60 from the IBM Design Language + +
+Source code + +```scss +$cyan-60: #0072c3; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-70 [variable] + +Value for cyan-70 from the IBM Design Language + +
+Source code + +```scss +$cyan-70: #00539a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-80 [variable] + +Value for cyan-80 from the IBM Design Language + +
+Source code + +```scss +$cyan-80: #003a6d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-90 [variable] + +Value for cyan-90 from the IBM Design Language + +
+Source code + +```scss +$cyan-90: #012749; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-100 [variable] + +Value for cyan-100 from the IBM Design Language + +
+Source code + +```scss +$cyan-100: #061727; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-10 [variable] + +Value for gray-10 from the IBM Design Language + +
+Source code + +```scss +$gray-10: #f4f4f4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-20 [variable] + +Value for gray-20 from the IBM Design Language + +
+Source code + +```scss +$gray-20: #e0e0e0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-30 [variable] + +Value for gray-30 from the IBM Design Language + +
+Source code + +```scss +$gray-30: #c6c6c6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-40 [variable] + +Value for gray-40 from the IBM Design Language + +
+Source code + +```scss +$gray-40: #a8a8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-50 [variable] + +Value for gray-50 from the IBM Design Language + +
+Source code + +```scss +$gray-50: #8d8d8d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-60 [variable] + +Value for gray-60 from the IBM Design Language + +
+Source code + +```scss +$gray-60: #6f6f6f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-70 [variable] + +Value for gray-70 from the IBM Design Language + +
+Source code + +```scss +$gray-70: #525252; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-80 [variable] + +Value for gray-80 from the IBM Design Language + +
+Source code + +```scss +$gray-80: #393939; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-90 [variable] + +Value for gray-90 from the IBM Design Language + +
+Source code + +```scss +$gray-90: #262626; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-100 [variable] + +Value for gray-100 from the IBM Design Language + +
+Source code + +```scss +$gray-100: #161616; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-10 [variable] + +Value for green-10 from the IBM Design Language + +
+Source code + +```scss +$green-10: #defbe6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-20 [variable] + +Value for green-20 from the IBM Design Language + +
+Source code + +```scss +$green-20: #a7f0ba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-30 [variable] + +Value for green-30 from the IBM Design Language + +
+Source code + +```scss +$green-30: #6fdc8c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-40 [variable] + +Value for green-40 from the IBM Design Language + +
+Source code + +```scss +$green-40: #42be65; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-50 [variable] + +Value for green-50 from the IBM Design Language + +
+Source code + +```scss +$green-50: #24a148; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-60 [variable] + +Value for green-60 from the IBM Design Language + +
+Source code + +```scss +$green-60: #198038; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-70 [variable] + +Value for green-70 from the IBM Design Language + +
+Source code + +```scss +$green-70: #0e6027; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-80 [variable] + +Value for green-80 from the IBM Design Language + +
+Source code + +```scss +$green-80: #044317; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-90 [variable] + +Value for green-90 from the IBM Design Language + +
+Source code + +```scss +$green-90: #022d0d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-100 [variable] + +Value for green-100 from the IBM Design Language + +
+Source code + +```scss +$green-100: #071908; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-10 [variable] + +Value for magenta-10 from the IBM Design Language + +
+Source code + +```scss +$magenta-10: #fff0f7; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-20 [variable] + +Value for magenta-20 from the IBM Design Language + +
+Source code + +```scss +$magenta-20: #ffd6e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-30 [variable] + +Value for magenta-30 from the IBM Design Language + +
+Source code + +```scss +$magenta-30: #ffafd2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-40 [variable] + +Value for magenta-40 from the IBM Design Language + +
+Source code + +```scss +$magenta-40: #ff7eb6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-50 [variable] + +Value for magenta-50 from the IBM Design Language + +
+Source code + +```scss +$magenta-50: #ee5396; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-60 [variable] + +Value for magenta-60 from the IBM Design Language + +
+Source code + +```scss +$magenta-60: #d02670; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-70 [variable] + +Value for magenta-70 from the IBM Design Language + +
+Source code + +```scss +$magenta-70: #9f1853; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-80 [variable] + +Value for magenta-80 from the IBM Design Language + +
+Source code + +```scss +$magenta-80: #740937; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-90 [variable] + +Value for magenta-90 from the IBM Design Language + +
+Source code + +```scss +$magenta-90: #510224; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-100 [variable] + +Value for magenta-100 from the IBM Design Language + +
+Source code + +```scss +$magenta-100: #2a0a18; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-40 [variable] + +Value for orange-40 from the IBM Design Language + +
+Source code + +```scss +$orange-40: #ff832b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-60 [variable] + +Value for orange-60 from the IBM Design Language + +
+Source code + +```scss +$orange-60: #ba4e00; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-70 [variable] + +Value for orange-70 from the IBM Design Language + +
+Source code + +```scss +$orange-70: #8a3800; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-10 [variable] + +Value for purple-10 from the IBM Design Language + +
+Source code + +```scss +$purple-10: #f6f2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-20 [variable] + +Value for purple-20 from the IBM Design Language + +
+Source code + +```scss +$purple-20: #e8daff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-30 [variable] + +Value for purple-30 from the IBM Design Language + +
+Source code + +```scss +$purple-30: #d4bbff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-40 [variable] + +Value for purple-40 from the IBM Design Language + +
+Source code + +```scss +$purple-40: #be95ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-50 [variable] + +Value for purple-50 from the IBM Design Language + +
+Source code + +```scss +$purple-50: #a56eff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-60 [variable] + +Value for purple-60 from the IBM Design Language + +
+Source code + +```scss +$purple-60: #8a3ffc; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-70 [variable] + +Value for purple-70 from the IBM Design Language + +
+Source code + +```scss +$purple-70: #6929c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-80 [variable] + +Value for purple-80 from the IBM Design Language + +
+Source code + +```scss +$purple-80: #491d8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-90 [variable] + +Value for purple-90 from the IBM Design Language + +
+Source code + +```scss +$purple-90: #31135e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-100 [variable] + +Value for purple-100 from the IBM Design Language + +
+Source code + +```scss +$purple-100: #1c0f30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-10 [variable] + +Value for red-10 from the IBM Design Language + +
+Source code + +```scss +$red-10: #fff1f1; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-20 [variable] + +Value for red-20 from the IBM Design Language + +
+Source code + +```scss +$red-20: #ffd7d9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-30 [variable] + +Value for red-30 from the IBM Design Language + +
+Source code + +```scss +$red-30: #ffb3b8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-40 [variable] + +Value for red-40 from the IBM Design Language + +
+Source code + +```scss +$red-40: #ff8389; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-50 [variable] + +Value for red-50 from the IBM Design Language + +
+Source code + +```scss +$red-50: #fa4d56; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-60 [variable] + +Value for red-60 from the IBM Design Language + +
+Source code + +```scss +$red-60: #da1e28; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-70 [variable] + +Value for red-70 from the IBM Design Language + +
+Source code + +```scss +$red-70: #a2191f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-80 [variable] + +Value for red-80 from the IBM Design Language + +
+Source code + +```scss +$red-80: #750e13; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-90 [variable] + +Value for red-90 from the IBM Design Language + +
+Source code + +```scss +$red-90: #520408; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-100 [variable] + +Value for red-100 from the IBM Design Language + +
+Source code + +```scss +$red-100: #2d0709; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-10 [variable] + +Value for teal-10 from the IBM Design Language + +
+Source code + +```scss +$teal-10: #d9fbfb; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-20 [variable] + +Value for teal-20 from the IBM Design Language + +
+Source code + +```scss +$teal-20: #9ef0f0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-30 [variable] + +Value for teal-30 from the IBM Design Language + +
+Source code + +```scss +$teal-30: #3ddbd9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-40 [variable] + +Value for teal-40 from the IBM Design Language + +
+Source code + +```scss +$teal-40: #08bdba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-50 [variable] + +Value for teal-50 from the IBM Design Language + +
+Source code + +```scss +$teal-50: #009d9a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-60 [variable] + +Value for teal-60 from the IBM Design Language + +
+Source code + +```scss +$teal-60: #007d79; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-70 [variable] + +Value for teal-70 from the IBM Design Language + +
+Source code + +```scss +$teal-70: #005d5d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-80 [variable] + +Value for teal-80 from the IBM Design Language + +
+Source code + +```scss +$teal-80: #004144; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-90 [variable] + +Value for teal-90 from the IBM Design Language + +
+Source code + +```scss +$teal-90: #022b30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-100 [variable] + +Value for teal-100 from the IBM Design Language + +
+Source code + +```scss +$teal-100: #081a1c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-10 [variable] + +Value for warm-gray-10 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-10: #f7f3f2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-20 [variable] + +Value for warm-gray-20 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-20: #e5e0df; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-30 [variable] + +Value for warm-gray-30 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-30: #cac5c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-40 [variable] + +Value for warm-gray-40 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-40: #ada8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-50 [variable] + +Value for warm-gray-50 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-50: #8f8b8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-60 [variable] + +Value for warm-gray-60 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-60: #726e6e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-70 [variable] + +Value for warm-gray-70 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-70: #565151; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-80 [variable] + +Value for warm-gray-80 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-80: #3c3838; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-90 [variable] + +Value for warm-gray-90 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-90: #272525; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-100 [variable] + +Value for warm-gray-100 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-100: #171414; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…white-0 [variable] + +Value for white-0 from the IBM Design Language + +
+Source code + +```scss +$white-0: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-20 [variable] + +Value for yellow-20 from the IBM Design Language + +
+Source code + +```scss +$yellow-20: #fdd13a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-30 [variable] + +Value for yellow-30 from the IBM Design Language + +
+Source code + +```scss +$yellow-30: #f1c21b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-40 [variable] + +Value for yellow-40 from the IBM Design Language + +
+Source code + +```scss +$yellow-40: #d2a106; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-50 [variable] + +Value for yellow-50 from the IBM Design Language + +
+Source code + +```scss +$yellow-50: #b28600; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…colors [variable] + +Colors from the IBM Design Language + +
+Source code + +```scss +$colors: ( + black: ( + 100: #000000, + ), + blue: ( + 10: #edf5ff, + 20: #d0e2ff, + 30: #a6c8ff, + 40: #78a9ff, + 50: #4589ff, + 60: #0f62fe, + 70: #0043ce, + 80: #002d9c, + 90: #001d6c, + 100: #001141, + ), + cool-gray: ( + 10: #f2f4f8, + 20: #dde1e6, + 30: #c1c7cd, + 40: #a2a9b0, + 50: #878d96, + 60: #697077, + 70: #4d5358, + 80: #343a3f, + 90: #21272a, + 100: #121619, + ), + cyan: ( + 10: #e5f6ff, + 20: #bae6ff, + 30: #82cfff, + 40: #33b1ff, + 50: #1192e8, + 60: #0072c3, + 70: #00539a, + 80: #003a6d, + 90: #012749, + 100: #061727, + ), + gray: ( + 10: #f4f4f4, + 20: #e0e0e0, + 30: #c6c6c6, + 40: #a8a8a8, + 50: #8d8d8d, + 60: #6f6f6f, + 70: #525252, + 80: #393939, + 90: #262626, + 100: #161616, + ), + green: ( + 10: #defbe6, + 20: #a7f0ba, + 30: #6fdc8c, + 40: #42be65, + 50: #24a148, + 60: #198038, + 70: #0e6027, + 80: #044317, + 90: #022d0d, + 100: #071908, + ), + magenta: ( + 10: #fff0f7, + 20: #ffd6e8, + 30: #ffafd2, + 40: #ff7eb6, + 50: #ee5396, + 60: #d02670, + 70: #9f1853, + 80: #740937, + 90: #510224, + 100: #2a0a18, + ), + orange: ( + 40: #ff832b, + 60: #ba4e00, + 70: #8a3800, + ), + purple: ( + 10: #f6f2ff, + 20: #e8daff, + 30: #d4bbff, + 40: #be95ff, + 50: #a56eff, + 60: #8a3ffc, + 70: #6929c4, + 80: #491d8b, + 90: #31135e, + 100: #1c0f30, + ), + red: ( + 10: #fff1f1, + 20: #ffd7d9, + 30: #ffb3b8, + 40: #ff8389, + 50: #fa4d56, + 60: #da1e28, + 70: #a2191f, + 80: #750e13, + 90: #520408, + 100: #2d0709, + ), + teal: ( + 10: #d9fbfb, + 20: #9ef0f0, + 30: #3ddbd9, + 40: #08bdba, + 50: #009d9a, + 60: #007d79, + 70: #005d5d, + 80: #004144, + 90: #022b30, + 100: #081a1c, + ), + warm-gray: ( + 10: #f7f3f2, + 20: #e5e0df, + 30: #cac5c4, + 40: #ada8a8, + 50: #8f8b8b, + 60: #726e6e, + 70: #565151, + 80: #3c3838, + 90: #272525, + 100: #171414, + ), + white: ( + 0: #ffffff, + ), + yellow: ( + 20: #fdd13a, + 30: #f1c21b, + 40: #d2a106, + 50: #b28600, + ), +); +``` + +
+ - **Group**: [@carbon/colors](#carboncolors) ## @carbon/grid diff --git a/packages/elements/docs/sass.md b/packages/elements/docs/sass.md index 62c9c1d4a460..de5aa51e3335 100644 --- a/packages/elements/docs/sass.md +++ b/packages/elements/docs/sass.md @@ -11,6 +11,118 @@ - [@carbon/colors](#carboncolors) - [✅⚠️ibm--colors [mixin]](#ibm--colors-mixin) - [✅carbon--colors [mixin]](#carbon--colors-mixin) + - [✅black [variable]](#black-variable) + - [✅white [variable]](#white-variable) + - [✅black-100 [variable]](#black-100-variable) + - [✅blue-10 [variable]](#blue-10-variable) + - [✅blue-20 [variable]](#blue-20-variable) + - [✅blue-30 [variable]](#blue-30-variable) + - [✅blue-40 [variable]](#blue-40-variable) + - [✅blue-50 [variable]](#blue-50-variable) + - [✅blue-60 [variable]](#blue-60-variable) + - [✅blue-70 [variable]](#blue-70-variable) + - [✅blue-80 [variable]](#blue-80-variable) + - [✅blue-90 [variable]](#blue-90-variable) + - [✅blue-100 [variable]](#blue-100-variable) + - [✅cool-gray-10 [variable]](#cool-gray-10-variable) + - [✅cool-gray-20 [variable]](#cool-gray-20-variable) + - [✅cool-gray-30 [variable]](#cool-gray-30-variable) + - [✅cool-gray-40 [variable]](#cool-gray-40-variable) + - [✅cool-gray-50 [variable]](#cool-gray-50-variable) + - [✅cool-gray-60 [variable]](#cool-gray-60-variable) + - [✅cool-gray-70 [variable]](#cool-gray-70-variable) + - [✅cool-gray-80 [variable]](#cool-gray-80-variable) + - [✅cool-gray-90 [variable]](#cool-gray-90-variable) + - [✅cool-gray-100 [variable]](#cool-gray-100-variable) + - [✅cyan-10 [variable]](#cyan-10-variable) + - [✅cyan-20 [variable]](#cyan-20-variable) + - [✅cyan-30 [variable]](#cyan-30-variable) + - [✅cyan-40 [variable]](#cyan-40-variable) + - [✅cyan-50 [variable]](#cyan-50-variable) + - [✅cyan-60 [variable]](#cyan-60-variable) + - [✅cyan-70 [variable]](#cyan-70-variable) + - [✅cyan-80 [variable]](#cyan-80-variable) + - [✅cyan-90 [variable]](#cyan-90-variable) + - [✅cyan-100 [variable]](#cyan-100-variable) + - [✅gray-10 [variable]](#gray-10-variable) + - [✅gray-20 [variable]](#gray-20-variable) + - [✅gray-30 [variable]](#gray-30-variable) + - [✅gray-40 [variable]](#gray-40-variable) + - [✅gray-50 [variable]](#gray-50-variable) + - [✅gray-60 [variable]](#gray-60-variable) + - [✅gray-70 [variable]](#gray-70-variable) + - [✅gray-80 [variable]](#gray-80-variable) + - [✅gray-90 [variable]](#gray-90-variable) + - [✅gray-100 [variable]](#gray-100-variable) + - [✅green-10 [variable]](#green-10-variable) + - [✅green-20 [variable]](#green-20-variable) + - [✅green-30 [variable]](#green-30-variable) + - [✅green-40 [variable]](#green-40-variable) + - [✅green-50 [variable]](#green-50-variable) + - [✅green-60 [variable]](#green-60-variable) + - [✅green-70 [variable]](#green-70-variable) + - [✅green-80 [variable]](#green-80-variable) + - [✅green-90 [variable]](#green-90-variable) + - [✅green-100 [variable]](#green-100-variable) + - [✅magenta-10 [variable]](#magenta-10-variable) + - [✅magenta-20 [variable]](#magenta-20-variable) + - [✅magenta-30 [variable]](#magenta-30-variable) + - [✅magenta-40 [variable]](#magenta-40-variable) + - [✅magenta-50 [variable]](#magenta-50-variable) + - [✅magenta-60 [variable]](#magenta-60-variable) + - [✅magenta-70 [variable]](#magenta-70-variable) + - [✅magenta-80 [variable]](#magenta-80-variable) + - [✅magenta-90 [variable]](#magenta-90-variable) + - [✅magenta-100 [variable]](#magenta-100-variable) + - [✅orange-40 [variable]](#orange-40-variable) + - [✅orange-60 [variable]](#orange-60-variable) + - [✅orange-70 [variable]](#orange-70-variable) + - [✅purple-10 [variable]](#purple-10-variable) + - [✅purple-20 [variable]](#purple-20-variable) + - [✅purple-30 [variable]](#purple-30-variable) + - [✅purple-40 [variable]](#purple-40-variable) + - [✅purple-50 [variable]](#purple-50-variable) + - [✅purple-60 [variable]](#purple-60-variable) + - [✅purple-70 [variable]](#purple-70-variable) + - [✅purple-80 [variable]](#purple-80-variable) + - [✅purple-90 [variable]](#purple-90-variable) + - [✅purple-100 [variable]](#purple-100-variable) + - [✅red-10 [variable]](#red-10-variable) + - [✅red-20 [variable]](#red-20-variable) + - [✅red-30 [variable]](#red-30-variable) + - [✅red-40 [variable]](#red-40-variable) + - [✅red-50 [variable]](#red-50-variable) + - [✅red-60 [variable]](#red-60-variable) + - [✅red-70 [variable]](#red-70-variable) + - [✅red-80 [variable]](#red-80-variable) + - [✅red-90 [variable]](#red-90-variable) + - [✅red-100 [variable]](#red-100-variable) + - [✅teal-10 [variable]](#teal-10-variable) + - [✅teal-20 [variable]](#teal-20-variable) + - [✅teal-30 [variable]](#teal-30-variable) + - [✅teal-40 [variable]](#teal-40-variable) + - [✅teal-50 [variable]](#teal-50-variable) + - [✅teal-60 [variable]](#teal-60-variable) + - [✅teal-70 [variable]](#teal-70-variable) + - [✅teal-80 [variable]](#teal-80-variable) + - [✅teal-90 [variable]](#teal-90-variable) + - [✅teal-100 [variable]](#teal-100-variable) + - [✅warm-gray-10 [variable]](#warm-gray-10-variable) + - [✅warm-gray-20 [variable]](#warm-gray-20-variable) + - [✅warm-gray-30 [variable]](#warm-gray-30-variable) + - [✅warm-gray-40 [variable]](#warm-gray-40-variable) + - [✅warm-gray-50 [variable]](#warm-gray-50-variable) + - [✅warm-gray-60 [variable]](#warm-gray-60-variable) + - [✅warm-gray-70 [variable]](#warm-gray-70-variable) + - [✅warm-gray-80 [variable]](#warm-gray-80-variable) + - [✅warm-gray-90 [variable]](#warm-gray-90-variable) + - [✅warm-gray-100 [variable]](#warm-gray-100-variable) + - [✅white-0 [variable]](#white-0-variable) + - [✅yellow-20 [variable]](#yellow-20-variable) + - [✅yellow-30 [variable]](#yellow-30-variable) + - [✅yellow-40 [variable]](#yellow-40-variable) + - [✅yellow-50 [variable]](#yellow-50-variable) + - [✅colors [variable]](#colors-variable) - [@carbon/grid](#carbongrid) - [✅carbon--12-column-grid [variable]](#carbon--12-column-grid-variable) - [❌carbon--make-col-ready [mixin]](#carbon--make-col-ready-mixin) @@ -1017,6 +1129,2152 @@ Define color variables +- **Group**: [@carbon/colors](#carboncolors) +- **Requires**: + - [black-100 [variable]](#black-100-variable) + - [blue-10 [variable]](#blue-10-variable) + - [blue-20 [variable]](#blue-20-variable) + - [blue-30 [variable]](#blue-30-variable) + - [blue-40 [variable]](#blue-40-variable) + - [blue-50 [variable]](#blue-50-variable) + - [blue-60 [variable]](#blue-60-variable) + - [blue-70 [variable]](#blue-70-variable) + - [blue-80 [variable]](#blue-80-variable) + - [blue-90 [variable]](#blue-90-variable) + - [blue-100 [variable]](#blue-100-variable) + - [cool-gray-10 [variable]](#cool-gray-10-variable) + - [cool-gray-20 [variable]](#cool-gray-20-variable) + - [cool-gray-30 [variable]](#cool-gray-30-variable) + - [cool-gray-40 [variable]](#cool-gray-40-variable) + - [cool-gray-50 [variable]](#cool-gray-50-variable) + - [cool-gray-60 [variable]](#cool-gray-60-variable) + - [cool-gray-70 [variable]](#cool-gray-70-variable) + - [cool-gray-80 [variable]](#cool-gray-80-variable) + - [cool-gray-90 [variable]](#cool-gray-90-variable) + - [cool-gray-100 [variable]](#cool-gray-100-variable) + - [cyan-10 [variable]](#cyan-10-variable) + - [cyan-20 [variable]](#cyan-20-variable) + - [cyan-30 [variable]](#cyan-30-variable) + - [cyan-40 [variable]](#cyan-40-variable) + - [cyan-50 [variable]](#cyan-50-variable) + - [cyan-60 [variable]](#cyan-60-variable) + - [cyan-70 [variable]](#cyan-70-variable) + - [cyan-80 [variable]](#cyan-80-variable) + - [cyan-90 [variable]](#cyan-90-variable) + - [cyan-100 [variable]](#cyan-100-variable) + - [gray-10 [variable]](#gray-10-variable) + - [gray-20 [variable]](#gray-20-variable) + - [gray-30 [variable]](#gray-30-variable) + - [gray-40 [variable]](#gray-40-variable) + - [gray-50 [variable]](#gray-50-variable) + - [gray-60 [variable]](#gray-60-variable) + - [gray-70 [variable]](#gray-70-variable) + - [gray-80 [variable]](#gray-80-variable) + - [gray-90 [variable]](#gray-90-variable) + - [gray-100 [variable]](#gray-100-variable) + - [green-10 [variable]](#green-10-variable) + - [green-20 [variable]](#green-20-variable) + - [green-30 [variable]](#green-30-variable) + - [green-40 [variable]](#green-40-variable) + - [green-50 [variable]](#green-50-variable) + - [green-60 [variable]](#green-60-variable) + - [green-70 [variable]](#green-70-variable) + - [green-80 [variable]](#green-80-variable) + - [green-90 [variable]](#green-90-variable) + - [green-100 [variable]](#green-100-variable) + - [magenta-10 [variable]](#magenta-10-variable) + - [magenta-20 [variable]](#magenta-20-variable) + - [magenta-30 [variable]](#magenta-30-variable) + - [magenta-40 [variable]](#magenta-40-variable) + - [magenta-50 [variable]](#magenta-50-variable) + - [magenta-60 [variable]](#magenta-60-variable) + - [magenta-70 [variable]](#magenta-70-variable) + - [magenta-80 [variable]](#magenta-80-variable) + - [magenta-90 [variable]](#magenta-90-variable) + - [magenta-100 [variable]](#magenta-100-variable) + - [orange-40 [variable]](#orange-40-variable) + - [orange-60 [variable]](#orange-60-variable) + - [orange-70 [variable]](#orange-70-variable) + - [purple-10 [variable]](#purple-10-variable) + - [purple-20 [variable]](#purple-20-variable) + - [purple-30 [variable]](#purple-30-variable) + - [purple-40 [variable]](#purple-40-variable) + - [purple-50 [variable]](#purple-50-variable) + - [purple-60 [variable]](#purple-60-variable) + - [purple-70 [variable]](#purple-70-variable) + - [purple-80 [variable]](#purple-80-variable) + - [purple-90 [variable]](#purple-90-variable) + - [purple-100 [variable]](#purple-100-variable) + - [red-10 [variable]](#red-10-variable) + - [red-20 [variable]](#red-20-variable) + - [red-30 [variable]](#red-30-variable) + - [red-40 [variable]](#red-40-variable) + - [red-50 [variable]](#red-50-variable) + - [red-60 [variable]](#red-60-variable) + - [red-70 [variable]](#red-70-variable) + - [red-80 [variable]](#red-80-variable) + - [red-90 [variable]](#red-90-variable) + - [red-100 [variable]](#red-100-variable) + - [teal-10 [variable]](#teal-10-variable) + - [teal-20 [variable]](#teal-20-variable) + - [teal-30 [variable]](#teal-30-variable) + - [teal-40 [variable]](#teal-40-variable) + - [teal-50 [variable]](#teal-50-variable) + - [teal-60 [variable]](#teal-60-variable) + - [teal-70 [variable]](#teal-70-variable) + - [teal-80 [variable]](#teal-80-variable) + - [teal-90 [variable]](#teal-90-variable) + - [teal-100 [variable]](#teal-100-variable) + - [warm-gray-10 [variable]](#warm-gray-10-variable) + - [warm-gray-20 [variable]](#warm-gray-20-variable) + - [warm-gray-30 [variable]](#warm-gray-30-variable) + - [warm-gray-40 [variable]](#warm-gray-40-variable) + - [warm-gray-50 [variable]](#warm-gray-50-variable) + - [warm-gray-60 [variable]](#warm-gray-60-variable) + - [warm-gray-70 [variable]](#warm-gray-70-variable) + - [warm-gray-80 [variable]](#warm-gray-80-variable) + - [warm-gray-90 [variable]](#warm-gray-90-variable) + - [warm-gray-100 [variable]](#warm-gray-100-variable) + - [white-0 [variable]](#white-0-variable) + - [yellow-20 [variable]](#yellow-20-variable) + - [yellow-30 [variable]](#yellow-30-variable) + - [yellow-40 [variable]](#yellow-40-variable) + - [yellow-50 [variable]](#yellow-50-variable) + +### ✅black [variable] + +Value for black + +
+Source code + +```scss +$black: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…white [variable] + +Value for white + +
+Source code + +```scss +$white: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) + +### âś…black-100 [variable] + +Value for black-100 from the IBM Design Language + +
+Source code + +```scss +$black-100: #000000; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-10 [variable] + +Value for blue-10 from the IBM Design Language + +
+Source code + +```scss +$blue-10: #edf5ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-20 [variable] + +Value for blue-20 from the IBM Design Language + +
+Source code + +```scss +$blue-20: #d0e2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-30 [variable] + +Value for blue-30 from the IBM Design Language + +
+Source code + +```scss +$blue-30: #a6c8ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-40 [variable] + +Value for blue-40 from the IBM Design Language + +
+Source code + +```scss +$blue-40: #78a9ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-50 [variable] + +Value for blue-50 from the IBM Design Language + +
+Source code + +```scss +$blue-50: #4589ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-60 [variable] + +Value for blue-60 from the IBM Design Language + +
+Source code + +```scss +$blue-60: #0f62fe; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-70 [variable] + +Value for blue-70 from the IBM Design Language + +
+Source code + +```scss +$blue-70: #0043ce; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-80 [variable] + +Value for blue-80 from the IBM Design Language + +
+Source code + +```scss +$blue-80: #002d9c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-90 [variable] + +Value for blue-90 from the IBM Design Language + +
+Source code + +```scss +$blue-90: #001d6c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…blue-100 [variable] + +Value for blue-100 from the IBM Design Language + +
+Source code + +```scss +$blue-100: #001141; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-10 [variable] + +Value for cool-gray-10 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-10: #f2f4f8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-20 [variable] + +Value for cool-gray-20 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-20: #dde1e6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-30 [variable] + +Value for cool-gray-30 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-30: #c1c7cd; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-40 [variable] + +Value for cool-gray-40 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-40: #a2a9b0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-50 [variable] + +Value for cool-gray-50 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-50: #878d96; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-60 [variable] + +Value for cool-gray-60 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-60: #697077; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-70 [variable] + +Value for cool-gray-70 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-70: #4d5358; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-80 [variable] + +Value for cool-gray-80 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-80: #343a3f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-90 [variable] + +Value for cool-gray-90 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-90: #21272a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cool-gray-100 [variable] + +Value for cool-gray-100 from the IBM Design Language + +
+Source code + +```scss +$cool-gray-100: #121619; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-10 [variable] + +Value for cyan-10 from the IBM Design Language + +
+Source code + +```scss +$cyan-10: #e5f6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-20 [variable] + +Value for cyan-20 from the IBM Design Language + +
+Source code + +```scss +$cyan-20: #bae6ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-30 [variable] + +Value for cyan-30 from the IBM Design Language + +
+Source code + +```scss +$cyan-30: #82cfff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-40 [variable] + +Value for cyan-40 from the IBM Design Language + +
+Source code + +```scss +$cyan-40: #33b1ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-50 [variable] + +Value for cyan-50 from the IBM Design Language + +
+Source code + +```scss +$cyan-50: #1192e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-60 [variable] + +Value for cyan-60 from the IBM Design Language + +
+Source code + +```scss +$cyan-60: #0072c3; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-70 [variable] + +Value for cyan-70 from the IBM Design Language + +
+Source code + +```scss +$cyan-70: #00539a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-80 [variable] + +Value for cyan-80 from the IBM Design Language + +
+Source code + +```scss +$cyan-80: #003a6d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-90 [variable] + +Value for cyan-90 from the IBM Design Language + +
+Source code + +```scss +$cyan-90: #012749; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…cyan-100 [variable] + +Value for cyan-100 from the IBM Design Language + +
+Source code + +```scss +$cyan-100: #061727; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-10 [variable] + +Value for gray-10 from the IBM Design Language + +
+Source code + +```scss +$gray-10: #f4f4f4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-20 [variable] + +Value for gray-20 from the IBM Design Language + +
+Source code + +```scss +$gray-20: #e0e0e0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-30 [variable] + +Value for gray-30 from the IBM Design Language + +
+Source code + +```scss +$gray-30: #c6c6c6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-40 [variable] + +Value for gray-40 from the IBM Design Language + +
+Source code + +```scss +$gray-40: #a8a8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-50 [variable] + +Value for gray-50 from the IBM Design Language + +
+Source code + +```scss +$gray-50: #8d8d8d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-60 [variable] + +Value for gray-60 from the IBM Design Language + +
+Source code + +```scss +$gray-60: #6f6f6f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-70 [variable] + +Value for gray-70 from the IBM Design Language + +
+Source code + +```scss +$gray-70: #525252; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-80 [variable] + +Value for gray-80 from the IBM Design Language + +
+Source code + +```scss +$gray-80: #393939; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-90 [variable] + +Value for gray-90 from the IBM Design Language + +
+Source code + +```scss +$gray-90: #262626; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…gray-100 [variable] + +Value for gray-100 from the IBM Design Language + +
+Source code + +```scss +$gray-100: #161616; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-10 [variable] + +Value for green-10 from the IBM Design Language + +
+Source code + +```scss +$green-10: #defbe6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-20 [variable] + +Value for green-20 from the IBM Design Language + +
+Source code + +```scss +$green-20: #a7f0ba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-30 [variable] + +Value for green-30 from the IBM Design Language + +
+Source code + +```scss +$green-30: #6fdc8c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-40 [variable] + +Value for green-40 from the IBM Design Language + +
+Source code + +```scss +$green-40: #42be65; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-50 [variable] + +Value for green-50 from the IBM Design Language + +
+Source code + +```scss +$green-50: #24a148; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-60 [variable] + +Value for green-60 from the IBM Design Language + +
+Source code + +```scss +$green-60: #198038; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-70 [variable] + +Value for green-70 from the IBM Design Language + +
+Source code + +```scss +$green-70: #0e6027; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-80 [variable] + +Value for green-80 from the IBM Design Language + +
+Source code + +```scss +$green-80: #044317; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-90 [variable] + +Value for green-90 from the IBM Design Language + +
+Source code + +```scss +$green-90: #022d0d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…green-100 [variable] + +Value for green-100 from the IBM Design Language + +
+Source code + +```scss +$green-100: #071908; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-10 [variable] + +Value for magenta-10 from the IBM Design Language + +
+Source code + +```scss +$magenta-10: #fff0f7; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-20 [variable] + +Value for magenta-20 from the IBM Design Language + +
+Source code + +```scss +$magenta-20: #ffd6e8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-30 [variable] + +Value for magenta-30 from the IBM Design Language + +
+Source code + +```scss +$magenta-30: #ffafd2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-40 [variable] + +Value for magenta-40 from the IBM Design Language + +
+Source code + +```scss +$magenta-40: #ff7eb6; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-50 [variable] + +Value for magenta-50 from the IBM Design Language + +
+Source code + +```scss +$magenta-50: #ee5396; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-60 [variable] + +Value for magenta-60 from the IBM Design Language + +
+Source code + +```scss +$magenta-60: #d02670; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-70 [variable] + +Value for magenta-70 from the IBM Design Language + +
+Source code + +```scss +$magenta-70: #9f1853; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-80 [variable] + +Value for magenta-80 from the IBM Design Language + +
+Source code + +```scss +$magenta-80: #740937; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-90 [variable] + +Value for magenta-90 from the IBM Design Language + +
+Source code + +```scss +$magenta-90: #510224; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…magenta-100 [variable] + +Value for magenta-100 from the IBM Design Language + +
+Source code + +```scss +$magenta-100: #2a0a18; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-40 [variable] + +Value for orange-40 from the IBM Design Language + +
+Source code + +```scss +$orange-40: #ff832b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-60 [variable] + +Value for orange-60 from the IBM Design Language + +
+Source code + +```scss +$orange-60: #ba4e00; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…orange-70 [variable] + +Value for orange-70 from the IBM Design Language + +
+Source code + +```scss +$orange-70: #8a3800; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-10 [variable] + +Value for purple-10 from the IBM Design Language + +
+Source code + +```scss +$purple-10: #f6f2ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-20 [variable] + +Value for purple-20 from the IBM Design Language + +
+Source code + +```scss +$purple-20: #e8daff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-30 [variable] + +Value for purple-30 from the IBM Design Language + +
+Source code + +```scss +$purple-30: #d4bbff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-40 [variable] + +Value for purple-40 from the IBM Design Language + +
+Source code + +```scss +$purple-40: #be95ff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-50 [variable] + +Value for purple-50 from the IBM Design Language + +
+Source code + +```scss +$purple-50: #a56eff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-60 [variable] + +Value for purple-60 from the IBM Design Language + +
+Source code + +```scss +$purple-60: #8a3ffc; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-70 [variable] + +Value for purple-70 from the IBM Design Language + +
+Source code + +```scss +$purple-70: #6929c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-80 [variable] + +Value for purple-80 from the IBM Design Language + +
+Source code + +```scss +$purple-80: #491d8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-90 [variable] + +Value for purple-90 from the IBM Design Language + +
+Source code + +```scss +$purple-90: #31135e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…purple-100 [variable] + +Value for purple-100 from the IBM Design Language + +
+Source code + +```scss +$purple-100: #1c0f30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-10 [variable] + +Value for red-10 from the IBM Design Language + +
+Source code + +```scss +$red-10: #fff1f1; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-20 [variable] + +Value for red-20 from the IBM Design Language + +
+Source code + +```scss +$red-20: #ffd7d9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-30 [variable] + +Value for red-30 from the IBM Design Language + +
+Source code + +```scss +$red-30: #ffb3b8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-40 [variable] + +Value for red-40 from the IBM Design Language + +
+Source code + +```scss +$red-40: #ff8389; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-50 [variable] + +Value for red-50 from the IBM Design Language + +
+Source code + +```scss +$red-50: #fa4d56; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-60 [variable] + +Value for red-60 from the IBM Design Language + +
+Source code + +```scss +$red-60: #da1e28; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-70 [variable] + +Value for red-70 from the IBM Design Language + +
+Source code + +```scss +$red-70: #a2191f; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-80 [variable] + +Value for red-80 from the IBM Design Language + +
+Source code + +```scss +$red-80: #750e13; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-90 [variable] + +Value for red-90 from the IBM Design Language + +
+Source code + +```scss +$red-90: #520408; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…red-100 [variable] + +Value for red-100 from the IBM Design Language + +
+Source code + +```scss +$red-100: #2d0709; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-10 [variable] + +Value for teal-10 from the IBM Design Language + +
+Source code + +```scss +$teal-10: #d9fbfb; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-20 [variable] + +Value for teal-20 from the IBM Design Language + +
+Source code + +```scss +$teal-20: #9ef0f0; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-30 [variable] + +Value for teal-30 from the IBM Design Language + +
+Source code + +```scss +$teal-30: #3ddbd9; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-40 [variable] + +Value for teal-40 from the IBM Design Language + +
+Source code + +```scss +$teal-40: #08bdba; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-50 [variable] + +Value for teal-50 from the IBM Design Language + +
+Source code + +```scss +$teal-50: #009d9a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-60 [variable] + +Value for teal-60 from the IBM Design Language + +
+Source code + +```scss +$teal-60: #007d79; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-70 [variable] + +Value for teal-70 from the IBM Design Language + +
+Source code + +```scss +$teal-70: #005d5d; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-80 [variable] + +Value for teal-80 from the IBM Design Language + +
+Source code + +```scss +$teal-80: #004144; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-90 [variable] + +Value for teal-90 from the IBM Design Language + +
+Source code + +```scss +$teal-90: #022b30; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…teal-100 [variable] + +Value for teal-100 from the IBM Design Language + +
+Source code + +```scss +$teal-100: #081a1c; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-10 [variable] + +Value for warm-gray-10 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-10: #f7f3f2; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-20 [variable] + +Value for warm-gray-20 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-20: #e5e0df; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-30 [variable] + +Value for warm-gray-30 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-30: #cac5c4; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-40 [variable] + +Value for warm-gray-40 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-40: #ada8a8; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-50 [variable] + +Value for warm-gray-50 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-50: #8f8b8b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-60 [variable] + +Value for warm-gray-60 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-60: #726e6e; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-70 [variable] + +Value for warm-gray-70 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-70: #565151; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-80 [variable] + +Value for warm-gray-80 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-80: #3c3838; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-90 [variable] + +Value for warm-gray-90 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-90: #272525; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…warm-gray-100 [variable] + +Value for warm-gray-100 from the IBM Design Language + +
+Source code + +```scss +$warm-gray-100: #171414; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…white-0 [variable] + +Value for white-0 from the IBM Design Language + +
+Source code + +```scss +$white-0: #ffffff; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-20 [variable] + +Value for yellow-20 from the IBM Design Language + +
+Source code + +```scss +$yellow-20: #fdd13a; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-30 [variable] + +Value for yellow-30 from the IBM Design Language + +
+Source code + +```scss +$yellow-30: #f1c21b; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-40 [variable] + +Value for yellow-40 from the IBM Design Language + +
+Source code + +```scss +$yellow-40: #d2a106; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…yellow-50 [variable] + +Value for yellow-50 from the IBM Design Language + +
+Source code + +```scss +$yellow-50: #b28600; +``` + +
+ +- **Group**: [@carbon/colors](#carboncolors) +- **Used by**: + - [carbon--colors [mixin]](#carbon--colors-mixin) + +### âś…colors [variable] + +Colors from the IBM Design Language + +
+Source code + +```scss +$colors: ( + black: ( + 100: #000000, + ), + blue: ( + 10: #edf5ff, + 20: #d0e2ff, + 30: #a6c8ff, + 40: #78a9ff, + 50: #4589ff, + 60: #0f62fe, + 70: #0043ce, + 80: #002d9c, + 90: #001d6c, + 100: #001141, + ), + cool-gray: ( + 10: #f2f4f8, + 20: #dde1e6, + 30: #c1c7cd, + 40: #a2a9b0, + 50: #878d96, + 60: #697077, + 70: #4d5358, + 80: #343a3f, + 90: #21272a, + 100: #121619, + ), + cyan: ( + 10: #e5f6ff, + 20: #bae6ff, + 30: #82cfff, + 40: #33b1ff, + 50: #1192e8, + 60: #0072c3, + 70: #00539a, + 80: #003a6d, + 90: #012749, + 100: #061727, + ), + gray: ( + 10: #f4f4f4, + 20: #e0e0e0, + 30: #c6c6c6, + 40: #a8a8a8, + 50: #8d8d8d, + 60: #6f6f6f, + 70: #525252, + 80: #393939, + 90: #262626, + 100: #161616, + ), + green: ( + 10: #defbe6, + 20: #a7f0ba, + 30: #6fdc8c, + 40: #42be65, + 50: #24a148, + 60: #198038, + 70: #0e6027, + 80: #044317, + 90: #022d0d, + 100: #071908, + ), + magenta: ( + 10: #fff0f7, + 20: #ffd6e8, + 30: #ffafd2, + 40: #ff7eb6, + 50: #ee5396, + 60: #d02670, + 70: #9f1853, + 80: #740937, + 90: #510224, + 100: #2a0a18, + ), + orange: ( + 40: #ff832b, + 60: #ba4e00, + 70: #8a3800, + ), + purple: ( + 10: #f6f2ff, + 20: #e8daff, + 30: #d4bbff, + 40: #be95ff, + 50: #a56eff, + 60: #8a3ffc, + 70: #6929c4, + 80: #491d8b, + 90: #31135e, + 100: #1c0f30, + ), + red: ( + 10: #fff1f1, + 20: #ffd7d9, + 30: #ffb3b8, + 40: #ff8389, + 50: #fa4d56, + 60: #da1e28, + 70: #a2191f, + 80: #750e13, + 90: #520408, + 100: #2d0709, + ), + teal: ( + 10: #d9fbfb, + 20: #9ef0f0, + 30: #3ddbd9, + 40: #08bdba, + 50: #009d9a, + 60: #007d79, + 70: #005d5d, + 80: #004144, + 90: #022b30, + 100: #081a1c, + ), + warm-gray: ( + 10: #f7f3f2, + 20: #e5e0df, + 30: #cac5c4, + 40: #ada8a8, + 50: #8f8b8b, + 60: #726e6e, + 70: #565151, + 80: #3c3838, + 90: #272525, + 100: #171414, + ), + white: ( + 0: #ffffff, + ), + yellow: ( + 20: #fdd13a, + 30: #f1c21b, + 40: #d2a106, + 50: #b28600, + ), +); +``` + +
+ - **Group**: [@carbon/colors](#carboncolors) ## @carbon/grid