@lumx/core 2.1.0-alpha.1 → 2.1.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/design-tokens.css +9 -4
- package/js/constants/design-tokens.js +38 -1
- package/js/constants/design-tokens.min.js +1 -1
- package/js/constants/design-tokens.min.js.map +1 -1
- package/js/constants/design-tokens.ts +38 -1
- package/js/utils.min.js.map +1 -1
- package/lumx.css +1 -1
- package/lumx.min.css +1 -1
- package/package.json +2 -2
- package/scss/_design-tokens.scss +16 -5
- package/scss/components/button/_mixins.scss +18 -12
- package/scss/components/tabs/_index.scss +2 -2
- package/scss/components/tabs/_mixins.scss +1 -1
- package/scss/core/typography/_mixins.scss +5 -5
package/css/design-tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 14 Sep 2021 08:34:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
); /* Base light color with 60% opacity */
|
|
95
95
|
--lumx-button-emphasis-medium-state-active-theme-dark-color: #fff; /* Neutral light color */
|
|
96
96
|
--lumx-button-emphasis-medium-state-active-theme-dark-border-color: transparent;
|
|
97
|
-
--lumx-button-emphasis-low-state-default-padding-horizontal:
|
|
97
|
+
--lumx-button-emphasis-low-state-default-padding-horizontal: 8px;
|
|
98
98
|
--lumx-button-emphasis-low-state-default-border-width: 0;
|
|
99
99
|
--lumx-button-emphasis-low-state-default-theme-light-background-color: transparent;
|
|
100
100
|
--lumx-button-emphasis-low-state-default-theme-light-color: rgba(0, 0, 0, 0.87); /* Neutral dark color */
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
--lumx-button-emphasis-low-state-default-theme-dark-background-color: transparent;
|
|
103
103
|
--lumx-button-emphasis-low-state-default-theme-dark-color: #fff; /* Neutral light color */
|
|
104
104
|
--lumx-button-emphasis-low-state-default-theme-dark-border-color: transparent;
|
|
105
|
-
--lumx-button-emphasis-low-state-hover-padding-horizontal:
|
|
105
|
+
--lumx-button-emphasis-low-state-hover-padding-horizontal: 8px;
|
|
106
106
|
--lumx-button-emphasis-low-state-hover-border-width: 0;
|
|
107
107
|
--lumx-button-emphasis-low-state-hover-theme-light-background-color: rgba(
|
|
108
108
|
0,
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
); /* Base light color with 20% opacity */
|
|
121
121
|
--lumx-button-emphasis-low-state-hover-theme-dark-color: #fff; /* Neutral light color */
|
|
122
122
|
--lumx-button-emphasis-low-state-hover-theme-dark-border-color: transparent;
|
|
123
|
-
--lumx-button-emphasis-low-state-active-padding-horizontal:
|
|
123
|
+
--lumx-button-emphasis-low-state-active-padding-horizontal: 8px;
|
|
124
124
|
--lumx-button-emphasis-low-state-active-border-width: 0;
|
|
125
125
|
--lumx-button-emphasis-low-state-active-theme-light-background-color: rgba(
|
|
126
126
|
0,
|
|
@@ -178,6 +178,7 @@
|
|
|
178
178
|
--lumx-button-emphasis-selected-state-active-theme-dark-color: #fff; /* Neutral light color */
|
|
179
179
|
--lumx-button-emphasis-selected-state-active-theme-dark-border-color: transparent;
|
|
180
180
|
--lumx-material-button-text-transform: none;
|
|
181
|
+
--lumx-material-button-variant-icon-border-radius: 50%;
|
|
181
182
|
--lumx-material-checkbox-wrapper-size: 20px;
|
|
182
183
|
--lumx-material-checkbox-control-size: 16px;
|
|
183
184
|
--lumx-material-chip-size-m-height: 36px;
|
|
@@ -915,6 +916,10 @@
|
|
|
915
916
|
--lumx-typography-custom-quote-font-weight: 300;
|
|
916
917
|
--lumx-typography-custom-quote-font-style: italic;
|
|
917
918
|
--lumx-typography-custom-quote-line-height: 24px;
|
|
919
|
+
--lumx-typography-custom-publish-info-font-family: var(--lumx-typography-font-family);
|
|
920
|
+
--lumx-typography-custom-publish-info-font-size: 14px;
|
|
921
|
+
--lumx-typography-custom-publish-info-font-weight: 400;
|
|
922
|
+
--lumx-typography-custom-publish-info-line-height: 20px;
|
|
918
923
|
--lumx-typography-custom-button-size-m-font-family: var(--lumx-typography-font-family);
|
|
919
924
|
--lumx-typography-custom-button-size-m-font-size: 14px;
|
|
920
925
|
--lumx-typography-custom-button-size-m-font-weight: 700;
|
|
@@ -94,7 +94,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
94
94
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DESIGN_TOKENS", function() { return DESIGN_TOKENS; });
|
|
95
95
|
/**
|
|
96
96
|
* Do not edit directly
|
|
97
|
-
* Generated on
|
|
97
|
+
* Generated on Tue, 14 Sep 2021 08:34:49 GMT
|
|
98
98
|
*/
|
|
99
99
|
var DESIGN_TOKENS = {
|
|
100
100
|
button: {
|
|
@@ -963,6 +963,13 @@ var DESIGN_TOKENS = {
|
|
|
963
963
|
type: 'button',
|
|
964
964
|
item: 'text-transform'
|
|
965
965
|
}
|
|
966
|
+
},
|
|
967
|
+
'variant-icon-border-radius': {
|
|
968
|
+
attributes: {
|
|
969
|
+
category: 'material',
|
|
970
|
+
type: 'button',
|
|
971
|
+
item: 'variant-icon-border-radius'
|
|
972
|
+
}
|
|
966
973
|
}
|
|
967
974
|
},
|
|
968
975
|
checkbox: {
|
|
@@ -5554,6 +5561,36 @@ var DESIGN_TOKENS = {
|
|
|
5554
5561
|
}
|
|
5555
5562
|
}
|
|
5556
5563
|
},
|
|
5564
|
+
'publish-info': {
|
|
5565
|
+
'font-family': {
|
|
5566
|
+
attributes: {
|
|
5567
|
+
category: 'typography',
|
|
5568
|
+
type: 'custom',
|
|
5569
|
+
item: 'publish-info'
|
|
5570
|
+
}
|
|
5571
|
+
},
|
|
5572
|
+
'font-size': {
|
|
5573
|
+
attributes: {
|
|
5574
|
+
category: 'typography',
|
|
5575
|
+
type: 'custom',
|
|
5576
|
+
item: 'publish-info'
|
|
5577
|
+
}
|
|
5578
|
+
},
|
|
5579
|
+
'font-weight': {
|
|
5580
|
+
attributes: {
|
|
5581
|
+
category: 'typography',
|
|
5582
|
+
type: 'custom',
|
|
5583
|
+
item: 'publish-info'
|
|
5584
|
+
}
|
|
5585
|
+
},
|
|
5586
|
+
'line-height': {
|
|
5587
|
+
attributes: {
|
|
5588
|
+
category: 'typography',
|
|
5589
|
+
type: 'custom',
|
|
5590
|
+
item: 'publish-info'
|
|
5591
|
+
}
|
|
5592
|
+
}
|
|
5593
|
+
},
|
|
5557
5594
|
button: {
|
|
5558
5595
|
'size-m': {
|
|
5559
5596
|
'font-family': {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(t){function e(i){if(o[i])return o[i].exports;var r=o[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};e.m=t,e.c=o,e.d=function(t,o,i){e.o(t,o)||Object.defineProperty(t,o,{enumerable:!0,get:i})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,o){if(1&o&&(t=e(t)),8&o)return t;if(4&o&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(e.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&o&&"string"!=typeof t)for(var r in t)e.d(i,r,function(e){return t[e]}.bind(null,r));return i},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=108)}({108:function(t,e,o){"use strict";o.r(e),o.d(e,"DESIGN_TOKENS",(function(){return i}));var i={button:{height:{attributes:{category:"button",type:"height"}},"border-radius":{attributes:{category:"button",type:"border-radius"}},"emphasis-high":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-default"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"button",type:"emphasis-high",item:"state-active"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}}}},"emphasis-medium":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}}}},"emphasis-low":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}},"theme-dark":{"background-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}}}},"emphasis-selected":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}}}}},material:{button:{"text-transform":{attributes:{category:"material",type:"button",item:"text-transform"}}},checkbox:{"wrapper-size":{attributes:{category:"material",type:"checkbox",item:"wrapper-size"}},"control-size":{attributes:{category:"material",type:"checkbox",item:"control-size"}}},chip:{"size-m":{height:{attributes:{category:"material",type:"chip",item:"size-m"}},"border-radius":{attributes:{category:"material",type:"chip",item:"size-m"}},"padding-vertical":{attributes:{category:"material",type:"chip",item:"size-m"}}},"size-s":{height:{attributes:{category:"material",type:"chip",item:"size-s"}},"border-radius":{attributes:{category:"material",type:"chip",item:"size-s"}},"padding-vertical":{attributes:{category:"material",type:"chip",item:"size-s"}}}},"input-helper":{"font-size":{attributes:{category:"material",type:"input-helper",item:"font-size"}},"font-weight":{attributes:{category:"material",type:"input-helper",item:"font-weight"}},"line-height":{attributes:{category:"material",type:"input-helper",item:"line-height"}}},"input-label":{"font-size":{attributes:{category:"material",type:"input-label",item:"font-size"}},"font-weight":{attributes:{category:"material",type:"input-label",item:"font-weight"}},"line-height":{attributes:{category:"material",type:"input-label",item:"line-height"}}},progress:{bounce:{attributes:{category:"material",type:"progress",item:"bounce"}},rotate:{attributes:{category:"material",type:"progress",item:"rotate"}}},"radio-button":{"wrapper-size":{attributes:{category:"material",type:"radio-button",item:"wrapper-size"}},"control-size":{attributes:{category:"material",type:"radio-button",item:"control-size"}},"indicator-size":{attributes:{category:"material",type:"radio-button",item:"indicator-size"}}},switch:{wrapper:{width:{attributes:{category:"material",type:"switch",item:"wrapper"}},height:{attributes:{category:"material",type:"switch",item:"wrapper"}}},control:{width:{attributes:{category:"material",type:"switch",item:"control"}},height:{attributes:{category:"material",type:"switch",item:"control"}}},indicator:{size:{attributes:{category:"material",type:"switch",item:"indicator"}},offset:{attributes:{category:"material",type:"switch",item:"indicator"}}}},"text-field":{padding:{top:{attributes:{category:"material",type:"text-field",item:"padding"}},bottom:{attributes:{category:"material",type:"text-field",item:"padding"}}},header:{wrapper:{"margin-bottom":{attributes:{category:"material",type:"text-field",item:"header"}}},label:{"font-size":{attributes:{category:"material",type:"text-field",item:"header"}},"font-weight":{attributes:{category:"material",type:"text-field",item:"header"}},"line-height":{attributes:{category:"material",type:"text-field",item:"header"}}}},input:{content:{"font-size":{attributes:{category:"material",type:"text-field",item:"input"}},"font-weight":{attributes:{category:"material",type:"text-field",item:"input"}},"line-height":{attributes:{category:"material",type:"text-field",item:"input"}}}}}},navigation:{item:{padding:{horizontal:{attributes:{category:"navigation",type:"item",item:"padding"}}},"min-height":{attributes:{category:"navigation",type:"item",item:"min-height"}},"border-radius":{attributes:{category:"navigation",type:"item",item:"border-radius"}},"emphasis-low":{"state-default":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"state-hover":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"state-active":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}}},"emphasis-selected":{"state-default":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"state-hover":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"state-active":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}}}}},tabs:{link:{height:{attributes:{category:"tabs",type:"link",item:"height"}},"border-radius":{attributes:{category:"tabs",type:"link",item:"border-radius"}},"emphasis-low":{"state-default":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"state-hover":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"state-active":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}}},"emphasis-selected":{"state-default":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"state-hover":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"state-active":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}}}}},"text-field":{input:{"min-height":{attributes:{category:"text-field",type:"input",item:"min-height"}},padding:{horizontal:{attributes:{category:"text-field",type:"input",item:"padding"}}},"border-radius":{attributes:{category:"text-field",type:"input",item:"border-radius"}}},"state-default":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}}}},"theme-light":{header:{label:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}}},input:{"background-color":{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}}}},"theme-dark":{header:{label:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}}},input:{"background-color":{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}}}}},"state-hover":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}}}},"theme-light":{input:{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}}}}},"theme-dark":{input:{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}}}}}},"state-focus":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}}}},"theme-light":{header:{label:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}}},input:{"background-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}}}},"theme-dark":{header:{label:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}}},input:{"background-color":{attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}}}}}},"border-radius":{attributes:{category:"border-radius"}},color:{dark:{N:{version:"0.22",comment:"Neutral dark color",attributes:{category:"color",type:"dark",item:"N",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L1:{version:"0.22",comment:"Base dark color with 80% opacity",attributes:{category:"color",type:"dark",item:"L1",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L2:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"color",type:"dark",item:"L2",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L3:{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"color",type:"dark",item:"L3",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L4:{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"color",type:"dark",item:"L4",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L5:{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"color",type:"dark",item:"L5",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L6:{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"color",type:"dark",item:"L6",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}}},light:{N:{version:"0.22",comment:"Neutral light color",attributes:{category:"color",type:"light",item:"N",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L1:{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"color",type:"light",item:"L1",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L2:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"color",type:"light",item:"L2",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L3:{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"color",type:"light",item:"L3",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L4:{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"color",type:"light",item:"L4",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L5:{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"color",type:"light",item:"L5",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L6:{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"color",type:"light",item:"L6",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}}},blue:{D2:{version:"0.22",comment:"Darkest blue color",attributes:{category:"color",type:"blue",item:"D2",hex:"1976d2",rgb:{r:25,g:118,b:210,a:1}}},D1:{version:"0.22",comment:"Dark blue color",attributes:{category:"color",type:"blue",item:"D1",hex:"1e88e5",rgb:{r:30,g:136,b:229,a:1}}},N:{version:"0.22",comment:"Neutral blue color",attributes:{category:"color",type:"blue",item:"N",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L1:{version:"0.22",comment:"Base blue color with 80% opacity",attributes:{category:"color",type:"blue",item:"L1",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L2:{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"color",type:"blue",item:"L2",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L3:{version:"0.22",comment:"Base blue color with 40% opacity",attributes:{category:"color",type:"blue",item:"L3",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L4:{version:"0.22",comment:"Base blue color with 20% opacity",attributes:{category:"color",type:"blue",item:"L4",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L5:{version:"0.22",comment:"Base blue color with 10% opacity",attributes:{category:"color",type:"blue",item:"L5",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L6:{version:"0.22",comment:"Base blue color with 5% opacity",attributes:{category:"color",type:"blue",item:"L6",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}}},green:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"green",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"green",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"green",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"green",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"green",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"green",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"green",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"green",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"green",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},yellow:{D2:{version:"0.22",comment:"Darkest yellow color",attributes:{category:"color",type:"yellow",item:"D2",hex:"ff6f00",rgb:{r:255,g:111,b:0,a:1}}},D1:{version:"0.22",comment:"Dark yellow color",attributes:{category:"color",type:"yellow",item:"D1",hex:"ff8f00",rgb:{r:255,g:143,b:0,a:1}}},N:{version:"0.22",comment:"Neutral yellow color",attributes:{category:"color",type:"yellow",item:"N",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L1:{version:"0.22",comment:"Base yellow color with 80% opacity",attributes:{category:"color",type:"yellow",item:"L1",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L2:{version:"0.22",comment:"Base yellow color with 70% opacity",attributes:{category:"color",type:"yellow",item:"L2",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L3:{version:"0.22",comment:"Base yellow color with 60% opacity",attributes:{category:"color",type:"yellow",item:"L3",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L4:{version:"0.22",comment:"Base yellow color with 40% opacity",attributes:{category:"color",type:"yellow",item:"L4",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L5:{version:"0.22",comment:"Base yellow color with 20% opacity",attributes:{category:"color",type:"yellow",item:"L5",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L6:{version:"0.22",comment:"Base yellow color with 10% opacity",attributes:{category:"color",type:"yellow",item:"L6",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}}},red:{D2:{version:"0.22",comment:"Darkest red color",attributes:{category:"color",type:"red",item:"D2",hex:"d32f2f",rgb:{r:211,g:47,b:47,a:1}}},D1:{version:"0.22",comment:"Dark red color",attributes:{category:"color",type:"red",item:"D1",hex:"e53935",rgb:{r:229,g:57,b:53,a:1}}},N:{version:"0.22",comment:"Neutral red color",attributes:{category:"color",type:"red",item:"N",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L1:{version:"0.22",comment:"Base red color with 80% opacity",attributes:{category:"color",type:"red",item:"L1",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L2:{version:"0.22",comment:"Base red color with 60% opacity",attributes:{category:"color",type:"red",item:"L2",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L3:{version:"0.22",comment:"Base red color with 40% opacity",attributes:{category:"color",type:"red",item:"L3",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L4:{version:"0.22",comment:"Base red color with 20% opacity",attributes:{category:"color",type:"red",item:"L4",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L5:{version:"0.22",comment:"Base red color with 10% opacity",attributes:{category:"color",type:"red",item:"L5",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L6:{version:"0.22",comment:"Base red color with 5% opacity",attributes:{category:"color",type:"red",item:"L6",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}}},grey:{N:{version:"0.22",comment:"Neutral grey color",attributes:{category:"color",type:"grey",item:"N",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L1:{version:"0.22",comment:"Base grey color with 80% opacity",attributes:{category:"color",type:"grey",item:"L1",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L2:{version:"0.22",comment:"Base grey color with 60% opacity",attributes:{category:"color",type:"grey",item:"L2",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L3:{version:"0.22",comment:"Base grey color with 40% opacity",attributes:{category:"color",type:"grey",item:"L3",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L4:{version:"0.22",comment:"Base grey color with 20% opacity",attributes:{category:"color",type:"grey",item:"L4",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L5:{version:"0.22",comment:"Base grey color with 10% opacity",attributes:{category:"color",type:"grey",item:"L5",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L6:{version:"0.22",comment:"Base grey color with 5% opacity",attributes:{category:"color",type:"grey",item:"L6",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}}},primary:{D2:{version:"0.22",comment:"Darkest blue color",attributes:{category:"color",type:"primary",item:"D2",hex:"1976d2",rgb:{r:25,g:118,b:210,a:1}}},D1:{version:"0.22",comment:"Dark blue color",attributes:{category:"color",type:"primary",item:"D1",hex:"1e88e5",rgb:{r:30,g:136,b:229,a:1}}},N:{version:"0.22",comment:"Neutral blue color",attributes:{category:"color",type:"primary",item:"N",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L1:{version:"0.22",comment:"Base blue color with 80% opacity",attributes:{category:"color",type:"primary",item:"L1",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L2:{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"color",type:"primary",item:"L2",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L3:{version:"0.22",comment:"Base blue color with 40% opacity",attributes:{category:"color",type:"primary",item:"L3",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L4:{version:"0.22",comment:"Base blue color with 20% opacity",attributes:{category:"color",type:"primary",item:"L4",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L5:{version:"0.22",comment:"Base blue color with 10% opacity",attributes:{category:"color",type:"primary",item:"L5",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L6:{version:"0.22",comment:"Base blue color with 5% opacity",attributes:{category:"color",type:"primary",item:"L6",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}}},secondary:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"secondary",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"secondary",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"secondary",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"secondary",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"secondary",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"secondary",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"secondary",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"secondary",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"secondary",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},accent:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"accent",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"accent",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"accent",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"accent",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"accent",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"accent",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"accent",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"accent",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"accent",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},black:{N:{version:"0.22",comment:"Neutral dark color",attributes:{category:"color",type:"black",item:"N",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L1:{version:"0.22",comment:"Base dark color with 80% opacity",attributes:{category:"color",type:"black",item:"L1",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L2:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"color",type:"black",item:"L2",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L3:{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"color",type:"black",item:"L3",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L4:{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"color",type:"black",item:"L4",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L5:{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"color",type:"black",item:"L5",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L6:{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"color",type:"black",item:"L6",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}}},white:{N:{version:"0.22",comment:"Neutral light color",attributes:{category:"color",type:"white",item:"N",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L1:{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"color",type:"white",item:"L1",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L2:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"color",type:"white",item:"L2",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L3:{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"color",type:"white",item:"L3",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L4:{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"color",type:"white",item:"L4",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L5:{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"color",type:"white",item:"L5",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L6:{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"color",type:"white",item:"L6",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}}},orange:{D2:{version:"0.22",comment:"Darkest yellow color",attributes:{category:"color",type:"orange",item:"D2",hex:"ff6f00",rgb:{r:255,g:111,b:0,a:1}}},D1:{version:"0.22",comment:"Dark yellow color",attributes:{category:"color",type:"orange",item:"D1",hex:"ff8f00",rgb:{r:255,g:143,b:0,a:1}}},N:{version:"0.22",comment:"Neutral yellow color",attributes:{category:"color",type:"orange",item:"N",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L1:{version:"0.22",comment:"Base yellow color with 80% opacity",attributes:{category:"color",type:"orange",item:"L1",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L2:{version:"0.22",comment:"Base yellow color with 70% opacity",attributes:{category:"color",type:"orange",item:"L2",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L3:{version:"0.22",comment:"Base yellow color with 60% opacity",attributes:{category:"color",type:"orange",item:"L3",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L4:{version:"0.22",comment:"Base yellow color with 40% opacity",attributes:{category:"color",type:"orange",item:"L4",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L5:{version:"0.22",comment:"Base yellow color with 20% opacity",attributes:{category:"color",type:"orange",item:"L5",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L6:{version:"0.22",comment:"Base yellow color with 10% opacity",attributes:{category:"color",type:"orange",item:"L6",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}}}},size:{xxs:{attributes:{category:"size",type:"xxs"}},xs:{attributes:{category:"size",type:"xs"}},s:{attributes:{category:"size",type:"s"}},m:{attributes:{category:"size",type:"m"}},l:{attributes:{category:"size",type:"l"}},xl:{attributes:{category:"size",type:"xl"}},xxl:{attributes:{category:"size",type:"xxl"}}},spacing:{unit:{tiny:{attributes:{category:"spacing",type:"unit",item:"tiny"}},regular:{attributes:{category:"spacing",type:"unit",item:"regular"}},medium:{attributes:{category:"spacing",type:"unit",item:"medium"}},big:{attributes:{category:"spacing",type:"unit",item:"big"}},huge:{attributes:{category:"spacing",type:"unit",item:"huge"}}}},typography:{"font-family":{attributes:{category:"typography",type:"font-family"}},interface:{display1:{"font-size":{attributes:{category:"typography",type:"interface",item:"display1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"display1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"display1"}}},headline:{"font-size":{attributes:{category:"typography",type:"interface",item:"headline"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"headline"}},"line-height":{attributes:{category:"typography",type:"interface",item:"headline"}}},title:{"font-size":{attributes:{category:"typography",type:"interface",item:"title"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"title"}},"line-height":{attributes:{category:"typography",type:"interface",item:"title"}}},subtitle2:{"font-size":{attributes:{category:"typography",type:"interface",item:"subtitle2"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"subtitle2"}},"line-height":{attributes:{category:"typography",type:"interface",item:"subtitle2"}}},subtitle1:{"font-size":{attributes:{category:"typography",type:"interface",item:"subtitle1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"subtitle1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"subtitle1"}}},body2:{"font-size":{attributes:{category:"typography",type:"interface",item:"body2"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"body2"}},"line-height":{attributes:{category:"typography",type:"interface",item:"body2"}}},body1:{"font-size":{attributes:{category:"typography",type:"interface",item:"body1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"body1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"body1"}}},caption:{"font-size":{attributes:{category:"typography",type:"interface",item:"caption"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"caption"}},"line-height":{attributes:{category:"typography",type:"interface",item:"caption"}}},overline:{"font-size":{attributes:{category:"typography",type:"interface",item:"overline"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"overline"}},"line-height":{attributes:{category:"typography",type:"interface",item:"overline"}}}},custom:{title1:{"font-family":{attributes:{category:"typography",type:"custom",item:"title1"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title1"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title1"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title1"}}},title2:{"font-family":{attributes:{category:"typography",type:"custom",item:"title2"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title2"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title2"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title2"}}},title3:{"font-family":{attributes:{category:"typography",type:"custom",item:"title3"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title3"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title3"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title3"}}},title4:{"font-family":{attributes:{category:"typography",type:"custom",item:"title4"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title4"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title4"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title4"}}},title5:{"font-family":{attributes:{category:"typography",type:"custom",item:"title5"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title5"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title5"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title5"}}},title6:{"font-family":{attributes:{category:"typography",type:"custom",item:"title6"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title6"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title6"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title6"}}},intro:{"font-family":{attributes:{category:"typography",type:"custom",item:"intro"}},"font-size":{attributes:{category:"typography",type:"custom",item:"intro"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"intro"}},"line-height":{attributes:{category:"typography",type:"custom",item:"intro"}}},"body-large":{"font-family":{attributes:{category:"typography",type:"custom",item:"body-large"}},"font-size":{attributes:{category:"typography",type:"custom",item:"body-large"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"body-large"}},"line-height":{attributes:{category:"typography",type:"custom",item:"body-large"}}},body:{"font-family":{attributes:{category:"typography",type:"custom",item:"body"}},"font-size":{attributes:{category:"typography",type:"custom",item:"body"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"body"}},"line-height":{attributes:{category:"typography",type:"custom",item:"body"}}},quote:{"font-family":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-size":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-style":{attributes:{category:"typography",type:"custom",item:"quote"}},"line-height":{attributes:{category:"typography",type:"custom",item:"quote"}}},button:{"size-m":{"font-family":{attributes:{category:"typography",type:"custom",item:"button"}},"font-size":{attributes:{category:"typography",type:"custom",item:"button"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"button"}}},"size-s":{"font-family":{attributes:{category:"typography",type:"custom",item:"button"}},"font-size":{attributes:{category:"typography",type:"custom",item:"button"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"button"}}}}}}}}});
|
|
1
|
+
!function(t){function e(i){if(o[i])return o[i].exports;var r=o[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};e.m=t,e.c=o,e.d=function(t,o,i){e.o(t,o)||Object.defineProperty(t,o,{enumerable:!0,get:i})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,o){if(1&o&&(t=e(t)),8&o)return t;if(4&o&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(e.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&o&&"string"!=typeof t)for(var r in t)e.d(i,r,function(e){return t[e]}.bind(null,r));return i},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=108)}({108:function(t,e,o){"use strict";o.r(e),o.d(e,"DESIGN_TOKENS",(function(){return i}));var i={button:{height:{attributes:{category:"button",type:"height"}},"border-radius":{attributes:{category:"button",type:"border-radius"}},"emphasis-high":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-default"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"button",type:"emphasis-high",item:"state-active"}},color:{attributes:{category:"button",type:"emphasis-high",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-high",item:"state-active"}}}}},"emphasis-medium":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-medium",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-medium",item:"state-active"}}}}},"emphasis-low":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}},"theme-dark":{"background-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-low",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-low",item:"state-active"}}}}},"emphasis-selected":{"state-default":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-default"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-default"}}}},"state-hover":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-hover"}}}},"state-active":{padding:{horizontal:{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}},"border-width":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"theme-light":{"background-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},color:{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"button",type:"emphasis-selected",item:"state-active"}},"border-color":{attributes:{category:"button",type:"emphasis-selected",item:"state-active"}}}}}},material:{button:{"text-transform":{attributes:{category:"material",type:"button",item:"text-transform"}},"variant-icon-border-radius":{attributes:{category:"material",type:"button",item:"variant-icon-border-radius"}}},checkbox:{"wrapper-size":{attributes:{category:"material",type:"checkbox",item:"wrapper-size"}},"control-size":{attributes:{category:"material",type:"checkbox",item:"control-size"}}},chip:{"size-m":{height:{attributes:{category:"material",type:"chip",item:"size-m"}},"border-radius":{attributes:{category:"material",type:"chip",item:"size-m"}},"padding-vertical":{attributes:{category:"material",type:"chip",item:"size-m"}}},"size-s":{height:{attributes:{category:"material",type:"chip",item:"size-s"}},"border-radius":{attributes:{category:"material",type:"chip",item:"size-s"}},"padding-vertical":{attributes:{category:"material",type:"chip",item:"size-s"}}}},"input-helper":{"font-size":{attributes:{category:"material",type:"input-helper",item:"font-size"}},"font-weight":{attributes:{category:"material",type:"input-helper",item:"font-weight"}},"line-height":{attributes:{category:"material",type:"input-helper",item:"line-height"}}},"input-label":{"font-size":{attributes:{category:"material",type:"input-label",item:"font-size"}},"font-weight":{attributes:{category:"material",type:"input-label",item:"font-weight"}},"line-height":{attributes:{category:"material",type:"input-label",item:"line-height"}}},progress:{bounce:{attributes:{category:"material",type:"progress",item:"bounce"}},rotate:{attributes:{category:"material",type:"progress",item:"rotate"}}},"radio-button":{"wrapper-size":{attributes:{category:"material",type:"radio-button",item:"wrapper-size"}},"control-size":{attributes:{category:"material",type:"radio-button",item:"control-size"}},"indicator-size":{attributes:{category:"material",type:"radio-button",item:"indicator-size"}}},switch:{wrapper:{width:{attributes:{category:"material",type:"switch",item:"wrapper"}},height:{attributes:{category:"material",type:"switch",item:"wrapper"}}},control:{width:{attributes:{category:"material",type:"switch",item:"control"}},height:{attributes:{category:"material",type:"switch",item:"control"}}},indicator:{size:{attributes:{category:"material",type:"switch",item:"indicator"}},offset:{attributes:{category:"material",type:"switch",item:"indicator"}}}},"text-field":{padding:{top:{attributes:{category:"material",type:"text-field",item:"padding"}},bottom:{attributes:{category:"material",type:"text-field",item:"padding"}}},header:{wrapper:{"margin-bottom":{attributes:{category:"material",type:"text-field",item:"header"}}},label:{"font-size":{attributes:{category:"material",type:"text-field",item:"header"}},"font-weight":{attributes:{category:"material",type:"text-field",item:"header"}},"line-height":{attributes:{category:"material",type:"text-field",item:"header"}}}},input:{content:{"font-size":{attributes:{category:"material",type:"text-field",item:"input"}},"font-weight":{attributes:{category:"material",type:"text-field",item:"input"}},"line-height":{attributes:{category:"material",type:"text-field",item:"input"}}}}}},navigation:{item:{padding:{horizontal:{attributes:{category:"navigation",type:"item",item:"padding"}}},"min-height":{attributes:{category:"navigation",type:"item",item:"min-height"}},"border-radius":{attributes:{category:"navigation",type:"item",item:"border-radius"}},"emphasis-low":{"state-default":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"state-hover":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"state-active":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral dark color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-low"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-low"}}}}},"emphasis-selected":{"state-default":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"state-hover":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"state-active":{border:{top:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},right:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},left:{width:{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"icon-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"label-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}},"chevron-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"navigation",type:"item",item:"emphasis-selected"}}}}}}},tabs:{link:{height:{attributes:{category:"tabs",type:"link",item:"height"}},"border-radius":{attributes:{category:"tabs",type:"link",item:"border-radius"}},"emphasis-low":{"state-default":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"state-hover":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"state-active":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-low"}},"border-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-low"}}}}},"emphasis-selected":{"state-default":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"state-hover":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"state-active":{border:{top:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},right:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},bottom:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},left:{width:{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}},"theme-light":{"background-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}},"theme-dark":{"background-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},color:{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}},"border-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"tabs",type:"link",item:"emphasis-selected"}}}}}}},"text-field":{input:{"min-height":{attributes:{category:"text-field",type:"input",item:"min-height"}},padding:{horizontal:{attributes:{category:"text-field",type:"input",item:"padding"}}},"border-radius":{attributes:{category:"text-field",type:"input",item:"border-radius"}}},"state-default":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-default",item:"input"}}}}},"theme-light":{header:{label:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}}},input:{"background-color":{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-light"}}}}},"theme-dark":{header:{label:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}}},input:{"background-color":{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-default",item:"theme-dark"}}}}}},"state-hover":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-hover",item:"input"}}}}},"theme-light":{input:{"background-color":{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-light"}}}}},"theme-dark":{input:{"background-color":{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-hover",item:"theme-dark"}}}}}},"state-focus":{input:{border:{top:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},right:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},bottom:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}},left:{width:{attributes:{category:"text-field",type:"state-focus",item:"input"}}}}},"theme-light":{header:{label:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}}},input:{"background-color":{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}},"border-color":{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}},content:{color:{version:"0.22",comment:"Neutral dark color",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}},placeholder:{color:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-light"}}}}},"theme-dark":{header:{label:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}}},input:{"background-color":{attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}},"border-color":{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}},content:{color:{version:"0.22",comment:"Neutral light color",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}},placeholder:{color:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"text-field",type:"state-focus",item:"theme-dark"}}}}}}},"border-radius":{attributes:{category:"border-radius"}},color:{dark:{N:{version:"0.22",comment:"Neutral dark color",attributes:{category:"color",type:"dark",item:"N",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L1:{version:"0.22",comment:"Base dark color with 80% opacity",attributes:{category:"color",type:"dark",item:"L1",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L2:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"color",type:"dark",item:"L2",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L3:{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"color",type:"dark",item:"L3",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L4:{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"color",type:"dark",item:"L4",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L5:{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"color",type:"dark",item:"L5",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L6:{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"color",type:"dark",item:"L6",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}}},light:{N:{version:"0.22",comment:"Neutral light color",attributes:{category:"color",type:"light",item:"N",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L1:{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"color",type:"light",item:"L1",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L2:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"color",type:"light",item:"L2",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L3:{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"color",type:"light",item:"L3",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L4:{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"color",type:"light",item:"L4",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L5:{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"color",type:"light",item:"L5",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L6:{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"color",type:"light",item:"L6",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}}},blue:{D2:{version:"0.22",comment:"Darkest blue color",attributes:{category:"color",type:"blue",item:"D2",hex:"1976d2",rgb:{r:25,g:118,b:210,a:1}}},D1:{version:"0.22",comment:"Dark blue color",attributes:{category:"color",type:"blue",item:"D1",hex:"1e88e5",rgb:{r:30,g:136,b:229,a:1}}},N:{version:"0.22",comment:"Neutral blue color",attributes:{category:"color",type:"blue",item:"N",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L1:{version:"0.22",comment:"Base blue color with 80% opacity",attributes:{category:"color",type:"blue",item:"L1",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L2:{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"color",type:"blue",item:"L2",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L3:{version:"0.22",comment:"Base blue color with 40% opacity",attributes:{category:"color",type:"blue",item:"L3",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L4:{version:"0.22",comment:"Base blue color with 20% opacity",attributes:{category:"color",type:"blue",item:"L4",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L5:{version:"0.22",comment:"Base blue color with 10% opacity",attributes:{category:"color",type:"blue",item:"L5",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L6:{version:"0.22",comment:"Base blue color with 5% opacity",attributes:{category:"color",type:"blue",item:"L6",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}}},green:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"green",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"green",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"green",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"green",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"green",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"green",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"green",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"green",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"green",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},yellow:{D2:{version:"0.22",comment:"Darkest yellow color",attributes:{category:"color",type:"yellow",item:"D2",hex:"ff6f00",rgb:{r:255,g:111,b:0,a:1}}},D1:{version:"0.22",comment:"Dark yellow color",attributes:{category:"color",type:"yellow",item:"D1",hex:"ff8f00",rgb:{r:255,g:143,b:0,a:1}}},N:{version:"0.22",comment:"Neutral yellow color",attributes:{category:"color",type:"yellow",item:"N",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L1:{version:"0.22",comment:"Base yellow color with 80% opacity",attributes:{category:"color",type:"yellow",item:"L1",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L2:{version:"0.22",comment:"Base yellow color with 70% opacity",attributes:{category:"color",type:"yellow",item:"L2",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L3:{version:"0.22",comment:"Base yellow color with 60% opacity",attributes:{category:"color",type:"yellow",item:"L3",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L4:{version:"0.22",comment:"Base yellow color with 40% opacity",attributes:{category:"color",type:"yellow",item:"L4",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L5:{version:"0.22",comment:"Base yellow color with 20% opacity",attributes:{category:"color",type:"yellow",item:"L5",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L6:{version:"0.22",comment:"Base yellow color with 10% opacity",attributes:{category:"color",type:"yellow",item:"L6",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}}},red:{D2:{version:"0.22",comment:"Darkest red color",attributes:{category:"color",type:"red",item:"D2",hex:"d32f2f",rgb:{r:211,g:47,b:47,a:1}}},D1:{version:"0.22",comment:"Dark red color",attributes:{category:"color",type:"red",item:"D1",hex:"e53935",rgb:{r:229,g:57,b:53,a:1}}},N:{version:"0.22",comment:"Neutral red color",attributes:{category:"color",type:"red",item:"N",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L1:{version:"0.22",comment:"Base red color with 80% opacity",attributes:{category:"color",type:"red",item:"L1",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L2:{version:"0.22",comment:"Base red color with 60% opacity",attributes:{category:"color",type:"red",item:"L2",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L3:{version:"0.22",comment:"Base red color with 40% opacity",attributes:{category:"color",type:"red",item:"L3",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L4:{version:"0.22",comment:"Base red color with 20% opacity",attributes:{category:"color",type:"red",item:"L4",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L5:{version:"0.22",comment:"Base red color with 10% opacity",attributes:{category:"color",type:"red",item:"L5",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}},L6:{version:"0.22",comment:"Base red color with 5% opacity",attributes:{category:"color",type:"red",item:"L6",hex:"f44336",rgb:{r:244,g:67,b:54,a:1}}}},grey:{N:{version:"0.22",comment:"Neutral grey color",attributes:{category:"color",type:"grey",item:"N",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L1:{version:"0.22",comment:"Base grey color with 80% opacity",attributes:{category:"color",type:"grey",item:"L1",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L2:{version:"0.22",comment:"Base grey color with 60% opacity",attributes:{category:"color",type:"grey",item:"L2",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L3:{version:"0.22",comment:"Base grey color with 40% opacity",attributes:{category:"color",type:"grey",item:"L3",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L4:{version:"0.22",comment:"Base grey color with 20% opacity",attributes:{category:"color",type:"grey",item:"L4",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L5:{version:"0.22",comment:"Base grey color with 10% opacity",attributes:{category:"color",type:"grey",item:"L5",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}},L6:{version:"0.22",comment:"Base grey color with 5% opacity",attributes:{category:"color",type:"grey",item:"L6",hex:"757575",rgb:{r:117,g:117,b:117,a:1}}}},primary:{D2:{version:"0.22",comment:"Darkest blue color",attributes:{category:"color",type:"primary",item:"D2",hex:"1976d2",rgb:{r:25,g:118,b:210,a:1}}},D1:{version:"0.22",comment:"Dark blue color",attributes:{category:"color",type:"primary",item:"D1",hex:"1e88e5",rgb:{r:30,g:136,b:229,a:1}}},N:{version:"0.22",comment:"Neutral blue color",attributes:{category:"color",type:"primary",item:"N",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L1:{version:"0.22",comment:"Base blue color with 80% opacity",attributes:{category:"color",type:"primary",item:"L1",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L2:{version:"0.22",comment:"Base blue color with 60% opacity",attributes:{category:"color",type:"primary",item:"L2",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L3:{version:"0.22",comment:"Base blue color with 40% opacity",attributes:{category:"color",type:"primary",item:"L3",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L4:{version:"0.22",comment:"Base blue color with 20% opacity",attributes:{category:"color",type:"primary",item:"L4",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L5:{version:"0.22",comment:"Base blue color with 10% opacity",attributes:{category:"color",type:"primary",item:"L5",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}},L6:{version:"0.22",comment:"Base blue color with 5% opacity",attributes:{category:"color",type:"primary",item:"L6",hex:"2196f3",rgb:{r:33,g:150,b:243,a:1}}}},secondary:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"secondary",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"secondary",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"secondary",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"secondary",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"secondary",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"secondary",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"secondary",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"secondary",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"secondary",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},accent:{D2:{version:"0.22",comment:"Darkest green color",attributes:{category:"color",type:"accent",item:"D2",hex:"388e3c",rgb:{r:56,g:142,b:60,a:1}}},D1:{version:"0.22",comment:"Dark green color",attributes:{category:"color",type:"accent",item:"D1",hex:"43a047",rgb:{r:67,g:160,b:71,a:1}}},N:{version:"0.22",comment:"Neutral green color",attributes:{category:"color",type:"accent",item:"N",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L1:{version:"0.22",comment:"Base green color with 80% opacity",attributes:{category:"color",type:"accent",item:"L1",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L2:{version:"0.22",comment:"Base green color with 60% opacity",attributes:{category:"color",type:"accent",item:"L2",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L3:{version:"0.22",comment:"Base green color with 40% opacity",attributes:{category:"color",type:"accent",item:"L3",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L4:{version:"0.22",comment:"Base green color with 20% opacity",attributes:{category:"color",type:"accent",item:"L4",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L5:{version:"0.22",comment:"Base green color with 10% opacity",attributes:{category:"color",type:"accent",item:"L5",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}},L6:{version:"0.22",comment:"Base green color with 5% opacity",attributes:{category:"color",type:"accent",item:"L6",hex:"4caf50",rgb:{r:76,g:175,b:80,a:1}}}},black:{N:{version:"0.22",comment:"Neutral dark color",attributes:{category:"color",type:"black",item:"N",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L1:{version:"0.22",comment:"Base dark color with 80% opacity",attributes:{category:"color",type:"black",item:"L1",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L2:{version:"0.22",comment:"Base dark color with 54% opacity",attributes:{category:"color",type:"black",item:"L2",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L3:{version:"0.22",comment:"Base dark color with 38% opacity",attributes:{category:"color",type:"black",item:"L3",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L4:{version:"0.22",comment:"Base dark color with 20% opacity",attributes:{category:"color",type:"black",item:"L4",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L5:{version:"0.22",comment:"Base dark color with 12% opacity",attributes:{category:"color",type:"black",item:"L5",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}},L6:{version:"0.22",comment:"Base dark color with 5% opacity",attributes:{category:"color",type:"black",item:"L6",hex:"000000",rgb:{r:0,g:0,b:0,a:1}}}},white:{N:{version:"0.22",comment:"Neutral light color",attributes:{category:"color",type:"white",item:"N",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L1:{version:"0.22",comment:"Base light color with 90% opacity",attributes:{category:"color",type:"white",item:"L1",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L2:{version:"0.22",comment:"Base light color with 80% opacity",attributes:{category:"color",type:"white",item:"L2",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L3:{version:"0.22",comment:"Base light color with 60% opacity",attributes:{category:"color",type:"white",item:"L3",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L4:{version:"0.22",comment:"Base light color with 40% opacity",attributes:{category:"color",type:"white",item:"L4",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L5:{version:"0.22",comment:"Base light color with 20% opacity",attributes:{category:"color",type:"white",item:"L5",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}},L6:{version:"0.22",comment:"Base light color with 10% opacity",attributes:{category:"color",type:"white",item:"L6",hex:"ffffff",rgb:{r:255,g:255,b:255,a:1}}}},orange:{D2:{version:"0.22",comment:"Darkest yellow color",attributes:{category:"color",type:"orange",item:"D2",hex:"ff6f00",rgb:{r:255,g:111,b:0,a:1}}},D1:{version:"0.22",comment:"Dark yellow color",attributes:{category:"color",type:"orange",item:"D1",hex:"ff8f00",rgb:{r:255,g:143,b:0,a:1}}},N:{version:"0.22",comment:"Neutral yellow color",attributes:{category:"color",type:"orange",item:"N",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L1:{version:"0.22",comment:"Base yellow color with 80% opacity",attributes:{category:"color",type:"orange",item:"L1",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L2:{version:"0.22",comment:"Base yellow color with 70% opacity",attributes:{category:"color",type:"orange",item:"L2",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L3:{version:"0.22",comment:"Base yellow color with 60% opacity",attributes:{category:"color",type:"orange",item:"L3",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L4:{version:"0.22",comment:"Base yellow color with 40% opacity",attributes:{category:"color",type:"orange",item:"L4",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L5:{version:"0.22",comment:"Base yellow color with 20% opacity",attributes:{category:"color",type:"orange",item:"L5",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}},L6:{version:"0.22",comment:"Base yellow color with 10% opacity",attributes:{category:"color",type:"orange",item:"L6",hex:"ffb300",rgb:{r:255,g:179,b:0,a:1}}}}},size:{xxs:{attributes:{category:"size",type:"xxs"}},xs:{attributes:{category:"size",type:"xs"}},s:{attributes:{category:"size",type:"s"}},m:{attributes:{category:"size",type:"m"}},l:{attributes:{category:"size",type:"l"}},xl:{attributes:{category:"size",type:"xl"}},xxl:{attributes:{category:"size",type:"xxl"}}},spacing:{unit:{tiny:{attributes:{category:"spacing",type:"unit",item:"tiny"}},regular:{attributes:{category:"spacing",type:"unit",item:"regular"}},medium:{attributes:{category:"spacing",type:"unit",item:"medium"}},big:{attributes:{category:"spacing",type:"unit",item:"big"}},huge:{attributes:{category:"spacing",type:"unit",item:"huge"}}}},typography:{"font-family":{attributes:{category:"typography",type:"font-family"}},interface:{display1:{"font-size":{attributes:{category:"typography",type:"interface",item:"display1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"display1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"display1"}}},headline:{"font-size":{attributes:{category:"typography",type:"interface",item:"headline"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"headline"}},"line-height":{attributes:{category:"typography",type:"interface",item:"headline"}}},title:{"font-size":{attributes:{category:"typography",type:"interface",item:"title"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"title"}},"line-height":{attributes:{category:"typography",type:"interface",item:"title"}}},subtitle2:{"font-size":{attributes:{category:"typography",type:"interface",item:"subtitle2"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"subtitle2"}},"line-height":{attributes:{category:"typography",type:"interface",item:"subtitle2"}}},subtitle1:{"font-size":{attributes:{category:"typography",type:"interface",item:"subtitle1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"subtitle1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"subtitle1"}}},body2:{"font-size":{attributes:{category:"typography",type:"interface",item:"body2"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"body2"}},"line-height":{attributes:{category:"typography",type:"interface",item:"body2"}}},body1:{"font-size":{attributes:{category:"typography",type:"interface",item:"body1"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"body1"}},"line-height":{attributes:{category:"typography",type:"interface",item:"body1"}}},caption:{"font-size":{attributes:{category:"typography",type:"interface",item:"caption"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"caption"}},"line-height":{attributes:{category:"typography",type:"interface",item:"caption"}}},overline:{"font-size":{attributes:{category:"typography",type:"interface",item:"overline"}},"font-weight":{attributes:{category:"typography",type:"interface",item:"overline"}},"line-height":{attributes:{category:"typography",type:"interface",item:"overline"}}}},custom:{title1:{"font-family":{attributes:{category:"typography",type:"custom",item:"title1"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title1"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title1"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title1"}}},title2:{"font-family":{attributes:{category:"typography",type:"custom",item:"title2"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title2"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title2"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title2"}}},title3:{"font-family":{attributes:{category:"typography",type:"custom",item:"title3"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title3"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title3"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title3"}}},title4:{"font-family":{attributes:{category:"typography",type:"custom",item:"title4"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title4"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title4"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title4"}}},title5:{"font-family":{attributes:{category:"typography",type:"custom",item:"title5"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title5"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title5"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title5"}}},title6:{"font-family":{attributes:{category:"typography",type:"custom",item:"title6"}},"font-size":{attributes:{category:"typography",type:"custom",item:"title6"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"title6"}},"line-height":{attributes:{category:"typography",type:"custom",item:"title6"}}},intro:{"font-family":{attributes:{category:"typography",type:"custom",item:"intro"}},"font-size":{attributes:{category:"typography",type:"custom",item:"intro"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"intro"}},"line-height":{attributes:{category:"typography",type:"custom",item:"intro"}}},"body-large":{"font-family":{attributes:{category:"typography",type:"custom",item:"body-large"}},"font-size":{attributes:{category:"typography",type:"custom",item:"body-large"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"body-large"}},"line-height":{attributes:{category:"typography",type:"custom",item:"body-large"}}},body:{"font-family":{attributes:{category:"typography",type:"custom",item:"body"}},"font-size":{attributes:{category:"typography",type:"custom",item:"body"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"body"}},"line-height":{attributes:{category:"typography",type:"custom",item:"body"}}},quote:{"font-family":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-size":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"quote"}},"font-style":{attributes:{category:"typography",type:"custom",item:"quote"}},"line-height":{attributes:{category:"typography",type:"custom",item:"quote"}}},"publish-info":{"font-family":{attributes:{category:"typography",type:"custom",item:"publish-info"}},"font-size":{attributes:{category:"typography",type:"custom",item:"publish-info"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"publish-info"}},"line-height":{attributes:{category:"typography",type:"custom",item:"publish-info"}}},button:{"size-m":{"font-family":{attributes:{category:"typography",type:"custom",item:"button"}},"font-size":{attributes:{category:"typography",type:"custom",item:"button"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"button"}}},"size-s":{"font-family":{attributes:{category:"typography",type:"custom",item:"button"}},"font-size":{attributes:{category:"typography",type:"custom",item:"button"}},"font-weight":{attributes:{category:"typography",type:"custom",item:"button"}}}}}}}}});
|
|
2
2
|
//# sourceMappingURL=design-tokens.min.js.map
|