@koobiq/components 17.0.0-beta.2 → 17.0.0-rc.10
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/README.md +1 -2
- package/alert/_alert-theme.scss +48 -24
- package/alert/alert.component.d.ts +23 -3
- package/alert/alert.component.scss +91 -59
- package/autocomplete/_autocomplete-theme.scss +3 -3
- package/autocomplete/autocomplete.scss +8 -18
- package/badge/_badge-theme.scss +30 -45
- package/badge/badge.component.scss +18 -39
- package/button/_button-base.scss +7 -14
- package/button/_button-theme.scss +30 -86
- package/button/button.component.d.ts +3 -2
- package/button/button.scss +7 -17
- package/button-toggle/_button-toggle-theme.scss +19 -20
- package/button-toggle/button-toggle.scss +17 -44
- package/card/_card-theme.scss +18 -17
- package/card/card.component.scss +3 -6
- package/checkbox/_checkbox-theme.scss +50 -50
- package/checkbox/checkbox.scss +31 -35
- package/code-block/README.md +18 -14
- package/code-block/_code-block-theme.scss +53 -23
- package/code-block/actionbar.component.scss +11 -25
- package/code-block/code-block.component.d.ts +12 -4
- package/code-block/code-block.scss +62 -77
- package/core/form-field/form-field-ref.d.ts +2 -0
- package/core/forms/_forms-theme.scss +4 -8
- package/core/forms/_forms.scss +13 -43
- package/core/locales/formatters.d.ts +96 -0
- package/core/locales/locale-service.d.ts +97 -0
- package/core/option/_optgroup-theme.scss +4 -6
- package/core/option/_option-action-theme.scss +8 -11
- package/core/option/_option-theme.scss +15 -20
- package/core/option/optgroup.scss +0 -1
- package/core/option/option.scss +0 -1
- package/core/pop-up/_pop-up.scss +0 -1
- package/core/pop-up/pop-up-trigger.d.ts +3 -1
- package/core/select/common.d.ts +35 -0
- package/core/select/index.d.ts +1 -0
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +15 -19
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +9 -9
- package/core/services/theme.service.d.ts +3 -2
- package/core/styles/_core.scss +0 -1
- package/core/styles/_koobiq-theme.scss +5 -3
- package/core/styles/common/_animation.scss +9 -8
- package/core/styles/common/_button.scss +0 -2
- package/core/styles/common/_clearfix.scss +1 -1
- package/core/styles/common/_groups.scss +3 -9
- package/core/styles/common/_list.scss +28 -31
- package/core/styles/common/_overlay.scss +4 -3
- package/core/styles/common/_popup.scss +5 -5
- package/core/styles/common/_rtl.scss +4 -4
- package/core/styles/common/_select.scss +48 -42
- package/core/styles/common/_tokens.scss +47 -0
- package/core/styles/functions/_number.scss +14 -19
- package/core/styles/functions/_string.scss +18 -19
- package/core/styles/functions/_timing.scss +24 -24
- package/core/styles/theming/_components-theming.scss +1380 -1384
- package/core/styles/theming/_scrollbar-theme.scss +8 -5
- package/core/styles/theming/_theming.scss +26 -29
- package/core/styles/typography/_typography-utils.scss +1 -2
- package/core/styles/typography/_typography.scss +138 -85
- package/core/styles/visual/_body.scss +0 -2
- package/core/styles/visual/_layout.scss +44 -38
- package/core/utils/data-size/config.d.ts +20 -2
- package/core/utils/data-size/data-size.pipe.d.ts +10 -9
- package/core/utils/data-size/size.d.ts +3 -4
- package/datepicker/_datepicker-theme.scss +38 -40
- package/datepicker/calendar-body.scss +3 -11
- package/datepicker/calendar-header.scss +4 -10
- package/datepicker/calendar.scss +5 -17
- package/datepicker/datepicker-content.scss +5 -15
- package/datepicker/datepicker-input.scss +0 -5
- package/datepicker/datepicker-toggle.scss +3 -3
- package/divider/_divider-theme.scss +2 -1
- package/divider/divider.scss +9 -26
- package/dl/_dl-theme.scss +5 -8
- package/dl/dl.scss +5 -20
- package/dropdown/_dropdown-theme.scss +27 -22
- package/dropdown/dropdown-item.scss +5 -12
- package/dropdown/dropdown-trigger.directive.d.ts +2 -2
- package/dropdown/dropdown.scss +6 -15
- package/ellipsis-center/ellipsis-center.directive.d.ts +3 -2
- package/empty-state/README.md +0 -0
- package/empty-state/_empty-state-theme.scss +56 -0
- package/empty-state/empty-state.component.d.ts +31 -0
- package/empty-state/empty-state.module.d.ts +10 -0
- package/empty-state/empty-state.scss +81 -0
- package/empty-state/index.d.ts +1 -0
- package/empty-state/public-api.d.ts +2 -0
- package/esm2022/alert/alert.component.mjs +52 -5
- package/esm2022/badge/badge.component.mjs +2 -2
- package/esm2022/button/button.component.mjs +13 -6
- package/esm2022/button-toggle/button-toggle.component.mjs +2 -2
- package/esm2022/checkbox/checkbox.mjs +2 -2
- package/esm2022/code-block/actionbar.component.mjs +2 -2
- package/esm2022/code-block/code-block.component.mjs +58 -14
- package/esm2022/core/animation/select-animations.mjs +4 -4
- package/esm2022/core/form-field/form-field-ref.mjs +1 -1
- package/esm2022/core/locales/formatters.mjs +97 -1
- package/esm2022/core/locales/locale-service.mjs +5 -2
- package/esm2022/core/option/option.mjs +2 -2
- package/esm2022/core/pop-up/pop-up-trigger.mjs +18 -11
- package/esm2022/core/select/common.mjs +120 -0
- package/esm2022/core/select/index.mjs +2 -1
- package/esm2022/core/services/theme.service.mjs +4 -1
- package/esm2022/core/utils/data-size/config.mjs +5 -17
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +36 -22
- package/esm2022/core/utils/data-size/size.mjs +10 -14
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +1 -1
- package/esm2022/datepicker/datepicker-animations.mjs +2 -2
- package/esm2022/dropdown/dropdown-animations.mjs +4 -4
- package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +4 -4
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +7 -5
- package/esm2022/empty-state/empty-state.component.mjs +104 -0
- package/esm2022/empty-state/empty-state.module.mjs +50 -0
- package/esm2022/empty-state/index.mjs +2 -0
- package/esm2022/empty-state/koobiq-components-empty-state.mjs +5 -0
- package/esm2022/empty-state/public-api.mjs +3 -0
- package/esm2022/file-upload/file-upload.mjs +15 -1
- package/esm2022/file-upload/file-upload.module.mjs +15 -5
- package/esm2022/file-upload/multiple-file-upload.component.mjs +98 -49
- package/esm2022/file-upload/single-file-upload.component.mjs +110 -54
- package/esm2022/form-field/form-field.mjs +2 -2
- package/esm2022/form-field/hint.mjs +2 -2
- package/esm2022/form-field/password-hint.mjs +2 -2
- package/esm2022/form-field/password-toggle.mjs +11 -9
- package/esm2022/icon/icon-item.component.mjs +16 -6
- package/esm2022/input/input-number.mjs +2 -2
- package/esm2022/list/list-selection.component.mjs +2 -2
- package/esm2022/list/list.component.mjs +2 -2
- package/esm2022/loader-overlay/loader-overlay.component.mjs +2 -2
- package/esm2022/markdown/markdown.component.mjs +2 -2
- package/esm2022/modal/modal.component.mjs +8 -9
- package/esm2022/navbar/navbar-item.component.mjs +11 -11
- package/esm2022/navbar/navbar.component.mjs +2 -2
- package/esm2022/navbar/vertical-navbar.component.mjs +2 -2
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +3 -3
- package/esm2022/radio/radio.component.mjs +2 -2
- package/esm2022/scrollbar/scrollbar.component.mjs +2 -2
- package/esm2022/select/select-option.directive.mjs +7 -5
- package/esm2022/select/select.component.mjs +71 -125
- package/esm2022/select/select.module.mjs +28 -28
- package/esm2022/splitter/splitter.component.mjs +37 -17
- package/esm2022/table/table.component.mjs +29 -6
- package/esm2022/table/table.module.mjs +14 -6
- package/esm2022/tabs/tab-body.component.mjs +1 -1
- package/esm2022/tabs/tab-group.component.mjs +55 -13
- package/esm2022/tabs/tab-header.component.mjs +2 -2
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +2 -2
- package/esm2022/tags/tag-default-options.mjs +1 -1
- package/esm2022/tags/tag-input.mjs +17 -3
- package/esm2022/tags/tag-list.component.mjs +2 -2
- package/esm2022/tags/tag.component.mjs +4 -4
- package/esm2022/textarea/textarea.component.mjs +12 -10
- package/esm2022/timepicker/timepicker.directive.mjs +11 -3
- package/esm2022/timezone/timezone-option.component.mjs +2 -2
- package/esm2022/timezone/timezone-option.directive.mjs +7 -5
- package/esm2022/timezone/timezone-select.component.mjs +5 -5
- package/esm2022/title/title.directive.mjs +3 -4
- package/esm2022/toast/toast-container.component.mjs +2 -2
- package/esm2022/toast/toast.component.mjs +4 -4
- package/esm2022/toast/toast.service.mjs +18 -13
- package/esm2022/toast/toast.type.mjs +3 -1
- package/esm2022/tooltip/tooltip.component.mjs +28 -14
- package/esm2022/tree/padding.directive.mjs +2 -2
- package/esm2022/tree/tree-base.mjs +2 -2
- package/esm2022/tree/tree-option.component.mjs +2 -2
- package/esm2022/tree/tree-selection.component.mjs +6 -1
- package/esm2022/tree-select/tree-select.component.mjs +29 -44
- package/esm2022/tree-select/tree-select.module.mjs +31 -11
- package/fesm2022/koobiq-components-alert.mjs +52 -5
- package/fesm2022/koobiq-components-alert.mjs.map +1 -1
- package/fesm2022/koobiq-components-badge.mjs +2 -2
- package/fesm2022/koobiq-components-badge.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +2 -2
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +12 -5
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +2 -2
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +57 -14
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +285 -67
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +2 -2
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +8 -8
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +5 -4
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-empty-state.mjs +157 -0
- package/fesm2022/koobiq-components-empty-state.mjs.map +1 -0
- package/fesm2022/koobiq-components-file-upload.mjs +225 -97
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +21 -21
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +14 -4
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +1 -1
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +4 -4
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +2 -2
- package/fesm2022/koobiq-components-modal.mjs +7 -8
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +14 -14
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +4 -4
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +2 -2
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-scrollbar.mjs +2 -2
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +102 -155
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +36 -16
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-table.mjs +41 -10
- package/fesm2022/koobiq-components-table.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +57 -15
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +21 -8
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +11 -9
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +10 -2
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +11 -10
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +2 -3
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +25 -17
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +26 -13
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +57 -51
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +9 -4
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +124 -73
- package/file-upload/file-upload.d.ts +1 -1
- package/file-upload/file-upload.module.d.ts +11 -9
- package/file-upload/file-upload.scss +0 -6
- package/file-upload/multiple-file-upload.component.d.ts +38 -10
- package/file-upload/multiple-file-upload.component.scss +50 -120
- package/file-upload/single-file-upload.component.d.ts +40 -13
- package/file-upload/single-file-upload.component.scss +12 -33
- package/form-field/_form-field-theme.scss +46 -36
- package/form-field/_hint-theme.scss +15 -20
- package/form-field/cleaner.scss +3 -9
- package/form-field/form-field.scss +23 -26
- package/form-field/hint.scss +5 -8
- package/form-field/password-toggle.d.ts +3 -2
- package/form-field/password-toggle.scss +3 -10
- package/form-field/stepper.scss +4 -11
- package/icon/_icon-button-theme.scss +47 -36
- package/icon/_icon-item-theme.scss +47 -26
- package/icon/_icon-theme.scss +12 -14
- package/icon/icon-button.scss +5 -20
- package/icon/icon-item.component.d.ts +3 -1
- package/icon/icon-item.scss +10 -8
- package/icon/icon.scss +0 -6
- package/input/_input-theme.scss +6 -4
- package/input/input.scss +11 -10
- package/link/_link-theme.scss +30 -49
- package/list/_list-theme.scss +21 -19
- package/list/list.scss +2 -6
- package/loader-overlay/_loader-overlay-theme.scss +17 -18
- package/loader-overlay/loader-overlay.scss +9 -33
- package/markdown/_markdown-theme.scss +47 -47
- package/markdown/markdown.scss +41 -91
- package/modal/README.md +5 -4
- package/modal/_modal-animation.scss +0 -1
- package/modal/_modal-confirm.scss +2 -7
- package/modal/_modal-theme.scss +11 -13
- package/modal/modal.component.d.ts +1 -1
- package/modal/modal.scss +15 -31
- package/navbar/README.md +21 -20
- package/navbar/_navbar-item_horizontal.scss +28 -29
- package/navbar/_navbar-item_vertical.scss +31 -31
- package/navbar/_navbar-theme.scss +20 -24
- package/navbar/navbar-brand.scss +24 -27
- package/navbar/navbar-divider.scss +4 -8
- package/navbar/navbar-item.component.d.ts +4 -4
- package/navbar/navbar-item.scss +13 -15
- package/navbar/navbar.scss +2 -6
- package/navbar/vertical-navbar.scss +4 -6
- package/package.json +23 -16
- package/popover/README.md +18 -14
- package/popover/_popover-theme.scss +9 -17
- package/popover/popover.scss +15 -29
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/progress-bar/_progress-bar-theme.scss +7 -11
- package/progress-bar/progress-bar.scss +6 -19
- package/progress-spinner/_progress-spinner-theme.scss +6 -8
- package/progress-spinner/progress-spinner.scss +8 -18
- package/radio/_radio-theme.scss +36 -37
- package/radio/radio.scss +25 -40
- package/risk-level/_risk-level-theme.scss +25 -31
- package/risk-level/risk-level.component.scss +4 -10
- package/schematics/collection.json +11 -0
- package/schematics/ng-add/index.js +70 -0
- package/schematics/ng-add/schema.json +15 -0
- package/scrollbar/_scrollbar-component-theme.scss +15 -19
- package/scrollbar/scrollbar.component.scss +68 -63
- package/scrollbar/scrollbar.directive.d.ts +1 -0
- package/scrollbar/scrollbar.types.d.ts +1 -0
- package/select/_select-theme.scss +14 -16
- package/select/select-option.directive.d.ts +3 -2
- package/select/select.component.d.ts +12 -33
- package/select/select.module.d.ts +1 -1
- package/select/select.scss +3 -11
- package/sidepanel/_sidepanel-theme.scss +8 -10
- package/sidepanel/sidepanel.scss +20 -37
- package/splitter/_splitter-theme.scss +5 -6
- package/splitter/splitter.component.d.ts +10 -5
- package/splitter/splitter.scss +0 -1
- package/table/_table-theme.scss +16 -15
- package/table/table.component.d.ts +8 -1
- package/table/table.module.d.ts +1 -1
- package/table/table.scss +41 -42
- package/tabs/_tabs-common.scss +13 -15
- package/tabs/_tabs-theme.scss +76 -44
- package/tabs/tab-body.component.d.ts +1 -1
- package/tabs/tab-group.component.d.ts +9 -3
- package/tabs/tab-group.scss +2 -8
- package/tabs/tab-header.scss +0 -10
- package/tabs/tab-nav-bar/tab-nav-bar.scss +2 -9
- package/tags/_tag-theme.scss +22 -27
- package/tags/tag-default-options.d.ts +1 -0
- package/tags/tag-input.d.ts +7 -1
- package/tags/tag-list.scss +15 -12
- package/tags/tag.component.d.ts +1 -1
- package/tags/tag.scss +5 -11
- package/textarea/_textarea-theme.scss +2 -5
- package/textarea/textarea.scss +5 -10
- package/timepicker/timepicker.directive.d.ts +1 -1
- package/timepicker/timepicker.scss +2 -8
- package/timezone/_timezone-option-theme.scss +8 -10
- package/timezone/timezone-option.component.scss +5 -8
- package/timezone/timezone-option.directive.d.ts +3 -2
- package/timezone/timezone-select.component.d.ts +2 -1
- package/timezone/timezone-select.component.scss +2 -4
- package/title/title.directive.d.ts +0 -1
- package/toast/_toast-theme.scss +20 -16
- package/toast/toast-container.component.scss +5 -6
- package/toast/toast.component.scss +28 -29
- package/toast/toast.service.d.ts +8 -4
- package/toast/toast.type.d.ts +2 -0
- package/toggle/_toggle-theme.scss +49 -42
- package/toggle/toggle.scss +9 -22
- package/tooltip/_tooltip-theme.scss +12 -16
- package/tooltip/tooltip.component.d.ts +12 -8
- package/tooltip/tooltip.scss +7 -13
- package/tree/_tree-theme.scss +20 -23
- package/tree/toggle.scss +3 -6
- package/tree/tree-base.d.ts +1 -1
- package/tree/tree-option.scss +17 -14
- package/tree/tree-selection.component.d.ts +1 -0
- package/tree-select/_tree-select-theme.scss +12 -15
- package/tree-select/tree-select.component.d.ts +8 -17
- package/tree-select/tree-select.module.d.ts +1 -2
- package/tree-select/tree-select.scss +1 -6
- package/core/styles/_variables.scss +0 -1
|
@@ -1,1828 +1,1823 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
1
3
|
@function kbq-components-theme($tokens, $scheme) {
|
|
2
4
|
$alert: (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
default: (
|
|
6
|
+
contrast: (
|
|
7
|
+
background: map.get($tokens, 'alert-#{$scheme}-default-contrast-container-background'),
|
|
8
|
+
title: map.get($tokens, 'alert-#{$scheme}-default-contrast-container-title'),
|
|
9
|
+
text: map.get($tokens, 'alert-#{$scheme}-default-contrast-container-text'),
|
|
10
|
+
),
|
|
11
|
+
error: (
|
|
12
|
+
background: map.get($tokens, 'alert-#{$scheme}-default-error-container-background'),
|
|
13
|
+
title: map.get($tokens, 'alert-#{$scheme}-default-error-container-title'),
|
|
14
|
+
text: map.get($tokens, 'alert-#{$scheme}-default-error-container-text'),
|
|
15
|
+
),
|
|
16
|
+
warning: (
|
|
17
|
+
background: map.get($tokens, 'alert-#{$scheme}-default-warning-container-background'),
|
|
18
|
+
title: map.get($tokens, 'alert-#{$scheme}-default-warning-container-title'),
|
|
19
|
+
text: map.get($tokens, 'alert-#{$scheme}-default-warning-container-text'),
|
|
20
|
+
),
|
|
21
|
+
success: (
|
|
22
|
+
background: map.get($tokens, 'alert-#{$scheme}-default-success-container-background'),
|
|
23
|
+
title: map.get($tokens, 'alert-#{$scheme}-default-success-container-title'),
|
|
24
|
+
text: map.get($tokens, 'alert-#{$scheme}-default-success-container-text'),
|
|
25
|
+
),
|
|
26
|
+
theme: (
|
|
27
|
+
background: map.get($tokens, 'alert-#{$scheme}-default-theme-container-background'),
|
|
28
|
+
title: map.get($tokens, 'alert-#{$scheme}-default-theme-container-title'),
|
|
29
|
+
text: map.get($tokens, 'alert-#{$scheme}-default-theme-container-text'),
|
|
30
|
+
),
|
|
31
|
+
),
|
|
32
|
+
colored: (
|
|
33
|
+
contrast: (
|
|
34
|
+
background: map.get($tokens, 'alert-#{$scheme}-colored-contrast-container-background'),
|
|
35
|
+
title: map.get($tokens, 'alert-#{$scheme}-colored-contrast-container-title'),
|
|
36
|
+
text: map.get($tokens, 'alert-#{$scheme}-colored-contrast-container-text'),
|
|
37
|
+
),
|
|
38
|
+
error: (
|
|
39
|
+
background: map.get($tokens, 'alert-#{$scheme}-colored-error-container-background'),
|
|
40
|
+
title: map.get($tokens, 'alert-#{$scheme}-colored-error-container-title'),
|
|
41
|
+
text: map.get($tokens, 'alert-#{$scheme}-colored-error-container-text'),
|
|
42
|
+
),
|
|
43
|
+
warning: (
|
|
44
|
+
background: map.get($tokens, 'alert-#{$scheme}-colored-warning-container-background'),
|
|
45
|
+
title: map.get($tokens, 'alert-#{$scheme}-colored-warning-container-title'),
|
|
46
|
+
text: map.get($tokens, 'alert-#{$scheme}-colored-warning-container-text'),
|
|
47
|
+
),
|
|
48
|
+
success: (
|
|
49
|
+
background: map.get($tokens, 'alert-#{$scheme}-colored-success-container-background'),
|
|
50
|
+
title: map.get($tokens, 'alert-#{$scheme}-colored-success-container-title'),
|
|
51
|
+
text: map.get($tokens, 'alert-#{$scheme}-colored-success-container-text'),
|
|
52
|
+
),
|
|
53
|
+
theme: (
|
|
54
|
+
background: map.get($tokens, 'alert-#{$scheme}-colored-theme-container-background'),
|
|
55
|
+
title: map.get($tokens, 'alert-#{$scheme}-colored-theme-container-title'),
|
|
56
|
+
text: map.get($tokens, 'alert-#{$scheme}-colored-theme-container-text'),
|
|
57
|
+
),
|
|
7
58
|
),
|
|
8
|
-
error: (
|
|
9
|
-
background: map-get($tokens, 'alert-#{$scheme}-error-container-background'),
|
|
10
|
-
title: map-get($tokens, 'alert-#{$scheme}-error-container-title'),
|
|
11
|
-
text: map-get($tokens, 'alert-#{$scheme}-error-container-text')
|
|
12
|
-
)
|
|
13
59
|
);
|
|
14
60
|
|
|
15
61
|
$popup: (
|
|
16
|
-
shadow: map
|
|
17
|
-
border: map
|
|
18
|
-
|
|
19
|
-
background: map
|
|
20
|
-
footer-background: map-get($tokens, 'popup-#{$scheme}-footer-background')
|
|
62
|
+
shadow: map.get($tokens, 'popup-#{$scheme}-shadow'),
|
|
63
|
+
border: map.get($tokens, 'popup-#{$scheme}-border'),
|
|
64
|
+
background: map.get($tokens, 'popup-#{$scheme}-background'),
|
|
65
|
+
footer-background: map.get($tokens, 'popup-#{$scheme}-footer-background'),
|
|
21
66
|
);
|
|
22
67
|
|
|
23
68
|
$dropdown: (
|
|
24
|
-
box-shadow: map
|
|
25
|
-
background: map
|
|
69
|
+
box-shadow: map.get($tokens, 'dropdown-#{$scheme}-container-box-shadow'),
|
|
70
|
+
background: map.get($tokens, 'dropdown-#{$scheme}-container-background'),
|
|
26
71
|
);
|
|
27
72
|
|
|
28
73
|
$badge: (
|
|
29
74
|
filled: (
|
|
30
75
|
fade-off: (
|
|
31
76
|
theme: (
|
|
32
|
-
color: map
|
|
33
|
-
background: map
|
|
34
|
-
caption: map
|
|
35
|
-
icon: map
|
|
77
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-color'),
|
|
78
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-background'),
|
|
79
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-caption'),
|
|
80
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-icon'),
|
|
36
81
|
),
|
|
37
82
|
success: (
|
|
38
|
-
color: map
|
|
39
|
-
background: map
|
|
40
|
-
caption: map
|
|
41
|
-
icon: map
|
|
83
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-success-color'),
|
|
84
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-success-background'),
|
|
85
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-success-caption'),
|
|
86
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-success-icon'),
|
|
42
87
|
),
|
|
43
88
|
warning: (
|
|
44
|
-
color: map
|
|
45
|
-
background: map
|
|
46
|
-
caption: map
|
|
47
|
-
icon: map
|
|
89
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-color'),
|
|
90
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-background'),
|
|
91
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-caption'),
|
|
92
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-icon'),
|
|
48
93
|
),
|
|
49
94
|
error: (
|
|
50
|
-
color: map
|
|
51
|
-
background: map
|
|
52
|
-
caption: map
|
|
53
|
-
icon: map
|
|
54
|
-
)
|
|
95
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-error-color'),
|
|
96
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-error-background'),
|
|
97
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-error-caption'),
|
|
98
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-off-error-icon'),
|
|
99
|
+
),
|
|
55
100
|
),
|
|
56
101
|
fade-on: (
|
|
57
102
|
theme: (
|
|
58
|
-
color: map
|
|
59
|
-
background: map
|
|
60
|
-
caption: map
|
|
61
|
-
icon: map
|
|
103
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-color'),
|
|
104
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-background'),
|
|
105
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-caption'),
|
|
106
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-icon'),
|
|
62
107
|
),
|
|
63
108
|
contrast: (
|
|
64
|
-
color: map
|
|
65
|
-
background: map
|
|
66
|
-
caption: map
|
|
67
|
-
icon: map
|
|
109
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-color'),
|
|
110
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-background'),
|
|
111
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-caption'),
|
|
112
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-icon'),
|
|
68
113
|
),
|
|
69
114
|
success: (
|
|
70
|
-
color: map
|
|
71
|
-
background: map
|
|
72
|
-
caption: map
|
|
73
|
-
icon: map
|
|
115
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-success-color'),
|
|
116
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-success-background'),
|
|
117
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-success-caption'),
|
|
118
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-success-icon'),
|
|
74
119
|
),
|
|
75
120
|
warning: (
|
|
76
|
-
color: map
|
|
77
|
-
background: map
|
|
78
|
-
caption: map
|
|
79
|
-
icon: map
|
|
121
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-color'),
|
|
122
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-background'),
|
|
123
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-caption'),
|
|
124
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-icon'),
|
|
80
125
|
),
|
|
81
126
|
error: (
|
|
82
|
-
color: map
|
|
83
|
-
background: map
|
|
84
|
-
caption: map
|
|
85
|
-
icon: map
|
|
86
|
-
)
|
|
87
|
-
)
|
|
127
|
+
color: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-error-color'),
|
|
128
|
+
background: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-error-background'),
|
|
129
|
+
caption: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-error-caption'),
|
|
130
|
+
icon: map.get($tokens, 'badge-#{$scheme}-filled-fade-on-error-icon'),
|
|
131
|
+
),
|
|
132
|
+
),
|
|
88
133
|
),
|
|
89
134
|
outline: (
|
|
90
135
|
fade-on: (
|
|
91
136
|
theme: (
|
|
92
|
-
color: map
|
|
93
|
-
background: map
|
|
94
|
-
border: map
|
|
95
|
-
caption: map
|
|
96
|
-
icon: map
|
|
137
|
+
color: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-color'),
|
|
138
|
+
background: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-background'),
|
|
139
|
+
border: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-border'),
|
|
140
|
+
caption: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-caption'),
|
|
141
|
+
icon: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-icon'),
|
|
97
142
|
),
|
|
98
143
|
contrast: (
|
|
99
|
-
color: map
|
|
100
|
-
background: map
|
|
101
|
-
border: map
|
|
102
|
-
caption: map
|
|
103
|
-
icon: map
|
|
144
|
+
color: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-color'),
|
|
145
|
+
background: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-background'),
|
|
146
|
+
border: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-border'),
|
|
147
|
+
caption: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-caption'),
|
|
148
|
+
icon: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-icon'),
|
|
104
149
|
),
|
|
105
150
|
success: (
|
|
106
|
-
color: map
|
|
107
|
-
background: map
|
|
108
|
-
border: map
|
|
109
|
-
caption: map
|
|
110
|
-
icon: map
|
|
151
|
+
color: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-success-color'),
|
|
152
|
+
background: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-success-background'),
|
|
153
|
+
border: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-success-border'),
|
|
154
|
+
caption: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-success-caption'),
|
|
155
|
+
icon: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-success-icon'),
|
|
111
156
|
),
|
|
112
157
|
warning: (
|
|
113
|
-
color: map
|
|
114
|
-
background: map
|
|
115
|
-
border: map
|
|
116
|
-
caption: map
|
|
117
|
-
icon: map
|
|
158
|
+
color: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-color'),
|
|
159
|
+
background: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-background'),
|
|
160
|
+
border: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-border'),
|
|
161
|
+
caption: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-caption'),
|
|
162
|
+
icon: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-icon'),
|
|
118
163
|
),
|
|
119
164
|
error: (
|
|
120
|
-
color: map
|
|
121
|
-
background: map
|
|
122
|
-
border: map
|
|
123
|
-
caption: map
|
|
124
|
-
icon: map
|
|
125
|
-
)
|
|
126
|
-
)
|
|
127
|
-
)
|
|
165
|
+
color: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-error-color'),
|
|
166
|
+
background: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-error-background'),
|
|
167
|
+
border: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-error-border'),
|
|
168
|
+
caption: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-error-caption'),
|
|
169
|
+
icon: map.get($tokens, 'badge-#{$scheme}-outline-fade-on-error-icon'),
|
|
170
|
+
),
|
|
171
|
+
),
|
|
172
|
+
),
|
|
128
173
|
);
|
|
129
174
|
|
|
130
175
|
$button: (
|
|
131
176
|
filled: (
|
|
132
177
|
contrast-fade-off: (
|
|
133
|
-
border: map
|
|
134
|
-
foreground: map
|
|
135
|
-
background: map
|
|
136
|
-
left-icon: map
|
|
137
|
-
right-icon: map
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-
|
|
150
|
-
),
|
|
151
|
-
states_disabled_left-icon: map-get(
|
|
152
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-left-icon'
|
|
153
|
-
),
|
|
154
|
-
states_disabled_right-icon: map-get(
|
|
155
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-right-icon'
|
|
156
|
-
)
|
|
178
|
+
border: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-border'),
|
|
179
|
+
foreground: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-foreground'),
|
|
180
|
+
background: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-background'),
|
|
181
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-left-icon'),
|
|
182
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-right-icon'),
|
|
183
|
+
states-hover-background:
|
|
184
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-hover-background'),
|
|
185
|
+
states-active-background:
|
|
186
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-active-background'),
|
|
187
|
+
states-disabled-foreground:
|
|
188
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-foreground'),
|
|
189
|
+
states-disabled-background:
|
|
190
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-background'),
|
|
191
|
+
states-disabled-left-icon:
|
|
192
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-left-icon'),
|
|
193
|
+
states-disabled-right-icon:
|
|
194
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-right-icon'),
|
|
157
195
|
),
|
|
158
196
|
contrast-fade-on: (
|
|
159
|
-
border: map
|
|
160
|
-
foreground: map
|
|
161
|
-
background: map
|
|
162
|
-
left-icon: map
|
|
163
|
-
right-icon: map
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-
|
|
176
|
-
|
|
177
|
-
states_disabled_left-icon: map-get(
|
|
178
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-left-icon'
|
|
179
|
-
),
|
|
180
|
-
states_disabled_right-icon: map-get(
|
|
181
|
-
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-right-icon'
|
|
182
|
-
)
|
|
183
|
-
)
|
|
197
|
+
border: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-border'),
|
|
198
|
+
foreground: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-foreground'),
|
|
199
|
+
background: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-background'),
|
|
200
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-left-icon'),
|
|
201
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-right-icon'),
|
|
202
|
+
states-hover-background:
|
|
203
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-hover-background'),
|
|
204
|
+
states-active-background:
|
|
205
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-active-background'),
|
|
206
|
+
states-disabled-foreground:
|
|
207
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-foreground'),
|
|
208
|
+
states-disabled-background:
|
|
209
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-background'),
|
|
210
|
+
states-disabled-left-icon:
|
|
211
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-left-icon'),
|
|
212
|
+
states-disabled-right-icon:
|
|
213
|
+
map.get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-right-icon'),
|
|
214
|
+
),
|
|
184
215
|
),
|
|
185
216
|
outline: (
|
|
186
217
|
theme-fade-on: (
|
|
187
|
-
border: map
|
|
188
|
-
foreground: map
|
|
189
|
-
background: map
|
|
190
|
-
left-icon: map
|
|
191
|
-
right-icon: map
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-
|
|
204
|
-
),
|
|
205
|
-
states_disabled_left-icon: map-get(
|
|
206
|
-
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-left-icon'
|
|
207
|
-
),
|
|
208
|
-
states_disabled_right-icon: map-get(
|
|
209
|
-
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-right-icon'
|
|
210
|
-
)
|
|
218
|
+
border: map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-border'),
|
|
219
|
+
foreground: map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-foreground'),
|
|
220
|
+
background: map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-background'),
|
|
221
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-left-icon'),
|
|
222
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-right-icon'),
|
|
223
|
+
states-hover-background:
|
|
224
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-hover-background'),
|
|
225
|
+
states-active-background:
|
|
226
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-active-background'),
|
|
227
|
+
states_disabled_border:
|
|
228
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-border'),
|
|
229
|
+
states-disabled-foreground:
|
|
230
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-foreground'),
|
|
231
|
+
states-disabled-left-icon:
|
|
232
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-left-icon'),
|
|
233
|
+
states-disabled-right-icon:
|
|
234
|
+
map.get($tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-right-icon'),
|
|
211
235
|
),
|
|
212
236
|
contrast-fade-on: (
|
|
213
|
-
border: map
|
|
214
|
-
foreground: map
|
|
215
|
-
background: map
|
|
216
|
-
left-icon: map
|
|
217
|
-
right-icon: map
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-
|
|
230
|
-
|
|
231
|
-
states_disabled_left-icon: map-get(
|
|
232
|
-
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-left-icon'
|
|
233
|
-
),
|
|
234
|
-
states_disabled_right-icon: map-get(
|
|
235
|
-
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-right-icon'
|
|
236
|
-
)
|
|
237
|
-
)
|
|
237
|
+
border: map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-border'),
|
|
238
|
+
foreground: map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-foreground'),
|
|
239
|
+
background: map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-background'),
|
|
240
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-left-icon'),
|
|
241
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-right-icon'),
|
|
242
|
+
states-hover-background:
|
|
243
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-hover-background'),
|
|
244
|
+
states-active-background:
|
|
245
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-active-background'),
|
|
246
|
+
states_disabled_border:
|
|
247
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-border'),
|
|
248
|
+
states-disabled-foreground:
|
|
249
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-foreground'),
|
|
250
|
+
states-disabled-left-icon:
|
|
251
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-left-icon'),
|
|
252
|
+
states-disabled-right-icon:
|
|
253
|
+
map.get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-right-icon'),
|
|
254
|
+
),
|
|
238
255
|
),
|
|
239
256
|
transparent: (
|
|
240
257
|
theme: (
|
|
241
|
-
border: map
|
|
242
|
-
foreground: map
|
|
243
|
-
background: map
|
|
244
|
-
left-icon: map
|
|
245
|
-
right-icon: map
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
states_disabled_left-icon: map-get(
|
|
257
|
-
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-left-icon'
|
|
258
|
-
),
|
|
259
|
-
states_disabled_right-icon: map-get(
|
|
260
|
-
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-right-icon'
|
|
261
|
-
)
|
|
258
|
+
border: map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-border'),
|
|
259
|
+
foreground: map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-foreground'),
|
|
260
|
+
background: map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-background'),
|
|
261
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-left-icon'),
|
|
262
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-right-icon'),
|
|
263
|
+
states-hover-background:
|
|
264
|
+
map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-hover-background'),
|
|
265
|
+
states-active-background:
|
|
266
|
+
map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-active-background'),
|
|
267
|
+
states-disabled-foreground:
|
|
268
|
+
map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-foreground'),
|
|
269
|
+
states-disabled-left-icon:
|
|
270
|
+
map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-left-icon'),
|
|
271
|
+
states-disabled-right-icon:
|
|
272
|
+
map.get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-right-icon'),
|
|
262
273
|
),
|
|
263
274
|
contrast: (
|
|
264
|
-
border: map
|
|
265
|
-
foreground: map
|
|
266
|
-
background: map
|
|
267
|
-
left-icon: map
|
|
268
|
-
right-icon: map
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
),
|
|
282
|
-
states_disabled_right-icon: map-get(
|
|
283
|
-
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-right-icon'
|
|
284
|
-
)
|
|
285
|
-
)
|
|
286
|
-
)
|
|
275
|
+
border: map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-border'),
|
|
276
|
+
foreground: map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-foreground'),
|
|
277
|
+
background: map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-background'),
|
|
278
|
+
left-icon: map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-left-icon'),
|
|
279
|
+
right-icon: map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-right-icon'),
|
|
280
|
+
states-hover-background:
|
|
281
|
+
map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-hover-background'),
|
|
282
|
+
states-active-background:
|
|
283
|
+
map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-active-background'),
|
|
284
|
+
states-disabled-foreground:
|
|
285
|
+
map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-foreground'),
|
|
286
|
+
states-disabled-left-icon:
|
|
287
|
+
map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-left-icon'),
|
|
288
|
+
states-disabled-right-icon:
|
|
289
|
+
map.get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-right-icon'),
|
|
290
|
+
),
|
|
291
|
+
),
|
|
287
292
|
);
|
|
288
293
|
|
|
289
294
|
$button-toggle: (
|
|
290
295
|
container: (
|
|
291
|
-
background: map
|
|
296
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-container-background'),
|
|
292
297
|
),
|
|
293
298
|
item: (
|
|
294
299
|
default: (
|
|
295
|
-
background: map
|
|
296
|
-
text: map
|
|
297
|
-
icon: map
|
|
298
|
-
),
|
|
299
|
-
hover: (
|
|
300
|
-
background: map
|
|
301
|
-
text: map
|
|
302
|
-
icon: map
|
|
303
|
-
),
|
|
304
|
-
active: (
|
|
305
|
-
background: map
|
|
306
|
-
text: map
|
|
307
|
-
icon: map
|
|
308
|
-
),
|
|
309
|
-
selected: (
|
|
310
|
-
background: map
|
|
311
|
-
text: map
|
|
312
|
-
icon: map
|
|
313
|
-
),
|
|
314
|
-
selected-hover: (
|
|
315
|
-
background: map
|
|
316
|
-
text: map
|
|
317
|
-
icon: map
|
|
318
|
-
),
|
|
319
|
-
selected-active: (
|
|
320
|
-
background: map
|
|
321
|
-
text: map
|
|
322
|
-
icon: map
|
|
323
|
-
),
|
|
324
|
-
selected-disabled: (
|
|
325
|
-
background: map
|
|
326
|
-
text: map
|
|
327
|
-
icon: map
|
|
328
|
-
),
|
|
329
|
-
disabled: (
|
|
330
|
-
background: map
|
|
331
|
-
text: map
|
|
332
|
-
icon: map
|
|
333
|
-
),
|
|
334
|
-
focused: map
|
|
335
|
-
)
|
|
300
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-default-background'),
|
|
301
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-default-text'),
|
|
302
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-default-icon'),
|
|
303
|
+
),
|
|
304
|
+
states-hover: (
|
|
305
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-hover-background'),
|
|
306
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-hover-text'),
|
|
307
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-hover-icon'),
|
|
308
|
+
),
|
|
309
|
+
states-active: (
|
|
310
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-active-background'),
|
|
311
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-active-text'),
|
|
312
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-active-icon'),
|
|
313
|
+
),
|
|
314
|
+
states-selected: (
|
|
315
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-background'),
|
|
316
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-text'),
|
|
317
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-icon'),
|
|
318
|
+
),
|
|
319
|
+
states-selected-hover: (
|
|
320
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-hover-background'),
|
|
321
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-hover-text'),
|
|
322
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-hover-icon'),
|
|
323
|
+
),
|
|
324
|
+
states-selected-active: (
|
|
325
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-active-background'),
|
|
326
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-active-text'),
|
|
327
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-active-icon'),
|
|
328
|
+
),
|
|
329
|
+
states-selected-disabled: (
|
|
330
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-background'),
|
|
331
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-text'),
|
|
332
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-icon'),
|
|
333
|
+
),
|
|
334
|
+
states-disabled: (
|
|
335
|
+
background: map.get($tokens, 'button-toggle-#{$scheme}-item-states-disabled-background'),
|
|
336
|
+
text: map.get($tokens, 'button-toggle-#{$scheme}-item-states-disabled-text'),
|
|
337
|
+
icon: map.get($tokens, 'button-toggle-#{$scheme}-item-states-disabled-icon'),
|
|
338
|
+
),
|
|
339
|
+
states-focused: map.get($tokens, 'button-toggle-#{$scheme}-item-states-focused-outline'),
|
|
340
|
+
),
|
|
336
341
|
);
|
|
337
342
|
|
|
338
343
|
$card: (
|
|
339
344
|
error: (
|
|
340
|
-
vertical-line: map
|
|
341
|
-
background: map
|
|
342
|
-
shadow: map
|
|
345
|
+
vertical-line: map.get($tokens, 'card-#{$scheme}-error-vertical-line'),
|
|
346
|
+
background: map.get($tokens, 'card-#{$scheme}-error-background'),
|
|
347
|
+
shadow: map.get($tokens, 'card-#{$scheme}-error-shadow'),
|
|
343
348
|
),
|
|
344
349
|
warning: (
|
|
345
|
-
vertical-line: map
|
|
346
|
-
background: map
|
|
347
|
-
shadow: map
|
|
350
|
+
vertical-line: map.get($tokens, 'card-#{$scheme}-warning-vertical-line'),
|
|
351
|
+
background: map.get($tokens, 'card-#{$scheme}-warning-background'),
|
|
352
|
+
shadow: map.get($tokens, 'card-#{$scheme}-warning-shadow'),
|
|
348
353
|
),
|
|
349
354
|
success: (
|
|
350
|
-
vertical-line: map
|
|
351
|
-
background: map
|
|
352
|
-
shadow: map
|
|
355
|
+
vertical-line: map.get($tokens, 'card-#{$scheme}-success-vertical-line'),
|
|
356
|
+
background: map.get($tokens, 'card-#{$scheme}-success-background'),
|
|
357
|
+
shadow: map.get($tokens, 'card-#{$scheme}-success-shadow'),
|
|
353
358
|
),
|
|
354
359
|
info: (
|
|
355
|
-
vertical-line: map
|
|
356
|
-
background: map
|
|
357
|
-
shadow: map
|
|
358
|
-
)
|
|
360
|
+
vertical-line: map.get($tokens, 'card-#{$scheme}-info-vertical-line'),
|
|
361
|
+
background: map.get($tokens, 'card-#{$scheme}-info-background'),
|
|
362
|
+
shadow: map.get($tokens, 'card-#{$scheme}-info-shadow'),
|
|
363
|
+
),
|
|
359
364
|
);
|
|
360
365
|
|
|
361
366
|
$checkbox: (
|
|
362
367
|
theme: (
|
|
363
368
|
default: (
|
|
364
|
-
border: map
|
|
365
|
-
color: map
|
|
366
|
-
text: map
|
|
367
|
-
background: map
|
|
368
|
-
caption: map
|
|
369
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-default-border'),
|
|
370
|
+
color: map.get($tokens, 'checkbox-#{$scheme}-theme-default-color'),
|
|
371
|
+
text: map.get($tokens, 'checkbox-#{$scheme}-theme-default-text'),
|
|
372
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-default-background'),
|
|
373
|
+
caption: map.get($tokens, 'checkbox-#{$scheme}-theme-default-caption'),
|
|
369
374
|
),
|
|
370
375
|
hover: (
|
|
371
|
-
border: map
|
|
372
|
-
background: map
|
|
376
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-hover-border'),
|
|
377
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-hover-background'),
|
|
373
378
|
),
|
|
374
379
|
checked: (
|
|
375
|
-
border: map
|
|
376
|
-
background: map
|
|
380
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-border'),
|
|
381
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-background'),
|
|
377
382
|
),
|
|
378
383
|
checked-hover: (
|
|
379
|
-
border: map
|
|
380
|
-
background: map
|
|
384
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-hover-border'),
|
|
385
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-hover-background'),
|
|
381
386
|
),
|
|
382
387
|
focused: (
|
|
383
|
-
border: map
|
|
384
|
-
background: map
|
|
385
|
-
outline: map
|
|
388
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-focused-border'),
|
|
389
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-focused-background'),
|
|
390
|
+
outline: map.get($tokens, 'checkbox-#{$scheme}-theme-states-focused-outline'),
|
|
386
391
|
),
|
|
387
392
|
checked-focused: (
|
|
388
|
-
border: map
|
|
389
|
-
background: map
|
|
390
|
-
outline: map
|
|
393
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-border'),
|
|
394
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-background'),
|
|
395
|
+
outline: map.get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-outline'),
|
|
391
396
|
),
|
|
392
397
|
disabled: (
|
|
393
|
-
border: map
|
|
394
|
-
color: map
|
|
395
|
-
text: map
|
|
396
|
-
background: map
|
|
397
|
-
caption: map
|
|
398
|
-
)
|
|
398
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-border'),
|
|
399
|
+
color: map.get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-color'),
|
|
400
|
+
text: map.get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-text'),
|
|
401
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-background'),
|
|
402
|
+
caption: map.get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-caption'),
|
|
403
|
+
),
|
|
399
404
|
),
|
|
400
405
|
error: (
|
|
401
406
|
default: (
|
|
402
|
-
border: map
|
|
403
|
-
color: map
|
|
404
|
-
text: map
|
|
405
|
-
background: map
|
|
407
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-default-border'),
|
|
408
|
+
color: map.get($tokens, 'checkbox-#{$scheme}-error-default-color'),
|
|
409
|
+
text: map.get($tokens, 'checkbox-#{$scheme}-error-default-text'),
|
|
410
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-default-background'),
|
|
406
411
|
),
|
|
407
412
|
|
|
408
413
|
hover: (
|
|
409
|
-
border: map
|
|
410
|
-
background: map
|
|
414
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-hover-border'),
|
|
415
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-hover-background'),
|
|
411
416
|
),
|
|
412
417
|
checked: (
|
|
413
|
-
border: map
|
|
414
|
-
background: map
|
|
418
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-border'),
|
|
419
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-background'),
|
|
415
420
|
),
|
|
416
421
|
checked-hover: (
|
|
417
|
-
border: map
|
|
418
|
-
background: map
|
|
422
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-hover-border'),
|
|
423
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-hover-background'),
|
|
419
424
|
),
|
|
420
425
|
focused: (
|
|
421
|
-
border: map
|
|
422
|
-
background: map
|
|
423
|
-
outline: map
|
|
426
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-focused-border'),
|
|
427
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-focused-background'),
|
|
428
|
+
outline: map.get($tokens, 'checkbox-#{$scheme}-error-states-focused-outline'),
|
|
424
429
|
),
|
|
425
430
|
checked-focused: (
|
|
426
|
-
border: map
|
|
427
|
-
background: map
|
|
428
|
-
outline: map
|
|
431
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-border'),
|
|
432
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-background'),
|
|
433
|
+
outline: map.get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-outline'),
|
|
429
434
|
),
|
|
430
435
|
disabled: (
|
|
431
|
-
border: map
|
|
432
|
-
color: map
|
|
433
|
-
text: map
|
|
434
|
-
background: map
|
|
435
|
-
)
|
|
436
|
-
)
|
|
436
|
+
border: map.get($tokens, 'checkbox-#{$scheme}-error-states-disabled-border'),
|
|
437
|
+
color: map.get($tokens, 'checkbox-#{$scheme}-error-states-disabled-color'),
|
|
438
|
+
text: map.get($tokens, 'checkbox-#{$scheme}-error-states-disabled-text'),
|
|
439
|
+
background: map.get($tokens, 'checkbox-#{$scheme}-error-states-disabled-background'),
|
|
440
|
+
),
|
|
441
|
+
),
|
|
437
442
|
);
|
|
438
443
|
|
|
439
444
|
$code-block: (
|
|
440
445
|
filled: (
|
|
441
446
|
container: (
|
|
442
|
-
background: map
|
|
443
|
-
border: map
|
|
447
|
+
background: map.get($tokens, 'code-block-#{$scheme}-filled-container-background'),
|
|
448
|
+
border: map.get($tokens, 'code-block-#{$scheme}-filled-container-border-color'),
|
|
444
449
|
),
|
|
445
450
|
header: (
|
|
446
|
-
background: map
|
|
447
|
-
shadow: map
|
|
451
|
+
background: map.get($tokens, 'code-block-#{$scheme}-filled-header-background'),
|
|
452
|
+
shadow: map.get($tokens, 'code-block-#{$scheme}-filled-header-shadow'),
|
|
448
453
|
),
|
|
449
454
|
actionbar: (
|
|
450
|
-
fade-gradient: map
|
|
451
|
-
background: map
|
|
455
|
+
fade-gradient: map.get($tokens, 'code-block-#{$scheme}-filled-actionbar-fade-gradient'),
|
|
456
|
+
background: map.get($tokens, 'code-block-#{$scheme}-filled-actionbar-background'),
|
|
452
457
|
),
|
|
453
458
|
collapse: (
|
|
454
|
-
expanded-background: map
|
|
455
|
-
collapsed-background: map
|
|
456
|
-
button-expand-background:
|
|
457
|
-
$tokens, 'code-block-#{$scheme}-filled-collapse-button-expand-background'
|
|
458
|
-
|
|
459
|
-
)
|
|
459
|
+
expanded-background: map.get($tokens, 'code-block-#{$scheme}-filled-collapse-expanded-background'),
|
|
460
|
+
collapsed-background: map.get($tokens, 'code-block-#{$scheme}-filled-collapse-collapsed-background'),
|
|
461
|
+
button-expand-background:
|
|
462
|
+
map.get($tokens, 'code-block-#{$scheme}-filled-collapse-button-expand-background'),
|
|
463
|
+
),
|
|
460
464
|
),
|
|
461
465
|
outline: (
|
|
462
466
|
container: (
|
|
463
|
-
background: map
|
|
464
|
-
border: map
|
|
467
|
+
background: map.get($tokens, 'code-block-#{$scheme}-outline-container-background'),
|
|
468
|
+
border: map.get($tokens, 'code-block-#{$scheme}-outline-container-border-color'),
|
|
465
469
|
),
|
|
466
470
|
header: (
|
|
467
|
-
background: map
|
|
468
|
-
shadow: map
|
|
471
|
+
background: map.get($tokens, 'code-block-#{$scheme}-outline-header-background'),
|
|
472
|
+
shadow: map.get($tokens, 'code-block-#{$scheme}-outline-header-shadow'),
|
|
469
473
|
),
|
|
470
474
|
actionbar: (
|
|
471
|
-
fade-gradient: map
|
|
472
|
-
background: map
|
|
475
|
+
fade-gradient: map.get($tokens, 'code-block-#{$scheme}-outline-actionbar-fade-gradient'),
|
|
476
|
+
background: map.get($tokens, 'code-block-#{$scheme}-outline-actionbar-background'),
|
|
473
477
|
),
|
|
474
478
|
collapse: (
|
|
475
|
-
expanded-background: map
|
|
476
|
-
collapsed-background: map
|
|
477
|
-
button-expand-background:
|
|
478
|
-
$tokens, 'code-block-#{$scheme}-outline-collapse-button-expand-background'
|
|
479
|
-
|
|
480
|
-
)
|
|
479
|
+
expanded-background: map.get($tokens, 'code-block-#{$scheme}-outline-collapse-expanded-background'),
|
|
480
|
+
collapsed-background: map.get($tokens, 'code-block-#{$scheme}-outline-collapse-collapsed-background'),
|
|
481
|
+
button-expand-background:
|
|
482
|
+
map.get($tokens, 'code-block-#{$scheme}-outline-collapse-button-expand-background'),
|
|
483
|
+
),
|
|
481
484
|
),
|
|
482
485
|
|
|
483
486
|
hljs: (
|
|
484
|
-
addition-background: map
|
|
485
|
-
addition-color: map
|
|
486
|
-
attr-background: map
|
|
487
|
-
attr-color: map
|
|
488
|
-
attribute-background: map
|
|
489
|
-
attribute-color: map
|
|
490
|
-
built-in-background: map
|
|
491
|
-
built-in-color: map
|
|
492
|
-
bullet-background: map
|
|
493
|
-
bullet-color: map
|
|
494
|
-
char-escape-background: map
|
|
495
|
-
char-escape-color: map
|
|
496
|
-
class-background: map
|
|
497
|
-
class-color: map
|
|
498
|
-
code-background: map
|
|
499
|
-
code-color: map
|
|
500
|
-
comment-background: map
|
|
501
|
-
comment-color: map
|
|
502
|
-
deletion-background: map
|
|
503
|
-
deletion-color: map
|
|
504
|
-
doctag-background: map
|
|
505
|
-
doctag-color: map
|
|
506
|
-
emphasis-background: map
|
|
507
|
-
emphasis-color: map
|
|
508
|
-
formula-background: map
|
|
509
|
-
formula-color: map
|
|
510
|
-
function-background: map
|
|
511
|
-
function-color: map
|
|
512
|
-
keyword-background: map
|
|
513
|
-
keyword-color: map
|
|
514
|
-
line-numbers-color: map
|
|
515
|
-
link-background: map
|
|
516
|
-
link-color: map
|
|
517
|
-
literal-background: map
|
|
518
|
-
literal-color: map
|
|
519
|
-
meta-background: map
|
|
520
|
-
meta-color: map
|
|
521
|
-
meta-keyword-background: map
|
|
522
|
-
meta-keyword-color: map
|
|
523
|
-
meta-string-background: map
|
|
524
|
-
meta-string-color: map
|
|
525
|
-
meta-prompt-background: map
|
|
526
|
-
meta-prompt-color: map
|
|
527
|
-
name-background: map
|
|
528
|
-
name-color: map
|
|
529
|
-
number-background: map
|
|
530
|
-
number-color: map
|
|
531
|
-
operator-background: map
|
|
532
|
-
operator-color: map
|
|
533
|
-
params-background: map
|
|
534
|
-
params-color: map
|
|
535
|
-
property-background: map
|
|
536
|
-
property-color: map
|
|
537
|
-
punctuation-background: map
|
|
538
|
-
punctuation-color: map
|
|
539
|
-
quote-background: map
|
|
540
|
-
quote-color: map
|
|
541
|
-
regexp-background: map
|
|
542
|
-
regexp-color: map
|
|
543
|
-
section-background: map
|
|
544
|
-
section-color: map
|
|
545
|
-
selector-attr-background: map
|
|
546
|
-
selector-attr-color: map
|
|
547
|
-
selector-class-background: map
|
|
548
|
-
selector-class-color: map
|
|
549
|
-
selector-id-background: map
|
|
550
|
-
selector-id-color: map
|
|
551
|
-
selector-pseudo-background: map
|
|
552
|
-
selector-pseudo-color: map
|
|
553
|
-
selector-tag-background: map
|
|
554
|
-
selector-tag-color: map
|
|
555
|
-
string-background: map
|
|
556
|
-
string-color: map
|
|
557
|
-
strong-background: map
|
|
558
|
-
strong-color: map
|
|
559
|
-
subst-background: map
|
|
560
|
-
subst-color: map
|
|
561
|
-
symbol-background: map
|
|
562
|
-
symbol-color: map
|
|
563
|
-
tag-background: map
|
|
564
|
-
tag-color: map
|
|
565
|
-
template-tag-background: map
|
|
566
|
-
template-tag-color: map
|
|
567
|
-
template-variable-background: map
|
|
568
|
-
template-variable-color: map
|
|
569
|
-
title-background: map
|
|
570
|
-
title-color: map
|
|
571
|
-
title-class-background: map
|
|
572
|
-
title-class-color: map
|
|
573
|
-
title-class-inherited-background:
|
|
574
|
-
$tokens, 'code-block-#{$scheme}-hljs-title-class-inherited-background'
|
|
575
|
-
),
|
|
576
|
-
title-
|
|
577
|
-
title-function-
|
|
578
|
-
title-function-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
),
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
variable-background: map
|
|
586
|
-
variable-color: map
|
|
587
|
-
variable-
|
|
588
|
-
variable-
|
|
589
|
-
|
|
590
|
-
variable-language-color: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-language-color')r
|
|
591
|
-
)
|
|
487
|
+
addition-background: map.get($tokens, 'code-block-#{$scheme}-hljs-addition-background'),
|
|
488
|
+
addition-color: map.get($tokens, 'code-block-#{$scheme}-hljs-addition-color'),
|
|
489
|
+
attr-background: map.get($tokens, 'code-block-#{$scheme}-hljs-attr-background'),
|
|
490
|
+
attr-color: map.get($tokens, 'code-block-#{$scheme}-hljs-attr-color'),
|
|
491
|
+
attribute-background: map.get($tokens, 'code-block-#{$scheme}-hljs-attribute-background'),
|
|
492
|
+
attribute-color: map.get($tokens, 'code-block-#{$scheme}-hljs-attribute-color'),
|
|
493
|
+
built-in-background: map.get($tokens, 'code-block-#{$scheme}-hljs-built-in-background'),
|
|
494
|
+
built-in-color: map.get($tokens, 'code-block-#{$scheme}-hljs-built-in-color'),
|
|
495
|
+
bullet-background: map.get($tokens, 'code-block-#{$scheme}-hljs-bullet-background'),
|
|
496
|
+
bullet-color: map.get($tokens, 'code-block-#{$scheme}-hljs-bullet-color'),
|
|
497
|
+
char-escape-background: map.get($tokens, 'code-block-#{$scheme}-hljs-char-escape-background'),
|
|
498
|
+
char-escape-color: map.get($tokens, 'code-block-#{$scheme}-hljs-char-escape-color'),
|
|
499
|
+
class-background: map.get($tokens, 'code-block-#{$scheme}-hljs-class-background'),
|
|
500
|
+
class-color: map.get($tokens, 'code-block-#{$scheme}-hljs-class-color'),
|
|
501
|
+
code-background: map.get($tokens, 'code-block-#{$scheme}-hljs-code-background'),
|
|
502
|
+
code-color: map.get($tokens, 'code-block-#{$scheme}-hljs-code-color'),
|
|
503
|
+
comment-background: map.get($tokens, 'code-block-#{$scheme}-hljs-comment-background'),
|
|
504
|
+
comment-color: map.get($tokens, 'code-block-#{$scheme}-hljs-comment-color'),
|
|
505
|
+
deletion-background: map.get($tokens, 'code-block-#{$scheme}-hljs-deletion-background'),
|
|
506
|
+
deletion-color: map.get($tokens, 'code-block-#{$scheme}-hljs-deletion-color'),
|
|
507
|
+
doctag-background: map.get($tokens, 'code-block-#{$scheme}-hljs-doctag-background'),
|
|
508
|
+
doctag-color: map.get($tokens, 'code-block-#{$scheme}-hljs-doctag-color'),
|
|
509
|
+
emphasis-background: map.get($tokens, 'code-block-#{$scheme}-hljs-emphasis-background'),
|
|
510
|
+
emphasis-color: map.get($tokens, 'code-block-#{$scheme}-hljs-emphasis-color'),
|
|
511
|
+
formula-background: map.get($tokens, 'code-block-#{$scheme}-hljs-formula-background'),
|
|
512
|
+
formula-color: map.get($tokens, 'code-block-#{$scheme}-hljs-formula-color'),
|
|
513
|
+
function-background: map.get($tokens, 'code-block-#{$scheme}-hljs-function-background'),
|
|
514
|
+
function-color: map.get($tokens, 'code-block-#{$scheme}-hljs-function-color'),
|
|
515
|
+
keyword-background: map.get($tokens, 'code-block-#{$scheme}-hljs-keyword-background'),
|
|
516
|
+
keyword-color: map.get($tokens, 'code-block-#{$scheme}-hljs-keyword-color'),
|
|
517
|
+
line-numbers-color: map.get($tokens, 'code-block-#{$scheme}-hljs-line-numbers-color'),
|
|
518
|
+
link-background: map.get($tokens, 'code-block-#{$scheme}-hljs-link-background'),
|
|
519
|
+
link-color: map.get($tokens, 'code-block-#{$scheme}-hljs-link-color'),
|
|
520
|
+
literal-background: map.get($tokens, 'code-block-#{$scheme}-hljs-literal-background'),
|
|
521
|
+
literal-color: map.get($tokens, 'code-block-#{$scheme}-hljs-literal-color'),
|
|
522
|
+
meta-background: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-background'),
|
|
523
|
+
meta-color: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-color'),
|
|
524
|
+
meta-keyword-background: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-keyword-background'),
|
|
525
|
+
meta-keyword-color: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-keyword-color'),
|
|
526
|
+
meta-string-background: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-string-background'),
|
|
527
|
+
meta-string-color: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-string-color'),
|
|
528
|
+
meta-prompt-background: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-prompt-background'),
|
|
529
|
+
meta-prompt-color: map.get($tokens, 'code-block-#{$scheme}-hljs-meta-prompt-color'),
|
|
530
|
+
name-background: map.get($tokens, 'code-block-#{$scheme}-hljs-name-background'),
|
|
531
|
+
name-color: map.get($tokens, 'code-block-#{$scheme}-hljs-name-color'),
|
|
532
|
+
number-background: map.get($tokens, 'code-block-#{$scheme}-hljs-number-background'),
|
|
533
|
+
number-color: map.get($tokens, 'code-block-#{$scheme}-hljs-number-color'),
|
|
534
|
+
operator-background: map.get($tokens, 'code-block-#{$scheme}-hljs-operator-background'),
|
|
535
|
+
operator-color: map.get($tokens, 'code-block-#{$scheme}-hljs-operator-color'),
|
|
536
|
+
params-background: map.get($tokens, 'code-block-#{$scheme}-hljs-params-background'),
|
|
537
|
+
params-color: map.get($tokens, 'code-block-#{$scheme}-hljs-params-color'),
|
|
538
|
+
property-background: map.get($tokens, 'code-block-#{$scheme}-hljs-property-background'),
|
|
539
|
+
property-color: map.get($tokens, 'code-block-#{$scheme}-hljs-property-color'),
|
|
540
|
+
punctuation-background: map.get($tokens, 'code-block-#{$scheme}-hljs-punctuation-background'),
|
|
541
|
+
punctuation-color: map.get($tokens, 'code-block-#{$scheme}-hljs-punctuation-color'),
|
|
542
|
+
quote-background: map.get($tokens, 'code-block-#{$scheme}-hljs-quote-background'),
|
|
543
|
+
quote-color: map.get($tokens, 'code-block-#{$scheme}-hljs-quote-color'),
|
|
544
|
+
regexp-background: map.get($tokens, 'code-block-#{$scheme}-hljs-regexp-background'),
|
|
545
|
+
regexp-color: map.get($tokens, 'code-block-#{$scheme}-hljs-regexp-color'),
|
|
546
|
+
section-background: map.get($tokens, 'code-block-#{$scheme}-hljs-section-background'),
|
|
547
|
+
section-color: map.get($tokens, 'code-block-#{$scheme}-hljs-section-color'),
|
|
548
|
+
selector-attr-background: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-attr-background'),
|
|
549
|
+
selector-attr-color: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-attr-color'),
|
|
550
|
+
selector-class-background: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-class-background'),
|
|
551
|
+
selector-class-color: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-class-color'),
|
|
552
|
+
selector-id-background: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-id-background'),
|
|
553
|
+
selector-id-color: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-id-color'),
|
|
554
|
+
selector-pseudo-background: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-pseudo-background'),
|
|
555
|
+
selector-pseudo-color: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-pseudo-color'),
|
|
556
|
+
selector-tag-background: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-tag-background'),
|
|
557
|
+
selector-tag-color: map.get($tokens, 'code-block-#{$scheme}-hljs-selector-tag-color'),
|
|
558
|
+
string-background: map.get($tokens, 'code-block-#{$scheme}-hljs-string-background'),
|
|
559
|
+
string-color: map.get($tokens, 'code-block-#{$scheme}-hljs-string-color'),
|
|
560
|
+
strong-background: map.get($tokens, 'code-block-#{$scheme}-hljs-strong-background'),
|
|
561
|
+
strong-color: map.get($tokens, 'code-block-#{$scheme}-hljs-strong-color'),
|
|
562
|
+
subst-background: map.get($tokens, 'code-block-#{$scheme}-hljs-subst-background'),
|
|
563
|
+
subst-color: map.get($tokens, 'code-block-#{$scheme}-hljs-subst-color'),
|
|
564
|
+
symbol-background: map.get($tokens, 'code-block-#{$scheme}-hljs-symbol-background'),
|
|
565
|
+
symbol-color: map.get($tokens, 'code-block-#{$scheme}-hljs-symbol-color'),
|
|
566
|
+
tag-background: map.get($tokens, 'code-block-#{$scheme}-hljs-tag-background'),
|
|
567
|
+
tag-color: map.get($tokens, 'code-block-#{$scheme}-hljs-tag-color'),
|
|
568
|
+
template-tag-background: map.get($tokens, 'code-block-#{$scheme}-hljs-template-tag-background'),
|
|
569
|
+
template-tag-color: map.get($tokens, 'code-block-#{$scheme}-hljs-template-tag-color'),
|
|
570
|
+
template-variable-background: map.get($tokens, 'code-block-#{$scheme}-hljs-template-variable-background'),
|
|
571
|
+
template-variable-color: map.get($tokens, 'code-block-#{$scheme}-hljs-template-variable-color'),
|
|
572
|
+
title-background: map.get($tokens, 'code-block-#{$scheme}-hljs-title-background'),
|
|
573
|
+
title-color: map.get($tokens, 'code-block-#{$scheme}-hljs-title-color'),
|
|
574
|
+
title-class-background: map.get($tokens, 'code-block-#{$scheme}-hljs-title-class-background'),
|
|
575
|
+
title-class-color: map.get($tokens, 'code-block-#{$scheme}-hljs-title-class-color'),
|
|
576
|
+
title-class-inherited-background:
|
|
577
|
+
map.get($tokens, 'code-block-#{$scheme}-hljs-title-class-inherited-background'),
|
|
578
|
+
title-class-inherited-color: map.get($tokens, 'code-block-#{$scheme}-hljs-title-class-inherited-color'),
|
|
579
|
+
title-function-background: map.get($tokens, 'code-block-#{$scheme}-hljs-title-function-background'),
|
|
580
|
+
title-function-color: map.get($tokens, 'code-block-#{$scheme}-hljs-title-function-color'),
|
|
581
|
+
title-function-invoke-background:
|
|
582
|
+
map.get($tokens, 'code-block-#{$scheme}-hljs-title-function-invoke-background'),
|
|
583
|
+
title-function-invoke-color: map.get($tokens, 'code-block-#{$scheme}-hljs-title-function-invoke-color'),
|
|
584
|
+
type-background: map.get($tokens, 'code-block-#{$scheme}-hljs-type-background'),
|
|
585
|
+
type-color: map.get($tokens, 'code-block-#{$scheme}-hljs-type-color'),
|
|
586
|
+
variable-background: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-background'),
|
|
587
|
+
variable-color: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-color'),
|
|
588
|
+
variable-constant-background: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-constant-background'),
|
|
589
|
+
variable-constant-color: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-constant-color'),
|
|
590
|
+
variable-language-background: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-language-background'),
|
|
591
|
+
variable-language-color: map.get($tokens, 'code-block-#{$scheme}-hljs-variable-language-color') r,
|
|
592
|
+
),
|
|
592
593
|
);
|
|
593
594
|
|
|
594
595
|
$datepicker: (
|
|
595
596
|
container: (
|
|
596
|
-
background: map
|
|
597
|
-
box-shadow: map
|
|
597
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-container-background'),
|
|
598
|
+
box-shadow: map.get($tokens, 'datepicker-#{$scheme}-container-box-shadow'),
|
|
598
599
|
),
|
|
599
600
|
header: (
|
|
600
|
-
text: map
|
|
601
|
-
divider: map
|
|
601
|
+
text: map.get($tokens, 'datepicker-#{$scheme}-header-text'),
|
|
602
|
+
divider: map.get($tokens, 'datepicker-#{$scheme}-header-divider'),
|
|
602
603
|
),
|
|
603
604
|
|
|
604
605
|
cell: (
|
|
605
606
|
default: (
|
|
606
|
-
background: map
|
|
607
|
-
text: map
|
|
607
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-default-background'),
|
|
608
|
+
text: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-default-text'),
|
|
608
609
|
),
|
|
609
610
|
today: (
|
|
610
|
-
background: map
|
|
611
|
-
text: map
|
|
611
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-today-background'),
|
|
612
|
+
text: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-today-text'),
|
|
612
613
|
),
|
|
613
614
|
hover: (
|
|
614
|
-
background: map
|
|
615
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-hover-background'),
|
|
615
616
|
),
|
|
616
617
|
active: (
|
|
617
|
-
background: map
|
|
618
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-active-background'),
|
|
618
619
|
),
|
|
619
620
|
selected: (
|
|
620
|
-
background: map
|
|
621
|
-
text: map
|
|
621
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-selected-background'),
|
|
622
|
+
text: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-selected-text'),
|
|
622
623
|
),
|
|
623
624
|
selected-hover: (
|
|
624
|
-
background: map
|
|
625
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-selected-hover-background'),
|
|
625
626
|
),
|
|
626
627
|
disabled: (
|
|
627
|
-
background: map
|
|
628
|
-
)
|
|
629
|
-
)
|
|
628
|
+
background: map.get($tokens, 'datepicker-#{$scheme}-grid-cell-states-disabled-background'),
|
|
629
|
+
),
|
|
630
|
+
),
|
|
630
631
|
);
|
|
631
632
|
|
|
632
633
|
$divider: (
|
|
633
|
-
color: map
|
|
634
|
+
color: map.get($tokens, 'divider-#{$scheme}-color'),
|
|
634
635
|
);
|
|
635
636
|
|
|
636
637
|
$dl: (
|
|
637
|
-
dt: map
|
|
638
|
-
dd: map
|
|
638
|
+
dt: map.get($tokens, 'description-list-#{$scheme}-term-color'),
|
|
639
|
+
dd: map.get($tokens, 'description-list-#{$scheme}-description-color'),
|
|
640
|
+
);
|
|
641
|
+
|
|
642
|
+
$empty-state: (
|
|
643
|
+
title: map.get($tokens, 'empty-state-#{$scheme}-title'),
|
|
644
|
+
color: map.get($tokens, 'empty-state-#{$scheme}-color'),
|
|
639
645
|
);
|
|
640
646
|
|
|
641
647
|
$form-field: (
|
|
642
648
|
default: (
|
|
643
|
-
border: map
|
|
644
|
-
background: map
|
|
645
|
-
placeholder: map
|
|
646
|
-
text: map
|
|
647
|
-
),
|
|
648
|
-
focused: (
|
|
649
|
-
border: map
|
|
650
|
-
background: map
|
|
651
|
-
placeholder: map
|
|
652
|
-
text: map
|
|
653
|
-
focus-outline: map
|
|
649
|
+
border: map.get($tokens, 'form-field-#{$scheme}-default-border-color'),
|
|
650
|
+
background: map.get($tokens, 'form-field-#{$scheme}-default-background'),
|
|
651
|
+
placeholder: map.get($tokens, 'form-field-#{$scheme}-default-placeholder'),
|
|
652
|
+
text: map.get($tokens, 'form-field-#{$scheme}-default-text'),
|
|
653
|
+
),
|
|
654
|
+
states-focused: (
|
|
655
|
+
border: map.get($tokens, 'form-field-#{$scheme}-states-focused-border-color'),
|
|
656
|
+
background: map.get($tokens, 'form-field-#{$scheme}-states-focused-background'),
|
|
657
|
+
placeholder: map.get($tokens, 'form-field-#{$scheme}-states-focused-placeholder'),
|
|
658
|
+
text: map.get($tokens, 'form-field-#{$scheme}-states-focused-text'),
|
|
659
|
+
focus-outline: map.get($tokens, 'form-field-#{$scheme}-states-focused-focus-outline'),
|
|
660
|
+
),
|
|
661
|
+
states-error: (
|
|
662
|
+
border: map.get($tokens, 'form-field-#{$scheme}-states-error-border-color'),
|
|
663
|
+
background: map.get($tokens, 'form-field-#{$scheme}-states-error-background'),
|
|
664
|
+
placeholder: map.get($tokens, 'form-field-#{$scheme}-states-error-placeholder'),
|
|
665
|
+
text: map.get($tokens, 'form-field-#{$scheme}-states-error-text'),
|
|
666
|
+
focus-outline: map.get($tokens, 'form-field-#{$scheme}-states-error-focused-focus-outline'),
|
|
667
|
+
),
|
|
668
|
+
states-autofill: (
|
|
669
|
+
border: map.get($tokens, 'form-field-#{$scheme}-states-autofill-border-color'),
|
|
670
|
+
background: map.get($tokens, 'form-field-#{$scheme}-states-autofill-background'),
|
|
671
|
+
placeholder: map.get($tokens, 'form-field-#{$scheme}-states-autofill-placeholder'),
|
|
672
|
+
text: map.get($tokens, 'form-field-#{$scheme}-states-autofill-text'),
|
|
673
|
+
),
|
|
674
|
+
states-disabled: (
|
|
675
|
+
border: map.get($tokens, 'form-field-#{$scheme}-states-disabled-border-color'),
|
|
676
|
+
background: map.get($tokens, 'form-field-#{$scheme}-states-disabled-background'),
|
|
677
|
+
placeholder: map.get($tokens, 'form-field-#{$scheme}-states-disabled-placeholder'),
|
|
678
|
+
text: map.get($tokens, 'form-field-#{$scheme}-states-disabled-text'),
|
|
654
679
|
),
|
|
655
|
-
error: (
|
|
656
|
-
border: map-get($tokens, 'form-field-#{$scheme}-states-error-border-color'),
|
|
657
|
-
background: map-get($tokens, 'form-field-#{$scheme}-states-error-background'),
|
|
658
|
-
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-error-placeholder'),
|
|
659
|
-
text: map-get($tokens, 'form-field-#{$scheme}-states-error-text'),
|
|
660
|
-
focus-outline: map-get($tokens, 'form-field-#{$scheme}-states-error-focused-focus-outline')
|
|
661
|
-
),
|
|
662
|
-
autofill: (
|
|
663
|
-
border: map-get($tokens, 'form-field-#{$scheme}-states-autofill-border-color'),
|
|
664
|
-
background: map-get($tokens, 'form-field-#{$scheme}-states-autofill-background'),
|
|
665
|
-
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-autofill-placeholder'),
|
|
666
|
-
text: map-get($tokens, 'form-field-#{$scheme}-states-autofill-text')
|
|
667
|
-
),
|
|
668
|
-
disabled: (
|
|
669
|
-
border: map-get($tokens, 'form-field-#{$scheme}-states-disabled-border-color'),
|
|
670
|
-
background: map-get($tokens, 'form-field-#{$scheme}-states-disabled-background'),
|
|
671
|
-
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-disabled-placeholder'),
|
|
672
|
-
text: map-get($tokens, 'form-field-#{$scheme}-states-disabled-text')
|
|
673
|
-
)
|
|
674
680
|
);
|
|
675
681
|
|
|
676
682
|
$form-field-hint: (
|
|
677
|
-
text: map
|
|
683
|
+
text: map.get($tokens, 'form-field-hint-#{$scheme}-text'),
|
|
678
684
|
);
|
|
679
685
|
|
|
680
686
|
$hint: (
|
|
681
687
|
fill-text-on: (
|
|
682
688
|
fade-contrast: (
|
|
683
|
-
text: map
|
|
684
|
-
icon: map
|
|
689
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-on-fade-contrast-text'),
|
|
690
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-on-fade-contrast-icon'),
|
|
685
691
|
),
|
|
686
692
|
success: (
|
|
687
|
-
text: map
|
|
688
|
-
icon: map
|
|
693
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-on-success-text'),
|
|
694
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-on-success-icon'),
|
|
689
695
|
),
|
|
690
696
|
warning: (
|
|
691
|
-
text: map
|
|
692
|
-
icon: map
|
|
697
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-on-warning-text'),
|
|
698
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-on-warning-icon'),
|
|
693
699
|
),
|
|
694
700
|
error: (
|
|
695
|
-
text: map
|
|
696
|
-
icon: map
|
|
697
|
-
)
|
|
701
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-on-error-text'),
|
|
702
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-on-error-icon'),
|
|
703
|
+
),
|
|
698
704
|
),
|
|
699
705
|
fill-text-off: (
|
|
700
706
|
fade-contrast: (
|
|
701
|
-
text: map
|
|
702
|
-
icon: map
|
|
707
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-off-fade-contrast-text'),
|
|
708
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-off-fade-contrast-icon'),
|
|
703
709
|
),
|
|
704
710
|
success: (
|
|
705
|
-
text: map
|
|
706
|
-
icon: map
|
|
711
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-off-success-text'),
|
|
712
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-off-success-icon'),
|
|
707
713
|
),
|
|
708
714
|
warning: (
|
|
709
|
-
text: map
|
|
710
|
-
icon: map
|
|
715
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-off-warning-text'),
|
|
716
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-off-warning-icon'),
|
|
711
717
|
),
|
|
712
718
|
error: (
|
|
713
|
-
text: map
|
|
714
|
-
icon: map
|
|
715
|
-
)
|
|
716
|
-
)
|
|
719
|
+
text: map.get($tokens, 'hint-#{$scheme}-fill-text-off-error-text'),
|
|
720
|
+
icon: map.get($tokens, 'hint-#{$scheme}-fill-text-off-error-icon'),
|
|
721
|
+
),
|
|
722
|
+
),
|
|
717
723
|
);
|
|
718
724
|
|
|
719
725
|
$file-upload: (
|
|
720
726
|
single: (
|
|
721
727
|
default: (
|
|
722
|
-
border: map
|
|
723
|
-
background: map
|
|
724
|
-
upload-icon: map
|
|
725
|
-
left-icon: map
|
|
726
|
-
text-block: map
|
|
727
|
-
icon-button: map
|
|
728
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-single-default-container-border'),
|
|
729
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-single-default-container-background'),
|
|
730
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-single-default-upload-icon-color'),
|
|
731
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-single-default-left-icon-color'),
|
|
732
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-single-default-text-block-color'),
|
|
733
|
+
icon-button: map.get($tokens, 'file-upload-#{$scheme}-single-default-icon-button-color'),
|
|
728
734
|
),
|
|
729
735
|
states: (
|
|
730
736
|
on-drag: (
|
|
731
|
-
border: map
|
|
732
|
-
background: map
|
|
733
|
-
upload-icon: map
|
|
734
|
-
left-icon: map
|
|
735
|
-
text-block: map
|
|
737
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-single-states-on-drag-container-border'),
|
|
738
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-single-states-on-drag-container-background'),
|
|
739
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-single-states-on-drag-upload-icon-color'),
|
|
740
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-single-states-on-drag-left-icon-color'),
|
|
741
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-single-states-on-drag-text-block-color'),
|
|
736
742
|
),
|
|
737
743
|
error: (
|
|
738
|
-
border: map
|
|
739
|
-
background: map
|
|
740
|
-
left-icon: map
|
|
741
|
-
text-block: map
|
|
744
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-single-states-error-container-border'),
|
|
745
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-single-states-error-container-background'),
|
|
746
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-single-states-error-left-icon-color'),
|
|
747
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-single-states-error-text-block-color'),
|
|
742
748
|
),
|
|
743
749
|
disabled: (
|
|
744
|
-
border: map
|
|
745
|
-
background: map
|
|
746
|
-
upload-icon: map
|
|
747
|
-
left-icon: map
|
|
748
|
-
text-block: map
|
|
750
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-single-states-disabled-container-border'),
|
|
751
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-single-states-disabled-container-background'),
|
|
752
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-single-states-disabled-upload-icon-color'),
|
|
753
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-single-states-disabled-left-icon-color'),
|
|
754
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-single-states-disabled-text-block-color'),
|
|
749
755
|
),
|
|
750
|
-
focused: map
|
|
751
|
-
)
|
|
756
|
+
focused: map.get($tokens, 'file-upload-#{$scheme}-single-states-focused-focus-outline-color'),
|
|
757
|
+
),
|
|
752
758
|
),
|
|
753
759
|
multiple: (
|
|
754
760
|
default: (
|
|
755
|
-
border: map
|
|
756
|
-
background: map
|
|
757
|
-
upload-icon: map
|
|
758
|
-
left-icon: map
|
|
759
|
-
text-block: map
|
|
760
|
-
icon-button: map
|
|
761
|
-
grid-divider: map
|
|
761
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-container-border'),
|
|
762
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-container-background'),
|
|
763
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-upload-icon-color'),
|
|
764
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-left-icon-color'),
|
|
765
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-text-block-color'),
|
|
766
|
+
icon-button: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-icon-button-color'),
|
|
767
|
+
grid-divider: map.get($tokens, 'file-upload-#{$scheme}-multiple-default-grid-divider-color'),
|
|
762
768
|
),
|
|
763
769
|
states: (
|
|
764
770
|
on-drag: (
|
|
765
|
-
border: map
|
|
766
|
-
background: map
|
|
767
|
-
upload-icon: map
|
|
768
|
-
left-icon: map
|
|
769
|
-
text-block: map
|
|
770
|
-
icon-button: map
|
|
771
|
-
grid-divider: map
|
|
771
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-container-border'),
|
|
772
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-container-background'),
|
|
773
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-upload-icon-color'),
|
|
774
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-left-icon-color'),
|
|
775
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-text-block-color'),
|
|
776
|
+
icon-button: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-icon-button-color'),
|
|
777
|
+
grid-divider: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-on-drag-grid-divider-color'),
|
|
772
778
|
),
|
|
773
779
|
error: (
|
|
774
|
-
grid-cell-background:
|
|
775
|
-
$tokens, 'file-upload-#{$scheme}-multiple-states-error-grid-cell-background'
|
|
776
|
-
),
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
icon-button: map-get($tokens, 'file-upload-#{$scheme}-multiple-states-error-icon-button-color')
|
|
780
|
+
grid-cell-background:
|
|
781
|
+
map.get($tokens, 'file-upload-#{$scheme}-multiple-states-error-grid-cell-background'),
|
|
782
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-error-left-icon-color'),
|
|
783
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-error-text-block-color'),
|
|
784
|
+
icon-button: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-error-icon-button-color'),
|
|
780
785
|
),
|
|
781
786
|
disabled: (
|
|
782
|
-
border: map
|
|
783
|
-
background: map
|
|
784
|
-
|
|
785
|
-
),
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
)
|
|
792
|
-
)
|
|
787
|
+
border: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-container-border'),
|
|
788
|
+
background: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-container-background'),
|
|
789
|
+
upload-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-upload-icon-color'),
|
|
790
|
+
left-icon: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-left-icon-color'),
|
|
791
|
+
text-block: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-text-block-color'),
|
|
792
|
+
grid-divider: map.get($tokens, 'file-upload-#{$scheme}-multiple-states-disabled-grid-divider-color'),
|
|
793
|
+
),
|
|
794
|
+
),
|
|
795
|
+
),
|
|
793
796
|
);
|
|
794
797
|
|
|
795
798
|
$forms: (
|
|
796
|
-
label: map
|
|
797
|
-
legend: map
|
|
799
|
+
label: map.get($tokens, 'forms-#{$scheme}-label'),
|
|
800
|
+
legend: map.get($tokens, 'forms-#{$scheme}-legend'),
|
|
798
801
|
);
|
|
799
802
|
|
|
800
803
|
$icon: (
|
|
801
804
|
theme: (
|
|
802
|
-
color: map
|
|
805
|
+
color: map.get($tokens, 'icon-#{$scheme}-theme-color'),
|
|
803
806
|
),
|
|
804
807
|
contrast: (
|
|
805
|
-
color: map
|
|
808
|
+
color: map.get($tokens, 'icon-#{$scheme}-contrast-color'),
|
|
806
809
|
),
|
|
807
810
|
fade-contrast: (
|
|
808
|
-
color: map
|
|
811
|
+
color: map.get($tokens, 'icon-#{$scheme}-fade-contrast-color'),
|
|
809
812
|
),
|
|
810
813
|
error: (
|
|
811
|
-
color: map
|
|
814
|
+
color: map.get($tokens, 'icon-#{$scheme}-error-color'),
|
|
815
|
+
),
|
|
816
|
+
warning: (
|
|
817
|
+
color: map.get($tokens, 'icon-#{$scheme}-warning-color'),
|
|
812
818
|
),
|
|
813
819
|
success: (
|
|
814
|
-
color: map
|
|
815
|
-
)
|
|
820
|
+
color: map.get($tokens, 'icon-#{$scheme}-success-color'),
|
|
821
|
+
),
|
|
816
822
|
);
|
|
817
823
|
|
|
818
824
|
$icon-item: (
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
825
|
+
fade-off: (
|
|
826
|
+
theme: (
|
|
827
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-theme-color'),
|
|
828
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-theme-background'),
|
|
829
|
+
),
|
|
830
|
+
contrast: (
|
|
831
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-contrast-color'),
|
|
832
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-contrast-background'),
|
|
833
|
+
),
|
|
834
|
+
error: (
|
|
835
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-error-color'),
|
|
836
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-error-background'),
|
|
837
|
+
),
|
|
838
|
+
warning: (
|
|
839
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-warning-color'),
|
|
840
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-warning-background'),
|
|
841
|
+
),
|
|
842
|
+
success: (
|
|
843
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-success-color'),
|
|
844
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-off-success-background'),
|
|
845
|
+
),
|
|
830
846
|
),
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
847
|
+
fade-on: (
|
|
848
|
+
theme: (
|
|
849
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-theme-color'),
|
|
850
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-theme-background'),
|
|
851
|
+
),
|
|
852
|
+
contrast: (
|
|
853
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-contrast-color'),
|
|
854
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-contrast-background'),
|
|
855
|
+
),
|
|
856
|
+
error: (
|
|
857
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-error-color'),
|
|
858
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-error-background'),
|
|
859
|
+
),
|
|
860
|
+
warning: (
|
|
861
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-warning-color'),
|
|
862
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-warning-background'),
|
|
863
|
+
),
|
|
864
|
+
success: (
|
|
865
|
+
color: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-success-color'),
|
|
866
|
+
background: map.get($tokens, 'icon-item-#{$scheme}-filled-fade-on-success-background'),
|
|
867
|
+
),
|
|
834
868
|
),
|
|
835
|
-
success: (
|
|
836
|
-
color: map-get($tokens, 'icon-item-#{$scheme}-success-color'),
|
|
837
|
-
background: map-get($tokens, 'icon-item-#{$scheme}-success-background')
|
|
838
|
-
)
|
|
839
869
|
);
|
|
840
870
|
|
|
841
871
|
$icon-button: (
|
|
842
872
|
theme: (
|
|
843
|
-
default: map
|
|
844
|
-
state-hover: map
|
|
845
|
-
state-active: map
|
|
846
|
-
state-disabled: map
|
|
873
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-theme-default'),
|
|
874
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-theme-states-hover'),
|
|
875
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-theme-states-active'),
|
|
876
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-theme-states-disabled'),
|
|
847
877
|
),
|
|
848
878
|
contrast: (
|
|
849
|
-
default: map
|
|
850
|
-
state-hover: map
|
|
851
|
-
state-active: map
|
|
852
|
-
state-disabled: map
|
|
879
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-contrast-default'),
|
|
880
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-contrast-states-hover'),
|
|
881
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-contrast-states-active'),
|
|
882
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-contrast-states-disabled'),
|
|
853
883
|
),
|
|
854
884
|
fade-contrast: (
|
|
855
|
-
default: map
|
|
856
|
-
state-hover: map
|
|
857
|
-
state-active: map
|
|
858
|
-
state-disabled: map
|
|
885
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-fade-contrast-default'),
|
|
886
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-hover'),
|
|
887
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-active'),
|
|
888
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-disabled'),
|
|
859
889
|
),
|
|
860
890
|
error: (
|
|
861
|
-
default: map
|
|
862
|
-
state-hover: map
|
|
863
|
-
state-active: map
|
|
864
|
-
state-disabled: map
|
|
891
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-error-default'),
|
|
892
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-error-states-hover'),
|
|
893
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-error-states-active'),
|
|
894
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-error-states-disabled'),
|
|
865
895
|
),
|
|
866
896
|
success: (
|
|
867
|
-
default: map
|
|
868
|
-
state-hover: map
|
|
869
|
-
state-active: map
|
|
870
|
-
state-disabled: map
|
|
897
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-success-default'),
|
|
898
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-success-states-hover'),
|
|
899
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-success-states-active'),
|
|
900
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-success-states-disabled'),
|
|
871
901
|
),
|
|
872
902
|
warning: (
|
|
873
|
-
default: map
|
|
874
|
-
state-hover: map
|
|
875
|
-
state-active: map
|
|
876
|
-
state-disabled: map
|
|
877
|
-
)
|
|
903
|
+
default: map.get($tokens, 'icon-button-#{$scheme}-warning-default'),
|
|
904
|
+
state-hover: map.get($tokens, 'icon-button-#{$scheme}-warning-states-hover'),
|
|
905
|
+
state-active: map.get($tokens, 'icon-button-#{$scheme}-warning-states-active'),
|
|
906
|
+
state-disabled: map.get($tokens, 'icon-button-#{$scheme}-warning-states-disabled'),
|
|
907
|
+
),
|
|
878
908
|
);
|
|
879
909
|
|
|
880
|
-
|
|
881
910
|
$link: (
|
|
882
911
|
default: (
|
|
883
|
-
text: map
|
|
884
|
-
border-bottom: map
|
|
912
|
+
text: map.get($tokens, 'link-#{$scheme}-text'),
|
|
913
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-border-bottom'),
|
|
885
914
|
),
|
|
886
|
-
visited: (
|
|
887
|
-
text: map
|
|
888
|
-
border-bottom: map
|
|
915
|
+
state-visited: (
|
|
916
|
+
text: map.get($tokens, 'link-#{$scheme}-state-visited-text'),
|
|
917
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-visited-border-bottom'),
|
|
889
918
|
),
|
|
890
|
-
visited-hover: (
|
|
891
|
-
text: map
|
|
892
|
-
border-bottom: map
|
|
919
|
+
state-visited-hover: (
|
|
920
|
+
text: map.get($tokens, 'link-#{$scheme}-state-visited-hover-text'),
|
|
921
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-visited-hover-border-bottom'),
|
|
893
922
|
),
|
|
894
|
-
visited-active: (
|
|
895
|
-
text: map
|
|
896
|
-
border-bottom: map
|
|
923
|
+
state-visited-active: (
|
|
924
|
+
text: map.get($tokens, 'link-#{$scheme}-state-visited-active-text'),
|
|
925
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-visited-active-border-bottom'),
|
|
897
926
|
),
|
|
898
|
-
hover: (
|
|
899
|
-
text: map
|
|
900
|
-
border-bottom: map
|
|
927
|
+
state-hover: (
|
|
928
|
+
text: map.get($tokens, 'link-#{$scheme}-state-hover-text'),
|
|
929
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-hover-border-bottom'),
|
|
901
930
|
),
|
|
902
|
-
active: (
|
|
903
|
-
text: map
|
|
904
|
-
border-bottom: map
|
|
931
|
+
state-active: (
|
|
932
|
+
text: map.get($tokens, 'link-#{$scheme}-state-active-text'),
|
|
933
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-active-border-bottom'),
|
|
905
934
|
),
|
|
906
|
-
focused: (
|
|
907
|
-
outline: map
|
|
935
|
+
state-focused: (
|
|
936
|
+
outline: map.get($tokens, 'link-#{$scheme}-state-focused-outline'),
|
|
937
|
+
),
|
|
938
|
+
state-disabled: (
|
|
939
|
+
text: map.get($tokens, 'link-#{$scheme}-state-disabled-text'),
|
|
940
|
+
border-bottom: map.get($tokens, 'link-#{$scheme}-state-disabled-border-bottom'),
|
|
908
941
|
),
|
|
909
|
-
disabled: (
|
|
910
|
-
text: map-get($tokens, 'link-#{$scheme}-state-disabled-text'),
|
|
911
|
-
border-bottom: map-get($tokens, 'link-#{$scheme}-state-disabled-border-bottom')
|
|
912
|
-
)
|
|
913
942
|
);
|
|
914
943
|
|
|
915
944
|
$list-item: (
|
|
916
945
|
default: (
|
|
917
|
-
container-background: map
|
|
918
|
-
text: map
|
|
919
|
-
icon: map
|
|
920
|
-
icon-button: map
|
|
921
|
-
caption: map
|
|
922
|
-
),
|
|
923
|
-
hover: (
|
|
924
|
-
container-background: map
|
|
925
|
-
text: map
|
|
926
|
-
icon: map
|
|
927
|
-
icon-button: map
|
|
928
|
-
),
|
|
929
|
-
selected: (
|
|
930
|
-
container-background: map
|
|
931
|
-
text: map
|
|
932
|
-
icon: map
|
|
933
|
-
icon-button: map
|
|
934
|
-
),
|
|
935
|
-
selected-hover: (
|
|
936
|
-
container-background: map
|
|
937
|
-
text: map
|
|
938
|
-
icon: map
|
|
939
|
-
icon-button: map
|
|
940
|
-
),
|
|
941
|
-
focused: (
|
|
942
|
-
focus-outline: map
|
|
943
|
-
),
|
|
944
|
-
disabled: (
|
|
945
|
-
container-background: map
|
|
946
|
-
text: map
|
|
947
|
-
icon: map
|
|
948
|
-
icon-button: map
|
|
949
|
-
caption: map
|
|
950
|
-
)
|
|
946
|
+
container-background: map.get($tokens, 'list-#{$scheme}-default-container-background'),
|
|
947
|
+
text: map.get($tokens, 'list-#{$scheme}-default-text-color'),
|
|
948
|
+
icon: map.get($tokens, 'list-#{$scheme}-default-icon-color'),
|
|
949
|
+
icon-button: map.get($tokens, 'list-#{$scheme}-default-icon-button-color'),
|
|
950
|
+
caption: map.get($tokens, 'list-#{$scheme}-default-caption-color'),
|
|
951
|
+
),
|
|
952
|
+
states-hover: (
|
|
953
|
+
container-background: map.get($tokens, 'list-#{$scheme}-states-hover-container-background'),
|
|
954
|
+
text: map.get($tokens, 'list-#{$scheme}-states-hover-text-color'),
|
|
955
|
+
icon: map.get($tokens, 'list-#{$scheme}-states-hover-icon-color'),
|
|
956
|
+
icon-button: map.get($tokens, 'list-#{$scheme}-states-hover-icon-button-color'),
|
|
957
|
+
),
|
|
958
|
+
states-selected: (
|
|
959
|
+
container-background: map.get($tokens, 'list-#{$scheme}-states-selected-container-background'),
|
|
960
|
+
text: map.get($tokens, 'list-#{$scheme}-states-selected-text-color'),
|
|
961
|
+
icon: map.get($tokens, 'list-#{$scheme}-states-selected-icon-color'),
|
|
962
|
+
icon-button: map.get($tokens, 'list-#{$scheme}-states-selected-icon-button-color'),
|
|
963
|
+
),
|
|
964
|
+
states-selected-hover: (
|
|
965
|
+
container-background: map.get($tokens, 'list-#{$scheme}-states-selected-hover-container-background'),
|
|
966
|
+
text: map.get($tokens, 'list-#{$scheme}-states-selected-hover-text-color'),
|
|
967
|
+
icon: map.get($tokens, 'list-#{$scheme}-states-selected-hover-icon-color'),
|
|
968
|
+
icon-button: map.get($tokens, 'list-#{$scheme}-states-selected-hover-icon-button-color'),
|
|
969
|
+
),
|
|
970
|
+
states-focused: (
|
|
971
|
+
focus-outline: map.get($tokens, 'list-#{$scheme}-states-focused-focus-outline-color'),
|
|
972
|
+
),
|
|
973
|
+
states-disabled: (
|
|
974
|
+
container-background: map.get($tokens, 'list-#{$scheme}-states-disabled-container-background'),
|
|
975
|
+
text: map.get($tokens, 'list-#{$scheme}-states-disabled-text-color'),
|
|
976
|
+
icon: map.get($tokens, 'list-#{$scheme}-states-disabled-icon-color'),
|
|
977
|
+
icon-button: map.get($tokens, 'list-#{$scheme}-states-disabled-icon-button-color'),
|
|
978
|
+
caption: map.get($tokens, 'list-#{$scheme}-states-disabled-caption-color'),
|
|
979
|
+
),
|
|
951
980
|
);
|
|
952
981
|
|
|
953
982
|
$loader-overlay: (
|
|
954
|
-
filled:(
|
|
955
|
-
background: map
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
983
|
+
filled: (
|
|
984
|
+
background: map.get($tokens, 'loader-overlay-#{$scheme}-filled-overlay-background'),
|
|
985
|
+
text: map.get($tokens, 'loader-overlay-#{$scheme}-filled-text-color'),
|
|
986
|
+
caption: map.get($tokens, 'loader-overlay-#{$scheme}-filled-caption-color'),
|
|
987
|
+
),
|
|
988
|
+
transparent: (
|
|
989
|
+
background: map.get($tokens, 'loader-overlay-#{$scheme}-transparent-overlay-background'),
|
|
990
|
+
text: map.get($tokens, 'loader-overlay-#{$scheme}-transparent-text-color'),
|
|
991
|
+
caption: map.get($tokens, 'loader-overlay-#{$scheme}-transparent-caption-color'),
|
|
959
992
|
),
|
|
960
|
-
transparent:(
|
|
961
|
-
background: map-get($tokens, 'loader-overlay-#{$scheme}-transparent-overlay-background'),
|
|
962
|
-
|
|
963
|
-
text: map-get($tokens, 'loader-overlay-#{$scheme}-transparent-text-color'),
|
|
964
|
-
caption: map-get($tokens, 'loader-overlay-#{$scheme}-transparent-caption-color'),
|
|
965
|
-
)
|
|
966
993
|
);
|
|
967
994
|
|
|
968
995
|
$modal: (
|
|
969
|
-
container-background: map
|
|
970
|
-
container-box-shadow: map
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
overlay: map-get($tokens, 'modal-#{$scheme}-overlay-background')
|
|
996
|
+
container-background: map.get($tokens, 'modal-#{$scheme}-container-background'),
|
|
997
|
+
container-box-shadow: map.get($tokens, 'modal-#{$scheme}-container-box-shadow'),
|
|
998
|
+
close-button: map.get($tokens, 'modal-#{$scheme}-close-button-color'),
|
|
999
|
+
header: map.get($tokens, 'modal-#{$scheme}-header-text-color'),
|
|
1000
|
+
content: map.get($tokens, 'modal-#{$scheme}-content-text-color'),
|
|
1001
|
+
overlay: map.get($tokens, 'modal-#{$scheme}-overlay-background'),
|
|
977
1002
|
);
|
|
978
1003
|
|
|
979
1004
|
$markdown: (
|
|
980
|
-
h1-color: map
|
|
981
|
-
h2-color: map
|
|
982
|
-
h3-color: map
|
|
983
|
-
h4-color: map
|
|
984
|
-
h5-color: map
|
|
985
|
-
h6-color: map
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
blockquote-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
link-
|
|
1001
|
-
link-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
link-state-active-text: map-get($tokens, 'markdown-link-#{$scheme}-state-active'),
|
|
1010
|
-
|
|
1011
|
-
link-state-focused-outline: map-get($tokens, 'markdown-link-#{$scheme}-state-focused-outline'),
|
|
1012
|
-
|
|
1013
|
-
image-caption-text: map-get($tokens, 'markdown-image-#{$scheme}-caption-text'),
|
|
1014
|
-
|
|
1015
|
-
hr-color: map-get($tokens, 'markdown-hr-#{$scheme}-color'),
|
|
1016
|
-
|
|
1017
|
-
table-header: map-get($tokens, 'markdown-table-#{$scheme}-header'),
|
|
1018
|
-
table-body: map-get($tokens, 'markdown-table-#{$scheme}-body'),
|
|
1019
|
-
table-border: map-get($tokens, 'markdown-table-#{$scheme}-border')
|
|
1005
|
+
h1-color: map.get($tokens, 'markdown-h1-#{$scheme}-color'),
|
|
1006
|
+
h2-color: map.get($tokens, 'markdown-h2-#{$scheme}-color'),
|
|
1007
|
+
h3-color: map.get($tokens, 'markdown-h3-#{$scheme}-color'),
|
|
1008
|
+
h4-color: map.get($tokens, 'markdown-h4-#{$scheme}-color'),
|
|
1009
|
+
h5-color: map.get($tokens, 'markdown-h5-#{$scheme}-color'),
|
|
1010
|
+
h6-color: map.get($tokens, 'markdown-h6-#{$scheme}-color'),
|
|
1011
|
+
p-color: map.get($tokens, 'markdown-p-#{$scheme}-color'),
|
|
1012
|
+
list-color: map.get($tokens, 'markdown-list-#{$scheme}-color'),
|
|
1013
|
+
blockquote-text: map.get($tokens, 'markdown-blockquote-#{$scheme}-text'),
|
|
1014
|
+
blockquote-line: map.get($tokens, 'markdown-blockquote-#{$scheme}-line'),
|
|
1015
|
+
blockquote-background: map.get($tokens, 'markdown-blockquote-#{$scheme}-background'),
|
|
1016
|
+
blockquote-border: map.get($tokens, 'markdown-blockquote-#{$scheme}-border'),
|
|
1017
|
+
code-text: map.get($tokens, 'markdown-code-#{$scheme}-text'),
|
|
1018
|
+
code-background: map.get($tokens, 'markdown-code-#{$scheme}-background'),
|
|
1019
|
+
code-border: map.get($tokens, 'markdown-code-#{$scheme}-border'),
|
|
1020
|
+
link-text: map.get($tokens, 'markdown-link-#{$scheme}-text'),
|
|
1021
|
+
link-border-bottom: map.get($tokens, 'markdown-link-#{$scheme}-border-bottom'),
|
|
1022
|
+
link-state-visited-text: map.get($tokens, 'markdown-link-#{$scheme}-state-visited-text'),
|
|
1023
|
+
link-state-visited-border-bottom: map.get($tokens, 'markdown-link-#{$scheme}-state-visited-border-bottom'),
|
|
1024
|
+
link-state-hover-text: map.get($tokens, 'markdown-link-#{$scheme}-state-hover-text'),
|
|
1025
|
+
link-state-hover-border-bottom: map.get($tokens, 'markdown-link-#{$scheme}-state-hover-border-bottom'),
|
|
1026
|
+
link-state-active-text: map.get($tokens, 'markdown-link-#{$scheme}-state-active'),
|
|
1027
|
+
link-state-focused-outline: map.get($tokens, 'markdown-link-#{$scheme}-state-focused-outline'),
|
|
1028
|
+
image-caption-text: map.get($tokens, 'markdown-image-#{$scheme}-caption-text'),
|
|
1029
|
+
hr-color: map.get($tokens, 'markdown-hr-#{$scheme}-color'),
|
|
1030
|
+
table-header: map.get($tokens, 'markdown-table-#{$scheme}-header'),
|
|
1031
|
+
table-body: map.get($tokens, 'markdown-table-#{$scheme}-body'),
|
|
1032
|
+
table-border: map.get($tokens, 'markdown-table-#{$scheme}-border'),
|
|
1020
1033
|
);
|
|
1021
1034
|
|
|
1022
1035
|
$navbar: (
|
|
1023
|
-
background: map
|
|
1024
|
-
border: map
|
|
1025
|
-
|
|
1036
|
+
background: map.get($tokens, 'navbar-#{$scheme}-background'),
|
|
1037
|
+
border: map.get($tokens, 'navbar-#{$scheme}-border'),
|
|
1026
1038
|
item: (
|
|
1027
1039
|
default: (
|
|
1028
|
-
background: map
|
|
1029
|
-
text: map
|
|
1030
|
-
icon-left: map
|
|
1031
|
-
icon-right: map
|
|
1040
|
+
background: map.get($tokens, 'navbar-item-#{$scheme}-default-content-background'),
|
|
1041
|
+
text: map.get($tokens, 'navbar-item-#{$scheme}-default-content-text'),
|
|
1042
|
+
icon-left: map.get($tokens, 'navbar-item-#{$scheme}-default-content-icon-left'),
|
|
1043
|
+
icon-right: map.get($tokens, 'navbar-item-#{$scheme}-default-content-icon-right'),
|
|
1032
1044
|
),
|
|
1033
1045
|
hover: (
|
|
1034
|
-
background: map
|
|
1035
|
-
text: map
|
|
1036
|
-
icon-left: map
|
|
1037
|
-
icon-right: map
|
|
1046
|
+
background: map.get($tokens, 'navbar-item-#{$scheme}-states-hover-content-background'),
|
|
1047
|
+
text: map.get($tokens, 'navbar-item-#{$scheme}-states-hover-content-text'),
|
|
1048
|
+
icon-left: map.get($tokens, 'navbar-item-#{$scheme}-states-hover-content-icon-left'),
|
|
1049
|
+
icon-right: map.get($tokens, 'navbar-item-#{$scheme}-states-hover-content-icon-right'),
|
|
1038
1050
|
),
|
|
1039
1051
|
selected: (
|
|
1040
|
-
background: map
|
|
1041
|
-
text: map
|
|
1042
|
-
icon-left: map
|
|
1043
|
-
icon-right: map
|
|
1052
|
+
background: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-content-background'),
|
|
1053
|
+
text: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-content-text'),
|
|
1054
|
+
icon-left: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-content-icon-left'),
|
|
1055
|
+
icon-right: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-content-icon-right'),
|
|
1044
1056
|
),
|
|
1045
1057
|
selected-hover: (
|
|
1046
|
-
background: map
|
|
1047
|
-
text: map
|
|
1048
|
-
icon-left: map
|
|
1049
|
-
icon-right: map
|
|
1058
|
+
background: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-background'),
|
|
1059
|
+
text: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-text'),
|
|
1060
|
+
icon-left: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-icon-left'),
|
|
1061
|
+
icon-right: map.get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-icon-right'),
|
|
1050
1062
|
),
|
|
1051
1063
|
disabled: (
|
|
1052
|
-
background: map
|
|
1053
|
-
text: map
|
|
1054
|
-
icon-left: map
|
|
1055
|
-
icon-right: map
|
|
1056
|
-
)
|
|
1057
|
-
)
|
|
1064
|
+
background: map.get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-background'),
|
|
1065
|
+
text: map.get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-text'),
|
|
1066
|
+
icon-left: map.get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-icon-left'),
|
|
1067
|
+
icon-right: map.get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-icon-right'),
|
|
1068
|
+
),
|
|
1069
|
+
),
|
|
1058
1070
|
);
|
|
1059
1071
|
|
|
1060
1072
|
$popover: (
|
|
1061
1073
|
container: (
|
|
1062
|
-
background: map
|
|
1063
|
-
box-shadow: map
|
|
1074
|
+
background: map.get($tokens, 'popover-#{$scheme}-container-background'),
|
|
1075
|
+
box-shadow: map.get($tokens, 'popover-#{$scheme}-container-box-shadow'),
|
|
1064
1076
|
),
|
|
1065
1077
|
header: (
|
|
1066
|
-
text: map
|
|
1067
|
-
scroll-shadow: map
|
|
1078
|
+
text: map.get($tokens, 'popover-#{$scheme}-header-text-color'),
|
|
1079
|
+
scroll-shadow: map.get($tokens, 'popover-#{$scheme}-header-scroll-shadow'),
|
|
1068
1080
|
),
|
|
1069
1081
|
content: (
|
|
1070
|
-
text: map
|
|
1082
|
+
text: map.get($tokens, 'popover-#{$scheme}-content-text-color'),
|
|
1071
1083
|
),
|
|
1072
1084
|
footer: (
|
|
1073
|
-
scroll-shadow: map
|
|
1074
|
-
)
|
|
1085
|
+
scroll-shadow: map.get($tokens, 'popover-#{$scheme}-footer-scroll-shadow'),
|
|
1086
|
+
),
|
|
1075
1087
|
);
|
|
1076
1088
|
|
|
1077
1089
|
$progress-bar: (
|
|
1078
1090
|
bar: (
|
|
1079
|
-
background: map
|
|
1080
|
-
foreground: map
|
|
1091
|
+
background: map.get($tokens, 'progress-bar-#{$scheme}-bar-background'),
|
|
1092
|
+
foreground: map.get($tokens, 'progress-bar-#{$scheme}-bar-foreground'),
|
|
1081
1093
|
),
|
|
1082
|
-
text: map
|
|
1083
|
-
caption: map
|
|
1094
|
+
text: map.get($tokens, 'progress-bar-#{$scheme}-text-color'),
|
|
1095
|
+
caption: map.get($tokens, 'progress-bar-#{$scheme}-caption-color'),
|
|
1084
1096
|
);
|
|
1085
1097
|
|
|
1086
1098
|
$progress-spinner: (
|
|
1087
|
-
circle: map
|
|
1088
|
-
text: map
|
|
1089
|
-
caption: map
|
|
1099
|
+
circle: map.get($tokens, 'progress-spinner-#{$scheme}-circle-background'),
|
|
1100
|
+
text: map.get($tokens, 'progress-spinner-#{$scheme}-text-color'),
|
|
1101
|
+
caption: map.get($tokens, 'progress-spinner-#{$scheme}-caption-color'),
|
|
1090
1102
|
);
|
|
1091
1103
|
|
|
1092
1104
|
$radio: (
|
|
1093
1105
|
theme: (
|
|
1094
1106
|
default: (
|
|
1095
|
-
outer-circle-border: map
|
|
1096
|
-
outer-circle-background: map
|
|
1097
|
-
inner-circle-background: map
|
|
1098
|
-
caption: map
|
|
1099
|
-
),
|
|
1100
|
-
|
|
1101
|
-
hover: (
|
|
1102
|
-
outer-circle-border: map
|
|
1103
|
-
outer-circle-background: map
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
),
|
|
1115
|
-
|
|
1116
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
outer-circle-background:
|
|
1124
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
outer-circle-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
outer-circle-
|
|
1144
|
-
$tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
checked-focused: (
|
|
1154
|
-
outer-circle-border: map-get(
|
|
1155
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-border'
|
|
1156
|
-
),
|
|
1157
|
-
outer-circle-background: map-get(
|
|
1158
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-background'
|
|
1159
|
-
),
|
|
1160
|
-
inner-circle-background: map-get(
|
|
1161
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-inner-circle-background'
|
|
1162
|
-
),
|
|
1163
|
-
outer-circle-shadow: map-get(
|
|
1164
|
-
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-shadow'
|
|
1165
|
-
)
|
|
1107
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-default-outer-circle-border'),
|
|
1108
|
+
outer-circle-background: map.get($tokens, 'radio-#{$scheme}-theme-default-outer-circle-background'),
|
|
1109
|
+
inner-circle-background: map.get($tokens, 'radio-#{$scheme}-theme-default-inner-circle-background'),
|
|
1110
|
+
caption: map.get($tokens, 'radio-#{$scheme}-theme-default-caption'),
|
|
1111
|
+
),
|
|
1112
|
+
|
|
1113
|
+
states-hover: (
|
|
1114
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-states-hover-outer-circle-border'),
|
|
1115
|
+
outer-circle-background: map.get($tokens, 'radio-#{$scheme}-theme-states-hover-outer-circle-background'),
|
|
1116
|
+
inner-circle-background: map.get($tokens, 'radio-#{$scheme}-theme-states-hover-inner-circle-background'),
|
|
1117
|
+
),
|
|
1118
|
+
states-checked: (
|
|
1119
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-states-checked-outer-circle-border'),
|
|
1120
|
+
outer-circle-background:
|
|
1121
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-outer-circle-background'),
|
|
1122
|
+
inner-circle-background:
|
|
1123
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-inner-circle-background'),
|
|
1124
|
+
),
|
|
1125
|
+
states-checked-hover: (
|
|
1126
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-states-checked-hover-outer-circle-border'),
|
|
1127
|
+
outer-circle-background:
|
|
1128
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-hover-outer-circle-background'),
|
|
1129
|
+
inner-circle-background:
|
|
1130
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-hover-inner-circle-background'),
|
|
1131
|
+
),
|
|
1132
|
+
states-checked-disabled: (
|
|
1133
|
+
outer-circle-border:
|
|
1134
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-disabled-outer-circle-border'),
|
|
1135
|
+
outer-circle-background:
|
|
1136
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-disabled-outer-circle-background'),
|
|
1137
|
+
inner-circle-background:
|
|
1138
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-disabled-inner-circle-background'),
|
|
1139
|
+
),
|
|
1140
|
+
states-focused: (
|
|
1141
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-border'),
|
|
1142
|
+
outer-circle-background:
|
|
1143
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-background'),
|
|
1144
|
+
inner-circle-background:
|
|
1145
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-focused-inner-circle-background'),
|
|
1146
|
+
outer-circle-shadow: map.get($tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-shadow'),
|
|
1147
|
+
),
|
|
1148
|
+
states-checked-focused: (
|
|
1149
|
+
outer-circle-border:
|
|
1150
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-border'),
|
|
1151
|
+
outer-circle-background:
|
|
1152
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-background'),
|
|
1153
|
+
inner-circle-background:
|
|
1154
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-focused-inner-circle-background'),
|
|
1155
|
+
outer-circle-shadow:
|
|
1156
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-shadow'),
|
|
1157
|
+
),
|
|
1158
|
+
states-disabled: (
|
|
1159
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-border'),
|
|
1160
|
+
outer-circle-background:
|
|
1161
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-background'),
|
|
1162
|
+
inner-circle-background:
|
|
1163
|
+
map.get($tokens, 'radio-#{$scheme}-theme-states-disabled-inner-circle-background'),
|
|
1164
|
+
caption: map.get($tokens, 'radio-#{$scheme}-theme-states-disabled-caption'),
|
|
1166
1165
|
),
|
|
1167
|
-
disabled: (
|
|
1168
|
-
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-border'),
|
|
1169
|
-
outer-circle-background: map-get(
|
|
1170
|
-
$tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-background'
|
|
1171
|
-
),
|
|
1172
|
-
inner-circle-background: map-get(
|
|
1173
|
-
$tokens, 'radio-#{$scheme}-theme-states-disabled-inner-circle-background'
|
|
1174
|
-
),
|
|
1175
|
-
caption: map-get($tokens, 'radio-#{$scheme}-theme-states-disabled-caption'),
|
|
1176
|
-
)
|
|
1177
1166
|
),
|
|
1178
1167
|
error: (
|
|
1179
1168
|
default: (
|
|
1180
|
-
outer-circle-border: map
|
|
1181
|
-
outer-circle-background: map
|
|
1182
|
-
inner-circle-background: map
|
|
1183
|
-
),
|
|
1184
|
-
|
|
1185
|
-
hover: (
|
|
1186
|
-
outer-circle-border: map
|
|
1187
|
-
outer-circle-background: map
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
),
|
|
1199
|
-
|
|
1200
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
outer-circle-background:
|
|
1208
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
outer-circle-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
outer-circle-
|
|
1228
|
-
$tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
),
|
|
1237
|
-
checked-focused: (
|
|
1238
|
-
outer-circle-border: map-get(
|
|
1239
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-border'
|
|
1240
|
-
),
|
|
1241
|
-
outer-circle-background: map-get(
|
|
1242
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-background'
|
|
1243
|
-
),
|
|
1244
|
-
inner-circle-background: map-get(
|
|
1245
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-focused-inner-circle-background'
|
|
1246
|
-
),
|
|
1247
|
-
outer-circle-shadow: map-get(
|
|
1248
|
-
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-shadow'
|
|
1249
|
-
)
|
|
1169
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-default-outer-circle-border'),
|
|
1170
|
+
outer-circle-background: map.get($tokens, 'radio-#{$scheme}-error-default-outer-circle-background'),
|
|
1171
|
+
inner-circle-background: map.get($tokens, 'radio-#{$scheme}-error-default-inner-circle-background'),
|
|
1172
|
+
),
|
|
1173
|
+
|
|
1174
|
+
states-hover: (
|
|
1175
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-states-hover-outer-circle-border'),
|
|
1176
|
+
outer-circle-background: map.get($tokens, 'radio-#{$scheme}-error-states-hover-outer-circle-background'),
|
|
1177
|
+
inner-circle-background: map.get($tokens, 'radio-#{$scheme}-error-states-hover-inner-circle-background'),
|
|
1178
|
+
),
|
|
1179
|
+
states-checked: (
|
|
1180
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-states-checked-outer-circle-border'),
|
|
1181
|
+
outer-circle-background:
|
|
1182
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-outer-circle-background'),
|
|
1183
|
+
inner-circle-background:
|
|
1184
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-inner-circle-background'),
|
|
1185
|
+
),
|
|
1186
|
+
states-checked-hover: (
|
|
1187
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-states-checked-hover-outer-circle-border'),
|
|
1188
|
+
outer-circle-background:
|
|
1189
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-hover-outer-circle-background'),
|
|
1190
|
+
inner-circle-background:
|
|
1191
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-hover-inner-circle-background'),
|
|
1192
|
+
),
|
|
1193
|
+
states-checked-disabled: (
|
|
1194
|
+
outer-circle-border:
|
|
1195
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-disabled-outer-circle-border'),
|
|
1196
|
+
outer-circle-background:
|
|
1197
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-disabled-outer-circle-background'),
|
|
1198
|
+
inner-circle-background:
|
|
1199
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-disabled-inner-circle-background'),
|
|
1200
|
+
),
|
|
1201
|
+
states-focused: (
|
|
1202
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-border'),
|
|
1203
|
+
outer-circle-background:
|
|
1204
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-background'),
|
|
1205
|
+
inner-circle-background:
|
|
1206
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-focused-inner-circle-background'),
|
|
1207
|
+
outer-circle-shadow: map.get($tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-shadow'),
|
|
1208
|
+
),
|
|
1209
|
+
states-checked-focused: (
|
|
1210
|
+
outer-circle-border:
|
|
1211
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-border'),
|
|
1212
|
+
outer-circle-background:
|
|
1213
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-background'),
|
|
1214
|
+
inner-circle-background:
|
|
1215
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-focused-inner-circle-background'),
|
|
1216
|
+
outer-circle-shadow:
|
|
1217
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-shadow'),
|
|
1218
|
+
),
|
|
1219
|
+
states-disabled: (
|
|
1220
|
+
outer-circle-border: map.get($tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-border'),
|
|
1221
|
+
outer-circle-background:
|
|
1222
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-background'),
|
|
1223
|
+
inner-circle-background:
|
|
1224
|
+
map.get($tokens, 'radio-#{$scheme}-error-states-disabled-inner-circle-background'),
|
|
1250
1225
|
),
|
|
1251
|
-
|
|
1252
|
-
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-border'),
|
|
1253
|
-
outer-circle-background: map-get(
|
|
1254
|
-
$tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-background'
|
|
1255
|
-
),
|
|
1256
|
-
inner-circle-background: map-get(
|
|
1257
|
-
$tokens, 'radio-#{$scheme}-error-states-disabled-inner-circle-background'
|
|
1258
|
-
)
|
|
1259
|
-
)
|
|
1260
|
-
)
|
|
1226
|
+
),
|
|
1261
1227
|
);
|
|
1262
1228
|
|
|
1263
1229
|
$risk-level: (
|
|
1264
1230
|
filled: (
|
|
1265
1231
|
fade-off: (
|
|
1266
1232
|
success: (
|
|
1267
|
-
color: map
|
|
1268
|
-
background: map
|
|
1233
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-success-text'),
|
|
1234
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-success-background'),
|
|
1269
1235
|
),
|
|
1270
1236
|
warning: (
|
|
1271
|
-
color: map
|
|
1272
|
-
background: map
|
|
1237
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-warning-text'),
|
|
1238
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-warning-background'),
|
|
1273
1239
|
),
|
|
1274
1240
|
error: (
|
|
1275
|
-
color: map
|
|
1276
|
-
background: map
|
|
1277
|
-
)
|
|
1241
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-error-text'),
|
|
1242
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-off-error-background'),
|
|
1243
|
+
),
|
|
1278
1244
|
),
|
|
1279
1245
|
fade-on: (
|
|
1280
1246
|
success: (
|
|
1281
|
-
color: map
|
|
1282
|
-
background: map
|
|
1247
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-success-text'),
|
|
1248
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-success-background'),
|
|
1283
1249
|
),
|
|
1284
1250
|
warning: (
|
|
1285
|
-
color: map
|
|
1286
|
-
background: map
|
|
1251
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-warning-text'),
|
|
1252
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-warning-background'),
|
|
1287
1253
|
),
|
|
1288
1254
|
error: (
|
|
1289
|
-
color: map
|
|
1290
|
-
background: map
|
|
1255
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-error-text'),
|
|
1256
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-error-background'),
|
|
1291
1257
|
),
|
|
1292
1258
|
contrast: (
|
|
1293
|
-
color: map
|
|
1294
|
-
background: map
|
|
1295
|
-
)
|
|
1296
|
-
)
|
|
1259
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-contrast-text'),
|
|
1260
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-filled-fade-on-contrast-background'),
|
|
1261
|
+
),
|
|
1262
|
+
),
|
|
1297
1263
|
),
|
|
1298
1264
|
outline: (
|
|
1299
1265
|
fade-on: (
|
|
1300
1266
|
success: (
|
|
1301
|
-
color: map
|
|
1302
|
-
background: map
|
|
1303
|
-
border: map
|
|
1267
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-success-text'),
|
|
1268
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-success-background'),
|
|
1269
|
+
border: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-success-border'),
|
|
1304
1270
|
),
|
|
1305
1271
|
warning: (
|
|
1306
|
-
color: map
|
|
1307
|
-
background: map
|
|
1308
|
-
border: map
|
|
1272
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-warning-text'),
|
|
1273
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-warning-background'),
|
|
1274
|
+
border: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-warning-border'),
|
|
1309
1275
|
),
|
|
1310
1276
|
error: (
|
|
1311
|
-
color: map
|
|
1312
|
-
background: map
|
|
1313
|
-
border: map
|
|
1277
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-error-text'),
|
|
1278
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-error-background'),
|
|
1279
|
+
border: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-error-border'),
|
|
1314
1280
|
),
|
|
1315
1281
|
contrast: (
|
|
1316
|
-
color: map
|
|
1317
|
-
background: map
|
|
1318
|
-
border: map
|
|
1319
|
-
)
|
|
1320
|
-
)
|
|
1321
|
-
)
|
|
1282
|
+
color: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-contrast-text'),
|
|
1283
|
+
background: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-contrast-background'),
|
|
1284
|
+
border: map.get($tokens, 'risk-level-#{$scheme}-outline-fade-on-contrast-border'),
|
|
1285
|
+
),
|
|
1286
|
+
),
|
|
1287
|
+
),
|
|
1322
1288
|
);
|
|
1323
1289
|
|
|
1324
1290
|
$select-panel: (
|
|
1325
|
-
background: map
|
|
1326
|
-
shadow: map
|
|
1291
|
+
background: map.get($tokens, 'select-panel-#{$scheme}-dropdown-background'),
|
|
1292
|
+
shadow: map.get($tokens, 'select-panel-#{$scheme}-dropdown-shadow'),
|
|
1327
1293
|
);
|
|
1328
1294
|
|
|
1329
1295
|
$sidepanel: (
|
|
1330
|
-
box-shadow: map
|
|
1331
|
-
background: map
|
|
1332
|
-
header-text: map
|
|
1333
|
-
content-text: map
|
|
1334
|
-
|
|
1335
|
-
overlay: map-get($tokens, 'sidepanel-#{$scheme}-overlay-background')
|
|
1296
|
+
box-shadow: map.get($tokens, 'sidepanel-#{$scheme}-container-box-shadow'),
|
|
1297
|
+
background: map.get($tokens, 'sidepanel-#{$scheme}-container-background'),
|
|
1298
|
+
header-text: map.get($tokens, 'sidepanel-#{$scheme}-header-text-color'),
|
|
1299
|
+
content-text: map.get($tokens, 'sidepanel-#{$scheme}-content-text-color'),
|
|
1300
|
+
overlay: map.get($tokens, 'sidepanel-#{$scheme}-overlay-background'),
|
|
1336
1301
|
);
|
|
1337
1302
|
|
|
1338
1303
|
$tab-item: (
|
|
1339
1304
|
filled: (
|
|
1340
1305
|
on-background: (
|
|
1341
1306
|
default: (
|
|
1342
|
-
background: map
|
|
1343
|
-
text: map
|
|
1344
|
-
icon: map
|
|
1345
|
-
),
|
|
1346
|
-
hover: (
|
|
1347
|
-
background:
|
|
1348
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-hover-background'
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1307
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-default-background'),
|
|
1308
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-default-text-color'),
|
|
1309
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-default-icon-color'),
|
|
1310
|
+
),
|
|
1311
|
+
states-hover: (
|
|
1312
|
+
background:
|
|
1313
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-hover-background'),
|
|
1314
|
+
),
|
|
1315
|
+
states-focused: (
|
|
1316
|
+
border-color:
|
|
1317
|
+
map.get(
|
|
1318
|
+
$tokens,
|
|
1319
|
+
'tabs-#{$scheme}-tab-item-filled-on-background-states-focused-focus-outline-color'
|
|
1320
|
+
),
|
|
1321
|
+
),
|
|
1322
|
+
states-selected: (
|
|
1323
|
+
background:
|
|
1324
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-background'),
|
|
1325
|
+
),
|
|
1326
|
+
states-selected-hover: (
|
|
1327
|
+
background:
|
|
1328
|
+
map.get(
|
|
1329
|
+
$tokens,
|
|
1330
|
+
'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-hover-background'
|
|
1331
|
+
),
|
|
1332
|
+
),
|
|
1333
|
+
states-selected-disabled: (
|
|
1334
|
+
background:
|
|
1335
|
+
map.get(
|
|
1336
|
+
$tokens,
|
|
1337
|
+
'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-background'
|
|
1338
|
+
),
|
|
1339
|
+
text:
|
|
1340
|
+
map.get(
|
|
1341
|
+
$tokens,
|
|
1342
|
+
'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-text-color'
|
|
1343
|
+
),
|
|
1344
|
+
icon:
|
|
1345
|
+
map.get(
|
|
1346
|
+
$tokens,
|
|
1347
|
+
'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-icon-color'
|
|
1348
|
+
),
|
|
1349
|
+
),
|
|
1350
|
+
states-disabled: (
|
|
1351
|
+
background:
|
|
1352
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-background'),
|
|
1353
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-text-color'),
|
|
1354
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-icon-color'),
|
|
1355
1355
|
),
|
|
1356
|
-
selected: (
|
|
1357
|
-
background: map-get(
|
|
1358
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-background'
|
|
1359
|
-
)
|
|
1360
|
-
),
|
|
1361
|
-
selected-hover: (
|
|
1362
|
-
background: map-get(
|
|
1363
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-hover-background'
|
|
1364
|
-
)
|
|
1365
|
-
),
|
|
1366
|
-
selected-disabled: (
|
|
1367
|
-
background: map-get(
|
|
1368
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-background'
|
|
1369
|
-
),
|
|
1370
|
-
text: map-get(
|
|
1371
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-text-color'
|
|
1372
|
-
),
|
|
1373
|
-
icon: map-get(
|
|
1374
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-selected-disabled-icon-color'
|
|
1375
|
-
)
|
|
1376
|
-
),
|
|
1377
|
-
disabled: (
|
|
1378
|
-
background: map-get(
|
|
1379
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-background'
|
|
1380
|
-
),
|
|
1381
|
-
text: map-get(
|
|
1382
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-text-color'
|
|
1383
|
-
),
|
|
1384
|
-
icon: map-get(
|
|
1385
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-background-states-disabled-icon-color'
|
|
1386
|
-
)
|
|
1387
|
-
)
|
|
1388
1356
|
),
|
|
1389
1357
|
on-surface: (
|
|
1390
1358
|
default: (
|
|
1391
|
-
background: map
|
|
1392
|
-
text: map
|
|
1393
|
-
icon: map
|
|
1359
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-default-background'),
|
|
1360
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-default-text-color'),
|
|
1361
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-default-icon-color'),
|
|
1362
|
+
),
|
|
1363
|
+
states-hover: (
|
|
1364
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-hover-background'),
|
|
1365
|
+
),
|
|
1366
|
+
states-focused: (
|
|
1367
|
+
border-color:
|
|
1368
|
+
map.get(
|
|
1369
|
+
$tokens,
|
|
1370
|
+
'tabs-#{$scheme}-tab-item-filled-on-surface-states-focused-focus-outline-color'
|
|
1371
|
+
),
|
|
1372
|
+
),
|
|
1373
|
+
states-selected: (
|
|
1374
|
+
background:
|
|
1375
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-background'),
|
|
1376
|
+
),
|
|
1377
|
+
states-selected-hover: (
|
|
1378
|
+
background:
|
|
1379
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-hover-background'),
|
|
1380
|
+
),
|
|
1381
|
+
states-selected-disabled: (
|
|
1382
|
+
background:
|
|
1383
|
+
map.get(
|
|
1384
|
+
$tokens,
|
|
1385
|
+
'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-background'
|
|
1386
|
+
),
|
|
1387
|
+
text:
|
|
1388
|
+
map.get(
|
|
1389
|
+
$tokens,
|
|
1390
|
+
'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-text-color'
|
|
1391
|
+
),
|
|
1392
|
+
icon:
|
|
1393
|
+
map.get(
|
|
1394
|
+
$tokens,
|
|
1395
|
+
'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-icon-color'
|
|
1396
|
+
),
|
|
1397
|
+
),
|
|
1398
|
+
states-disabled: (
|
|
1399
|
+
background:
|
|
1400
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-background'),
|
|
1401
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-text-color'),
|
|
1402
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-icon-color'),
|
|
1394
1403
|
),
|
|
1395
|
-
|
|
1396
|
-
background: map-get(
|
|
1397
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-hover-background'
|
|
1398
|
-
),
|
|
1399
|
-
),
|
|
1400
|
-
focused: (
|
|
1401
|
-
border-color: map-get(
|
|
1402
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-focused-focus-outline-color'
|
|
1403
|
-
)
|
|
1404
|
-
),
|
|
1405
|
-
selected: (
|
|
1406
|
-
background: map-get(
|
|
1407
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-background'
|
|
1408
|
-
),
|
|
1409
|
-
),
|
|
1410
|
-
selected-hover: (
|
|
1411
|
-
background: map-get(
|
|
1412
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-hover-background'
|
|
1413
|
-
)
|
|
1414
|
-
),
|
|
1415
|
-
selected-disabled: (
|
|
1416
|
-
background: map-get(
|
|
1417
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-background'
|
|
1418
|
-
),
|
|
1419
|
-
text: map-get(
|
|
1420
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-text-color'
|
|
1421
|
-
),
|
|
1422
|
-
icon: map-get(
|
|
1423
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-selected-disabled-icon-color'
|
|
1424
|
-
)
|
|
1425
|
-
),
|
|
1426
|
-
disabled: (
|
|
1427
|
-
background: map-get(
|
|
1428
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-background'
|
|
1429
|
-
),
|
|
1430
|
-
text: map-get(
|
|
1431
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-text-color'
|
|
1432
|
-
),
|
|
1433
|
-
icon: map-get(
|
|
1434
|
-
$tokens, 'tabs-#{$scheme}-tab-item-filled-on-surface-states-disabled-icon-color'
|
|
1435
|
-
)
|
|
1436
|
-
)
|
|
1437
|
-
)
|
|
1404
|
+
),
|
|
1438
1405
|
),
|
|
1439
1406
|
transparent: (
|
|
1440
1407
|
on-background: (
|
|
1441
1408
|
default: (
|
|
1442
|
-
background:
|
|
1443
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-default-background'
|
|
1444
|
-
),
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1409
|
+
background:
|
|
1410
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-default-background'),
|
|
1411
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-default-text-color'),
|
|
1412
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-default-icon-color'),
|
|
1413
|
+
),
|
|
1414
|
+
states-hover: (
|
|
1415
|
+
background:
|
|
1416
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-hover-background'),
|
|
1417
|
+
),
|
|
1418
|
+
states-focused: (
|
|
1419
|
+
border-color:
|
|
1420
|
+
map.get(
|
|
1421
|
+
$tokens,
|
|
1422
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-focused-focus-outline-color'
|
|
1423
|
+
),
|
|
1424
|
+
),
|
|
1425
|
+
states-selected: (
|
|
1426
|
+
background:
|
|
1427
|
+
map.get(
|
|
1428
|
+
$tokens,
|
|
1429
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-background'
|
|
1430
|
+
),
|
|
1431
|
+
),
|
|
1432
|
+
states-selected-hover: (
|
|
1433
|
+
background:
|
|
1434
|
+
map.get(
|
|
1435
|
+
$tokens,
|
|
1436
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-hover-background'
|
|
1437
|
+
),
|
|
1438
|
+
),
|
|
1439
|
+
states-selected-disabled: (
|
|
1440
|
+
background:
|
|
1441
|
+
map.get(
|
|
1442
|
+
$tokens,
|
|
1443
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-background'
|
|
1444
|
+
),
|
|
1445
|
+
text:
|
|
1446
|
+
map.get(
|
|
1447
|
+
$tokens,
|
|
1448
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-text-color'
|
|
1449
|
+
),
|
|
1450
|
+
icon:
|
|
1451
|
+
map.get(
|
|
1452
|
+
$tokens,
|
|
1453
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-icon-color'
|
|
1454
|
+
),
|
|
1455
|
+
),
|
|
1456
|
+
states-disabled: (
|
|
1457
|
+
background:
|
|
1458
|
+
map.get(
|
|
1459
|
+
$tokens,
|
|
1460
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-background'
|
|
1461
|
+
),
|
|
1462
|
+
text:
|
|
1463
|
+
map.get(
|
|
1464
|
+
$tokens,
|
|
1465
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-text-color'
|
|
1466
|
+
),
|
|
1467
|
+
icon:
|
|
1468
|
+
map.get(
|
|
1469
|
+
$tokens,
|
|
1470
|
+
'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-icon-color'
|
|
1471
|
+
),
|
|
1457
1472
|
),
|
|
1458
|
-
selected: (
|
|
1459
|
-
background: map-get(
|
|
1460
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-background'
|
|
1461
|
-
)
|
|
1462
|
-
),
|
|
1463
|
-
selected-hover: (
|
|
1464
|
-
background: map-get(
|
|
1465
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-hover-background'
|
|
1466
|
-
)
|
|
1467
|
-
),
|
|
1468
|
-
selected-disabled: (
|
|
1469
|
-
background: map-get(
|
|
1470
|
-
$tokens,
|
|
1471
|
-
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-background'
|
|
1472
|
-
),
|
|
1473
|
-
text: map-get(
|
|
1474
|
-
$tokens,
|
|
1475
|
-
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-text-color'
|
|
1476
|
-
),
|
|
1477
|
-
icon: map-get(
|
|
1478
|
-
$tokens,
|
|
1479
|
-
'tabs-#{$scheme}-tab-item-transparent-on-background-states-selected-disabled-icon-color'
|
|
1480
|
-
)
|
|
1481
|
-
),
|
|
1482
|
-
disabled: (
|
|
1483
|
-
background: map-get(
|
|
1484
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-background'
|
|
1485
|
-
),
|
|
1486
|
-
text: map-get(
|
|
1487
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-text-color'
|
|
1488
|
-
),
|
|
1489
|
-
icon: map-get(
|
|
1490
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-background-states-disabled-icon-color'
|
|
1491
|
-
)
|
|
1492
|
-
)
|
|
1493
1473
|
),
|
|
1494
1474
|
on-surface: (
|
|
1495
1475
|
default: (
|
|
1496
|
-
background: map
|
|
1497
|
-
text: map
|
|
1498
|
-
icon: map
|
|
1499
|
-
),
|
|
1500
|
-
hover: (
|
|
1501
|
-
background:
|
|
1502
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-hover-background'
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
),
|
|
1515
|
-
selected-hover: (
|
|
1516
|
-
background:
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1476
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-default-background'),
|
|
1477
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-default-text-color'),
|
|
1478
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-default-icon-color'),
|
|
1479
|
+
),
|
|
1480
|
+
states-hover: (
|
|
1481
|
+
background:
|
|
1482
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-hover-background'),
|
|
1483
|
+
),
|
|
1484
|
+
states-focused: (
|
|
1485
|
+
border-color:
|
|
1486
|
+
map.get(
|
|
1487
|
+
$tokens,
|
|
1488
|
+
'tabs-#{$scheme}-tab-item-transparent-on-surface-states-focused-focus-outline-color'
|
|
1489
|
+
),
|
|
1490
|
+
),
|
|
1491
|
+
states-selected: (
|
|
1492
|
+
background:
|
|
1493
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-selected-background'),
|
|
1494
|
+
),
|
|
1495
|
+
states-selected-hover: (
|
|
1496
|
+
background:
|
|
1497
|
+
map.get(
|
|
1498
|
+
$tokens,
|
|
1499
|
+
'tabs-#{$scheme}-tab-item-transparent-on-surface-states-selected-hover-background'
|
|
1500
|
+
),
|
|
1501
|
+
),
|
|
1502
|
+
states-selected-disabled: (
|
|
1503
|
+
background:
|
|
1504
|
+
map.get(
|
|
1505
|
+
$tokens,
|
|
1506
|
+
'tabs-#{$scheme}-tab-item-transparent-on-surface-states-selected-disabled-background'
|
|
1507
|
+
),
|
|
1508
|
+
text:
|
|
1509
|
+
map.get(
|
|
1510
|
+
$tokens,
|
|
1511
|
+
'tabs-#{$scheme}-tab-item-transparent-on-surface-states-selected-disabled-text-color'
|
|
1512
|
+
),
|
|
1513
|
+
icon:
|
|
1514
|
+
map.get(
|
|
1515
|
+
$tokens,
|
|
1516
|
+
'tabs-#{$scheme}-tab-item-transparent-on-surface-states-selected-disabled-icon-color'
|
|
1517
|
+
),
|
|
1518
|
+
),
|
|
1519
|
+
states-disabled: (
|
|
1520
|
+
background:
|
|
1521
|
+
map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-background'),
|
|
1522
|
+
text: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-text-color'),
|
|
1523
|
+
icon: map.get($tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-icon-color'),
|
|
1530
1524
|
),
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-background'
|
|
1534
|
-
),
|
|
1535
|
-
text: map-get(
|
|
1536
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-text-color'
|
|
1537
|
-
),
|
|
1538
|
-
icon: map-get(
|
|
1539
|
-
$tokens, 'tabs-#{$scheme}-tab-item-transparent-on-surface-states-disabled-icon-color'
|
|
1540
|
-
)
|
|
1541
|
-
)
|
|
1542
|
-
)
|
|
1543
|
-
)
|
|
1525
|
+
),
|
|
1526
|
+
),
|
|
1544
1527
|
);
|
|
1545
1528
|
|
|
1546
1529
|
$tab-stack: (
|
|
1547
1530
|
filled: (
|
|
1548
1531
|
on-background: (
|
|
1549
|
-
background: map
|
|
1532
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-stack-filled-on-background-background'),
|
|
1550
1533
|
),
|
|
1551
1534
|
on-surface: (
|
|
1552
|
-
background: map
|
|
1553
|
-
)
|
|
1535
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-stack-filled-on-surface-background'),
|
|
1536
|
+
),
|
|
1554
1537
|
),
|
|
1555
1538
|
|
|
1556
1539
|
transparent: (
|
|
1557
1540
|
on-background: (
|
|
1558
|
-
background: map
|
|
1541
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-stack-transparent-on-background-background'),
|
|
1559
1542
|
),
|
|
1560
1543
|
on-surface: (
|
|
1561
|
-
background: map
|
|
1562
|
-
)
|
|
1563
|
-
)
|
|
1544
|
+
background: map.get($tokens, 'tabs-#{$scheme}-tab-stack-transparent-on-surface-background'),
|
|
1545
|
+
),
|
|
1546
|
+
),
|
|
1564
1547
|
);
|
|
1565
1548
|
|
|
1566
1549
|
$tag: (
|
|
1567
1550
|
theme-fade-on: (
|
|
1568
1551
|
default: (
|
|
1569
|
-
background: map
|
|
1570
|
-
text: map
|
|
1571
|
-
icon: map
|
|
1572
|
-
close-button: map
|
|
1552
|
+
background: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-default-background'),
|
|
1553
|
+
text: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-default-text'),
|
|
1554
|
+
icon: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-default-icon'),
|
|
1555
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-default-close-button'),
|
|
1573
1556
|
),
|
|
1574
1557
|
hover: (
|
|
1575
|
-
background: map
|
|
1576
|
-
text: map
|
|
1577
|
-
icon: map
|
|
1578
|
-
close-button: map
|
|
1558
|
+
background: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-background'),
|
|
1559
|
+
text: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-text'),
|
|
1560
|
+
icon: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-icon'),
|
|
1561
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-close-button'),
|
|
1579
1562
|
),
|
|
1580
1563
|
focus: (
|
|
1581
|
-
background: map
|
|
1582
|
-
text: map
|
|
1583
|
-
icon: map
|
|
1584
|
-
close-button: map
|
|
1585
|
-
outline: map
|
|
1564
|
+
background: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-background'),
|
|
1565
|
+
text: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-text'),
|
|
1566
|
+
icon: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-icon'),
|
|
1567
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-close-button'),
|
|
1568
|
+
outline: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-outline'),
|
|
1586
1569
|
),
|
|
1587
1570
|
disabled: (
|
|
1588
|
-
background: map
|
|
1589
|
-
text: map
|
|
1590
|
-
icon: map
|
|
1591
|
-
close-button: map
|
|
1592
|
-
)
|
|
1571
|
+
background: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-background'),
|
|
1572
|
+
text: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-text'),
|
|
1573
|
+
icon: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-icon'),
|
|
1574
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-close-button'),
|
|
1575
|
+
),
|
|
1593
1576
|
),
|
|
1594
1577
|
contrast-fade-on: (
|
|
1595
1578
|
default: (
|
|
1596
|
-
background: map
|
|
1597
|
-
text: map
|
|
1598
|
-
icon: map
|
|
1599
|
-
close-button: map
|
|
1579
|
+
background: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-background'),
|
|
1580
|
+
text: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-text'),
|
|
1581
|
+
icon: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-icon'),
|
|
1582
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-close-button'),
|
|
1600
1583
|
),
|
|
1601
1584
|
hover: (
|
|
1602
|
-
background: map
|
|
1603
|
-
text: map
|
|
1604
|
-
icon: map
|
|
1605
|
-
close-button: map
|
|
1585
|
+
background: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-background'),
|
|
1586
|
+
text: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-text'),
|
|
1587
|
+
icon: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-icon'),
|
|
1588
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-close-button'),
|
|
1606
1589
|
),
|
|
1607
1590
|
focus: (
|
|
1608
|
-
background: map
|
|
1609
|
-
text: map
|
|
1610
|
-
icon: map
|
|
1611
|
-
close-button: map
|
|
1612
|
-
outline: map
|
|
1591
|
+
background: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-background'),
|
|
1592
|
+
text: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-text'),
|
|
1593
|
+
icon: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-icon'),
|
|
1594
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-close-button'),
|
|
1595
|
+
outline: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-outline'),
|
|
1613
1596
|
),
|
|
1614
1597
|
disabled: (
|
|
1615
|
-
background: map
|
|
1616
|
-
text: map
|
|
1617
|
-
icon: map
|
|
1618
|
-
close-button: map
|
|
1619
|
-
)
|
|
1598
|
+
background: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-background'),
|
|
1599
|
+
text: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-text'),
|
|
1600
|
+
icon: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-icon'),
|
|
1601
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-close-button'),
|
|
1602
|
+
),
|
|
1620
1603
|
),
|
|
1621
1604
|
error-fade-on: (
|
|
1622
1605
|
default: (
|
|
1623
|
-
background: map
|
|
1624
|
-
text: map
|
|
1625
|
-
icon: map
|
|
1626
|
-
close-button: map
|
|
1606
|
+
background: map.get($tokens, 'tag-#{$scheme}-error-fade-on-default-background'),
|
|
1607
|
+
text: map.get($tokens, 'tag-#{$scheme}-error-fade-on-default-text'),
|
|
1608
|
+
icon: map.get($tokens, 'tag-#{$scheme}-error-fade-on-default-icon'),
|
|
1609
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-error-fade-on-default-close-button'),
|
|
1627
1610
|
),
|
|
1628
1611
|
hover: (
|
|
1629
|
-
background: map
|
|
1630
|
-
text: map
|
|
1631
|
-
icon: map
|
|
1632
|
-
close-button: map
|
|
1612
|
+
background: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-background'),
|
|
1613
|
+
text: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-text'),
|
|
1614
|
+
icon: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-icon'),
|
|
1615
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-close-button'),
|
|
1633
1616
|
),
|
|
1634
1617
|
focus: (
|
|
1635
|
-
background: map
|
|
1636
|
-
text: map
|
|
1637
|
-
icon: map
|
|
1638
|
-
close-button: map
|
|
1639
|
-
outline: map
|
|
1618
|
+
background: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-background'),
|
|
1619
|
+
text: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-text'),
|
|
1620
|
+
icon: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-icon'),
|
|
1621
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-close-button'),
|
|
1622
|
+
outline: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-outline'),
|
|
1640
1623
|
),
|
|
1641
1624
|
disabled: (
|
|
1642
|
-
background: map
|
|
1643
|
-
text: map
|
|
1644
|
-
icon: map
|
|
1645
|
-
close-button: map
|
|
1646
|
-
)
|
|
1647
|
-
)
|
|
1625
|
+
background: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-background'),
|
|
1626
|
+
text: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-text'),
|
|
1627
|
+
icon: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-icon'),
|
|
1628
|
+
close-button: map.get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-close-button'),
|
|
1629
|
+
),
|
|
1630
|
+
),
|
|
1648
1631
|
);
|
|
1649
1632
|
|
|
1650
1633
|
$toggle: (
|
|
1651
|
-
theme:(
|
|
1652
|
-
default:(
|
|
1653
|
-
border: map
|
|
1654
|
-
background: map
|
|
1655
|
-
circle-background: map
|
|
1656
|
-
),
|
|
1657
|
-
hover: (
|
|
1658
|
-
border: map
|
|
1659
|
-
background: map
|
|
1660
|
-
circle-background: map
|
|
1661
|
-
),
|
|
1662
|
-
checked: (
|
|
1663
|
-
border: map
|
|
1664
|
-
background: map
|
|
1665
|
-
circle-background: map
|
|
1666
|
-
),
|
|
1667
|
-
checked-hover: (
|
|
1668
|
-
border: map
|
|
1669
|
-
background: map
|
|
1670
|
-
circle-background: map
|
|
1671
|
-
),
|
|
1672
|
-
focused: (
|
|
1673
|
-
border: map
|
|
1674
|
-
background: map
|
|
1675
|
-
circle-background: map
|
|
1676
|
-
focus-outline: map
|
|
1677
|
-
),
|
|
1678
|
-
checked-focused: (
|
|
1679
|
-
border: map
|
|
1680
|
-
background: map
|
|
1681
|
-
circle-background: map
|
|
1682
|
-
focus-outline: map
|
|
1634
|
+
theme: (
|
|
1635
|
+
default: (
|
|
1636
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-default-border'),
|
|
1637
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-default-background'),
|
|
1638
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-default-circle-background'),
|
|
1639
|
+
),
|
|
1640
|
+
states-hover: (
|
|
1641
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-hover-border'),
|
|
1642
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-hover-background'),
|
|
1643
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-hover-circle-background'),
|
|
1644
|
+
),
|
|
1645
|
+
states-checked: (
|
|
1646
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-border'),
|
|
1647
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-background'),
|
|
1648
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-circle-background'),
|
|
1649
|
+
),
|
|
1650
|
+
states-checked-hover: (
|
|
1651
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-border'),
|
|
1652
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-background'),
|
|
1653
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-circle-background'),
|
|
1654
|
+
),
|
|
1655
|
+
states-focused: (
|
|
1656
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-focused-border'),
|
|
1657
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-focused-background'),
|
|
1658
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-focused-circle-background'),
|
|
1659
|
+
focus-outline: map.get($tokens, 'toggle-#{$scheme}-theme-states-focused-focus-outline'),
|
|
1660
|
+
),
|
|
1661
|
+
states-checked-focused: (
|
|
1662
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-border'),
|
|
1663
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-background'),
|
|
1664
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-circle-background'),
|
|
1665
|
+
focus-outline: map.get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-focus-outline'),
|
|
1666
|
+
),
|
|
1667
|
+
states-disabled: (
|
|
1668
|
+
border: map.get($tokens, 'toggle-#{$scheme}-theme-states-disabled-border'),
|
|
1669
|
+
background: map.get($tokens, 'toggle-#{$scheme}-theme-states-disabled-background'),
|
|
1670
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-theme-states-disabled-circle-background'),
|
|
1683
1671
|
),
|
|
1684
|
-
disabled: (
|
|
1685
|
-
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-border'),
|
|
1686
|
-
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-background'),
|
|
1687
|
-
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-circle-background')
|
|
1688
|
-
)
|
|
1689
1672
|
),
|
|
1690
|
-
error:(
|
|
1691
|
-
default:(
|
|
1692
|
-
border: map
|
|
1693
|
-
background: map
|
|
1694
|
-
circle-background: map
|
|
1695
|
-
),
|
|
1696
|
-
hover: (
|
|
1697
|
-
border: map
|
|
1698
|
-
background: map
|
|
1699
|
-
circle-background: map
|
|
1700
|
-
),
|
|
1701
|
-
checked: (
|
|
1702
|
-
border: map
|
|
1703
|
-
background: map
|
|
1704
|
-
circle-background: map
|
|
1705
|
-
),
|
|
1706
|
-
checked-hover: (
|
|
1707
|
-
border: map
|
|
1708
|
-
background: map
|
|
1709
|
-
circle-background: map
|
|
1710
|
-
),
|
|
1711
|
-
focused: (
|
|
1712
|
-
border: map
|
|
1713
|
-
background: map
|
|
1714
|
-
circle-background: map
|
|
1715
|
-
focus-outline: map
|
|
1716
|
-
),
|
|
1717
|
-
checked-focused: (
|
|
1718
|
-
border: map
|
|
1719
|
-
background: map
|
|
1720
|
-
circle-background: map
|
|
1721
|
-
focus-outline: map
|
|
1673
|
+
error: (
|
|
1674
|
+
default: (
|
|
1675
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-default-border'),
|
|
1676
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-default-background'),
|
|
1677
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-default-circle-background'),
|
|
1678
|
+
),
|
|
1679
|
+
states-hover: (
|
|
1680
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-hover-border'),
|
|
1681
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-hover-background'),
|
|
1682
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-hover-circle-background'),
|
|
1683
|
+
),
|
|
1684
|
+
states-checked: (
|
|
1685
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-border'),
|
|
1686
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-background'),
|
|
1687
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-circle-background'),
|
|
1688
|
+
),
|
|
1689
|
+
states-checked-hover: (
|
|
1690
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-border'),
|
|
1691
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-background'),
|
|
1692
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-circle-background'),
|
|
1693
|
+
),
|
|
1694
|
+
states-focused: (
|
|
1695
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-focused-border'),
|
|
1696
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-focused-background'),
|
|
1697
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-focused-circle-background'),
|
|
1698
|
+
focus-outline: map.get($tokens, 'toggle-#{$scheme}-error-states-focused-focus-outline'),
|
|
1699
|
+
),
|
|
1700
|
+
states-checked-focused: (
|
|
1701
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-border'),
|
|
1702
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-background'),
|
|
1703
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-circle-background'),
|
|
1704
|
+
focus-outline: map.get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-focus-outline'),
|
|
1705
|
+
),
|
|
1706
|
+
states-disabled: (
|
|
1707
|
+
border: map.get($tokens, 'toggle-#{$scheme}-error-states-disabled-border'),
|
|
1708
|
+
background: map.get($tokens, 'toggle-#{$scheme}-error-states-disabled-background'),
|
|
1709
|
+
circle-background: map.get($tokens, 'toggle-#{$scheme}-error-states-disabled-circle-background'),
|
|
1722
1710
|
),
|
|
1723
|
-
|
|
1724
|
-
border: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-border'),
|
|
1725
|
-
background: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-background'),
|
|
1726
|
-
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-circle-background')
|
|
1727
|
-
)
|
|
1728
|
-
)
|
|
1711
|
+
),
|
|
1729
1712
|
);
|
|
1730
1713
|
|
|
1731
1714
|
$timezone: (
|
|
1732
|
-
text: map
|
|
1733
|
-
caption: map
|
|
1734
|
-
optgroup-label: map
|
|
1715
|
+
text: map.get($tokens, 'timezone-option-#{$scheme}-text'),
|
|
1716
|
+
caption: map.get($tokens, 'timezone-option-#{$scheme}-caption'),
|
|
1717
|
+
optgroup-label: map.get($tokens, 'timezone-option-#{$scheme}-optgroup-label'),
|
|
1735
1718
|
);
|
|
1736
1719
|
|
|
1737
1720
|
$toast: (
|
|
1738
1721
|
contrast: (
|
|
1739
|
-
background: map
|
|
1740
|
-
title: map
|
|
1741
|
-
text: map
|
|
1742
|
-
box-shadow: map
|
|
1722
|
+
background: map.get($tokens, 'toast-#{$scheme}-contrast-container-background'),
|
|
1723
|
+
title: map.get($tokens, 'toast-#{$scheme}-contrast-container-title'),
|
|
1724
|
+
text: map.get($tokens, 'toast-#{$scheme}-contrast-container-text'),
|
|
1725
|
+
box-shadow: map.get($tokens, 'toast-#{$scheme}-contrast-container-shadow'),
|
|
1726
|
+
),
|
|
1727
|
+
success: (
|
|
1728
|
+
background: map.get($tokens, 'toast-#{$scheme}-success-container-background'),
|
|
1729
|
+
title: map.get($tokens, 'toast-#{$scheme}-success-container-title'),
|
|
1730
|
+
text: map.get($tokens, 'toast-#{$scheme}-success-container-text'),
|
|
1731
|
+
box-shadow: map.get($tokens, 'toast-#{$scheme}-success-container-shadow'),
|
|
1732
|
+
),
|
|
1733
|
+
warning: (
|
|
1734
|
+
background: map.get($tokens, 'toast-#{$scheme}-warning-container-background'),
|
|
1735
|
+
title: map.get($tokens, 'toast-#{$scheme}-warning-container-title'),
|
|
1736
|
+
text: map.get($tokens, 'toast-#{$scheme}-warning-container-text'),
|
|
1737
|
+
box-shadow: map.get($tokens, 'toast-#{$scheme}-warning-container-shadow'),
|
|
1743
1738
|
),
|
|
1744
1739
|
error: (
|
|
1745
|
-
background: map
|
|
1746
|
-
title: map
|
|
1747
|
-
text: map
|
|
1748
|
-
box-shadow: map
|
|
1749
|
-
)
|
|
1740
|
+
background: map.get($tokens, 'toast-#{$scheme}-error-container-background'),
|
|
1741
|
+
title: map.get($tokens, 'toast-#{$scheme}-error-container-title'),
|
|
1742
|
+
text: map.get($tokens, 'toast-#{$scheme}-error-container-text'),
|
|
1743
|
+
box-shadow: map.get($tokens, 'toast-#{$scheme}-error-container-shadow'),
|
|
1744
|
+
),
|
|
1750
1745
|
);
|
|
1751
1746
|
|
|
1752
1747
|
$tooltip: (
|
|
1753
1748
|
theme-fade-off: (
|
|
1754
|
-
background: map
|
|
1755
|
-
text: map
|
|
1756
|
-
shadow: map
|
|
1749
|
+
background: map.get($tokens, 'tooltip-#{$scheme}-theme-fade-off-background'),
|
|
1750
|
+
text: map.get($tokens, 'tooltip-#{$scheme}-theme-fade-off-text'),
|
|
1751
|
+
shadow: map.get($tokens, 'tooltip-#{$scheme}-theme-fade-off-shadow'),
|
|
1757
1752
|
),
|
|
1758
1753
|
contrast-fade-on: (
|
|
1759
|
-
background: map
|
|
1760
|
-
text: map
|
|
1761
|
-
shadow: map
|
|
1754
|
+
background: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-background'),
|
|
1755
|
+
text: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-text'),
|
|
1756
|
+
shadow: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-shadow'),
|
|
1762
1757
|
),
|
|
1763
1758
|
contrast-fade-off: (
|
|
1764
|
-
background: map
|
|
1765
|
-
text: map
|
|
1766
|
-
shadow: map
|
|
1767
|
-
)
|
|
1759
|
+
background: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-background'),
|
|
1760
|
+
text: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-text'),
|
|
1761
|
+
shadow: map.get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-shadow'),
|
|
1762
|
+
),
|
|
1768
1763
|
);
|
|
1769
1764
|
|
|
1770
1765
|
$tree-item: (
|
|
1771
1766
|
default: (
|
|
1772
|
-
container-background: map
|
|
1773
|
-
text: map
|
|
1774
|
-
icon: map
|
|
1775
|
-
tree-toggle: map
|
|
1776
|
-
action-button: map
|
|
1777
|
-
caption: map
|
|
1778
|
-
),
|
|
1779
|
-
hover: (
|
|
1780
|
-
container-background: map
|
|
1781
|
-
text: map
|
|
1782
|
-
icon: map
|
|
1783
|
-
tree-toggle: map
|
|
1784
|
-
action-button: map
|
|
1785
|
-
caption: map
|
|
1786
|
-
),
|
|
1787
|
-
selected: (
|
|
1788
|
-
container-background: map
|
|
1789
|
-
text: map
|
|
1790
|
-
icon: map
|
|
1791
|
-
tree-toggle: map
|
|
1792
|
-
action-button: map
|
|
1793
|
-
caption: map
|
|
1794
|
-
),
|
|
1795
|
-
selected-hover: (
|
|
1796
|
-
container-background: map
|
|
1797
|
-
text: map
|
|
1798
|
-
icon: map
|
|
1799
|
-
tree-toggle: map
|
|
1800
|
-
action-button: map
|
|
1801
|
-
caption: map
|
|
1802
|
-
),
|
|
1803
|
-
focused: (
|
|
1804
|
-
focus-outline: map
|
|
1805
|
-
),
|
|
1806
|
-
disabled: (
|
|
1807
|
-
container-background: map
|
|
1808
|
-
text: map
|
|
1809
|
-
icon: map
|
|
1810
|
-
tree-toggle: map
|
|
1811
|
-
action-button: map
|
|
1812
|
-
caption: map
|
|
1813
|
-
)
|
|
1767
|
+
container-background: map.get($tokens, 'tree-#{$scheme}-default-container-background'),
|
|
1768
|
+
text: map.get($tokens, 'tree-#{$scheme}-default-text-color'),
|
|
1769
|
+
icon: map.get($tokens, 'tree-#{$scheme}-default-icon-color'),
|
|
1770
|
+
tree-toggle: map.get($tokens, 'tree-#{$scheme}-default-tree-toggle-color'),
|
|
1771
|
+
action-button: map.get($tokens, 'tree-#{$scheme}-default-action-button-color'),
|
|
1772
|
+
caption: map.get($tokens, 'tree-#{$scheme}-default-caption-color'),
|
|
1773
|
+
),
|
|
1774
|
+
states-hover: (
|
|
1775
|
+
container-background: map.get($tokens, 'tree-#{$scheme}-states-hover-container-background'),
|
|
1776
|
+
text: map.get($tokens, 'tree-#{$scheme}-states-hover-text-color'),
|
|
1777
|
+
icon: map.get($tokens, 'tree-#{$scheme}-states-hover-icon-color'),
|
|
1778
|
+
tree-toggle: map.get($tokens, 'tree-#{$scheme}-states-hover-tree-toggle-color'),
|
|
1779
|
+
action-button: map.get($tokens, 'tree-#{$scheme}-states-hover-action-button-color'),
|
|
1780
|
+
caption: map.get($tokens, 'tree-#{$scheme}-states-hover-caption-color'),
|
|
1781
|
+
),
|
|
1782
|
+
states-selected: (
|
|
1783
|
+
container-background: map.get($tokens, 'tree-#{$scheme}-states-selected-container-background'),
|
|
1784
|
+
text: map.get($tokens, 'tree-#{$scheme}-states-selected-text-color'),
|
|
1785
|
+
icon: map.get($tokens, 'tree-#{$scheme}-states-selected-icon-color'),
|
|
1786
|
+
tree-toggle: map.get($tokens, 'tree-#{$scheme}-states-selected-tree-toggle-color'),
|
|
1787
|
+
action-button: map.get($tokens, 'tree-#{$scheme}-states-selected-action-button-color'),
|
|
1788
|
+
caption: map.get($tokens, 'tree-#{$scheme}-states-selected-caption-color'),
|
|
1789
|
+
),
|
|
1790
|
+
states-selected-hover: (
|
|
1791
|
+
container-background: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-container-background'),
|
|
1792
|
+
text: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-text-color'),
|
|
1793
|
+
icon: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-icon-color'),
|
|
1794
|
+
tree-toggle: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-tree-toggle-color'),
|
|
1795
|
+
action-button: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-action-button-color'),
|
|
1796
|
+
caption: map.get($tokens, 'tree-#{$scheme}-states-selected-hover-caption-color'),
|
|
1797
|
+
),
|
|
1798
|
+
states-focused: (
|
|
1799
|
+
focus-outline: map.get($tokens, 'tree-#{$scheme}-states-focused-focus-outline-color'),
|
|
1800
|
+
),
|
|
1801
|
+
states-disabled: (
|
|
1802
|
+
container-background: map.get($tokens, 'tree-#{$scheme}-states-disabled-container-background'),
|
|
1803
|
+
text: map.get($tokens, 'tree-#{$scheme}-states-disabled-text-color'),
|
|
1804
|
+
icon: map.get($tokens, 'tree-#{$scheme}-states-disabled-icon-color'),
|
|
1805
|
+
tree-toggle: map.get($tokens, 'tree-#{$scheme}-states-disabled-tree-toggle-color'),
|
|
1806
|
+
action-button: map.get($tokens, 'tree-#{$scheme}-states-disabled-action-button-color'),
|
|
1807
|
+
caption: map.get($tokens, 'tree-#{$scheme}-states-disabled-caption-color'),
|
|
1808
|
+
),
|
|
1814
1809
|
);
|
|
1815
1810
|
|
|
1816
1811
|
$scrollbar: (
|
|
1817
|
-
default: map
|
|
1818
|
-
hover: map
|
|
1819
|
-
active: map
|
|
1820
|
-
disabled: map
|
|
1812
|
+
default: map.get($tokens, 'scrollbar-#{$scheme}-thumb-default-background'),
|
|
1813
|
+
hover: map.get($tokens, 'scrollbar-#{$scheme}-thumb-hover-background'),
|
|
1814
|
+
active: map.get($tokens, 'scrollbar-#{$scheme}-thumb-active-background'),
|
|
1815
|
+
disabled: map.get($tokens, 'scrollbar-#{$scheme}-thumb-disabled-background'),
|
|
1821
1816
|
track: (
|
|
1822
|
-
default: map
|
|
1823
|
-
hover: map
|
|
1824
|
-
active: map
|
|
1825
|
-
)
|
|
1817
|
+
default: map.get($tokens, 'scrollbar-#{$scheme}-track-default-background'),
|
|
1818
|
+
hover: map.get($tokens, 'scrollbar-#{$scheme}-track-hover-background'),
|
|
1819
|
+
active: map.get($tokens, 'scrollbar-#{$scheme}-track-active-background'),
|
|
1820
|
+
),
|
|
1826
1821
|
);
|
|
1827
1822
|
|
|
1828
1823
|
@return (
|
|
@@ -1838,6 +1833,7 @@
|
|
|
1838
1833
|
datepicker: $datepicker,
|
|
1839
1834
|
divider: $divider,
|
|
1840
1835
|
dl: $dl,
|
|
1836
|
+
empty-state: $empty-state,
|
|
1841
1837
|
file-upload: $file-upload,
|
|
1842
1838
|
form-field: $form-field,
|
|
1843
1839
|
form-field-hint: $form-field-hint,
|