@dxc-technology/halstack-react 0.0.0-efa7c74 → 0.0.0-eff2879
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/BackgroundColorContext.d.ts +1 -0
- package/BackgroundColorContext.js +6 -26
- package/HalstackContext.d.ts +1248 -0
- package/HalstackContext.js +310 -0
- package/README.md +47 -0
- package/accordion/Accordion.accessibility.test.js +71 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +106 -193
- package/accordion/Accordion.stories.tsx +251 -0
- package/accordion/Accordion.test.js +56 -0
- package/accordion/types.d.ts +12 -23
- package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
- package/accordion-group/AccordionGroup.d.ts +3 -3
- package/accordion-group/AccordionGroup.js +39 -108
- package/accordion-group/AccordionGroup.stories.tsx +252 -0
- package/accordion-group/AccordionGroup.test.js +98 -0
- package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
- package/accordion-group/AccordionGroupAccordion.js +31 -0
- package/accordion-group/AccordionGroupContext.d.ts +3 -0
- package/accordion-group/AccordionGroupContext.js +8 -0
- package/accordion-group/types.d.ts +18 -23
- package/action-icon/ActionIcon.accessibility.test.js +63 -0
- package/action-icon/ActionIcon.d.ts +4 -0
- package/action-icon/ActionIcon.js +48 -0
- package/action-icon/ActionIcon.stories.tsx +41 -0
- package/action-icon/ActionIcon.test.js +64 -0
- package/action-icon/types.d.ts +26 -0
- package/alert/Alert.accessibility.test.js +95 -0
- package/alert/Alert.js +36 -126
- package/alert/Alert.stories.tsx +28 -0
- package/alert/Alert.test.js +75 -0
- package/alert/types.d.ts +5 -5
- package/badge/Badge.accessibility.test.js +129 -0
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +142 -40
- package/badge/Badge.stories.tsx +210 -0
- package/badge/Badge.test.js +30 -0
- package/badge/types.d.ts +54 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +43 -0
- package/bleed/Bleed.stories.tsx +342 -0
- package/bleed/types.d.ts +37 -0
- package/box/Box.accessibility.test.js +33 -0
- package/box/Box.d.ts +1 -1
- package/box/Box.js +31 -82
- package/box/Box.stories.tsx +38 -51
- package/box/Box.test.js +13 -0
- package/box/types.d.ts +3 -14
- package/bulleted-list/BulletedList.accessibility.test.js +107 -0
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +92 -0
- package/bulleted-list/BulletedList.stories.tsx +115 -0
- package/bulleted-list/types.d.ts +38 -0
- package/bulleted-list/types.js +5 -0
- package/button/Button.accessibility.test.js +127 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +65 -123
- package/button/Button.stories.tsx +155 -106
- package/button/Button.test.js +38 -0
- package/button/types.d.ts +12 -12
- package/card/Card.accessibility.test.js +36 -0
- package/card/Card.d.ts +1 -1
- package/card/Card.js +59 -103
- package/card/Card.stories.tsx +13 -43
- package/card/Card.test.js +39 -0
- package/card/types.d.ts +6 -11
- package/checkbox/Checkbox.accessibility.test.js +87 -0
- package/checkbox/Checkbox.d.ts +2 -2
- package/checkbox/Checkbox.js +145 -183
- package/checkbox/Checkbox.stories.tsx +166 -136
- package/checkbox/Checkbox.test.js +199 -0
- package/checkbox/types.d.ts +19 -7
- package/chip/Chip.accessibility.test.js +67 -0
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +49 -146
- package/chip/Chip.stories.tsx +104 -30
- package/chip/Chip.test.js +41 -0
- package/chip/types.d.ts +45 -0
- package/chip/types.js +5 -0
- package/common/coreTokens.d.ts +237 -0
- package/common/coreTokens.js +184 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +6 -12
- package/common/variables.d.ts +1394 -0
- package/common/variables.js +1035 -1346
- package/container/Container.d.ts +4 -0
- package/container/Container.js +194 -0
- package/container/Container.stories.tsx +214 -0
- package/container/types.d.ts +74 -0
- package/container/types.js +5 -0
- package/contextual-menu/ContextualMenu.accessibility.test.js +86 -0
- package/contextual-menu/ContextualMenu.d.ts +5 -0
- package/contextual-menu/ContextualMenu.js +88 -0
- package/contextual-menu/ContextualMenu.stories.tsx +219 -0
- package/contextual-menu/ContextualMenu.test.js +205 -0
- package/contextual-menu/GroupItem.d.ts +4 -0
- package/contextual-menu/GroupItem.js +67 -0
- package/contextual-menu/ItemAction.d.ts +4 -0
- package/contextual-menu/ItemAction.js +52 -0
- package/contextual-menu/MenuItem.d.ts +4 -0
- package/contextual-menu/MenuItem.js +29 -0
- package/contextual-menu/SingleItem.d.ts +4 -0
- package/contextual-menu/SingleItem.js +38 -0
- package/contextual-menu/types.d.ts +58 -0
- package/contextual-menu/types.js +5 -0
- package/date-input/Calendar.d.ts +4 -0
- package/date-input/Calendar.js +214 -0
- package/date-input/DateInput.accessibility.test.js +216 -0
- package/date-input/DateInput.js +174 -313
- package/date-input/DateInput.stories.tsx +203 -56
- package/date-input/DateInput.test.js +808 -0
- package/date-input/DatePicker.d.ts +4 -0
- package/date-input/DatePicker.js +121 -0
- package/date-input/YearPicker.d.ts +4 -0
- package/date-input/YearPicker.js +100 -0
- package/date-input/types.d.ts +86 -22
- package/dialog/Dialog.accessibility.test.js +69 -0
- package/dialog/Dialog.d.ts +1 -1
- package/dialog/Dialog.js +57 -130
- package/dialog/Dialog.stories.tsx +320 -167
- package/dialog/Dialog.test.js +307 -0
- package/dialog/types.d.ts +18 -25
- package/divider/Divider.accessibility.test.js +33 -0
- package/divider/Divider.d.ts +4 -0
- package/divider/Divider.js +36 -0
- package/divider/Divider.stories.tsx +223 -0
- package/divider/Divider.test.js +38 -0
- package/divider/types.d.ts +21 -0
- package/divider/types.js +5 -0
- package/dropdown/Dropdown.accessibility.test.js +180 -0
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +232 -330
- package/dropdown/Dropdown.stories.tsx +427 -0
- package/dropdown/Dropdown.test.js +599 -0
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +63 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +70 -0
- package/dropdown/types.d.ts +38 -31
- package/file-input/FileInput.accessibility.test.js +160 -0
- package/file-input/FileInput.d.ts +2 -2
- package/file-input/FileInput.js +272 -340
- package/file-input/FileInput.stories.tsx +618 -0
- package/file-input/FileInput.test.js +382 -0
- package/file-input/FileItem.d.ts +4 -14
- package/file-input/FileItem.js +60 -121
- package/file-input/types.d.ts +53 -11
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +57 -0
- package/flex/Flex.stories.tsx +112 -0
- package/flex/types.d.ts +97 -0
- package/flex/types.js +5 -0
- package/footer/Footer.accessibility.test.js +117 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +74 -200
- package/footer/{Footer.stories.jsx → Footer.stories.tsx} +84 -39
- package/footer/Footer.test.js +85 -0
- package/footer/Icons.d.ts +3 -0
- package/footer/Icons.js +67 -8
- package/footer/types.d.ts +40 -37
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +76 -0
- package/grid/Grid.stories.tsx +219 -0
- package/grid/types.d.ts +115 -0
- package/grid/types.js +5 -0
- package/header/Header.accessibility.test.js +84 -0
- package/header/Header.d.ts +4 -3
- package/header/Header.js +103 -218
- package/header/Header.stories.tsx +152 -63
- package/header/Header.test.js +66 -0
- package/header/Icons.d.ts +2 -0
- package/header/Icons.js +4 -9
- package/header/types.d.ts +7 -21
- package/heading/Heading.accessibility.test.js +33 -0
- package/heading/Heading.js +11 -33
- package/heading/Heading.stories.tsx +3 -2
- package/heading/Heading.test.js +169 -0
- package/heading/types.d.ts +7 -7
- package/icon/Icon.accessibility.test.js +30 -0
- package/icon/Icon.d.ts +4 -0
- package/icon/Icon.js +33 -0
- package/icon/Icon.stories.tsx +28 -0
- package/icon/types.d.ts +4 -0
- package/icon/types.js +5 -0
- package/image/Image.accessibility.test.js +56 -0
- package/image/Image.d.ts +4 -0
- package/image/Image.js +70 -0
- package/image/Image.stories.tsx +129 -0
- package/image/types.d.ts +72 -0
- package/image/types.js +5 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +43 -0
- package/inset/Inset.stories.tsx +230 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +20 -0
- package/layout/ApplicationLayout.js +86 -184
- package/layout/ApplicationLayout.stories.tsx +162 -0
- package/layout/Icons.d.ts +7 -0
- package/layout/Icons.js +41 -48
- package/layout/types.d.ts +41 -0
- package/layout/types.js +5 -0
- package/link/Link.accessibility.test.js +112 -0
- package/link/Link.d.ts +3 -2
- package/link/Link.js +65 -109
- package/link/Link.stories.tsx +159 -52
- package/link/Link.test.js +63 -0
- package/link/types.d.ts +15 -35
- package/main.d.ts +19 -14
- package/main.js +92 -98
- package/nav-tabs/NavTabs.accessibility.test.js +44 -0
- package/nav-tabs/NavTabs.d.ts +7 -0
- package/nav-tabs/NavTabs.js +93 -0
- package/nav-tabs/NavTabs.stories.tsx +279 -0
- package/nav-tabs/NavTabs.test.js +75 -0
- package/nav-tabs/NavTabsContext.d.ts +3 -0
- package/nav-tabs/NavTabsContext.js +8 -0
- package/nav-tabs/Tab.d.ts +4 -0
- package/nav-tabs/Tab.js +117 -0
- package/nav-tabs/types.d.ts +52 -0
- package/nav-tabs/types.js +5 -0
- package/number-input/NumberInput.accessibility.test.js +228 -0
- package/number-input/NumberInput.js +48 -48
- package/number-input/NumberInput.stories.tsx +44 -28
- package/number-input/NumberInput.test.js +989 -0
- package/number-input/NumberInputContext.d.ts +3 -4
- package/number-input/NumberInputContext.js +3 -14
- package/number-input/types.d.ts +34 -15
- package/package.json +52 -51
- package/paginator/Paginator.accessibility.test.js +79 -0
- package/paginator/Paginator.js +39 -103
- package/paginator/Paginator.stories.tsx +24 -0
- package/paginator/Paginator.test.js +335 -0
- package/paginator/types.d.ts +3 -3
- package/paragraph/Paragraph.accessibility.test.js +28 -0
- package/paragraph/Paragraph.d.ts +5 -0
- package/paragraph/Paragraph.js +22 -0
- package/paragraph/Paragraph.stories.tsx +27 -0
- package/password-input/PasswordInput.accessibility.test.js +153 -0
- package/password-input/PasswordInput.js +59 -125
- package/password-input/PasswordInput.stories.tsx +3 -35
- package/password-input/PasswordInput.test.js +198 -0
- package/password-input/types.d.ts +32 -26
- package/progress-bar/ProgressBar.accessibility.test.js +35 -0
- package/progress-bar/ProgressBar.js +66 -92
- package/progress-bar/ProgressBar.stories.tsx +93 -0
- package/progress-bar/ProgressBar.test.js +93 -0
- package/progress-bar/types.d.ts +3 -3
- package/quick-nav/QuickNav.accessibility.test.js +57 -0
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +94 -0
- package/quick-nav/QuickNav.stories.tsx +356 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +124 -0
- package/radio-group/RadioGroup.accessibility.test.js +97 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +235 -0
- package/radio-group/RadioGroup.stories.tsx +214 -0
- package/radio-group/RadioGroup.test.js +756 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultset-table/Icons.d.ts +7 -0
- package/resultset-table/Icons.js +47 -0
- package/resultset-table/ResultsetTable.accessibility.test.js +274 -0
- package/resultset-table/ResultsetTable.d.ts +7 -0
- package/resultset-table/ResultsetTable.js +170 -0
- package/resultset-table/ResultsetTable.stories.tsx +401 -0
- package/resultset-table/ResultsetTable.test.js +381 -0
- package/resultset-table/types.d.ts +100 -0
- package/resultset-table/types.js +5 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +145 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +88 -0
- package/select/Select.accessibility.test.js +217 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +248 -515
- package/select/Select.stories.tsx +590 -255
- package/select/Select.test.js +2276 -0
- package/select/types.d.ts +209 -0
- package/select/types.js +5 -0
- package/sidenav/Sidenav.accessibility.test.js +59 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +137 -72
- package/sidenav/Sidenav.stories.tsx +246 -134
- package/sidenav/Sidenav.test.js +37 -0
- package/sidenav/SidenavContext.d.ts +5 -0
- package/sidenav/SidenavContext.js +13 -0
- package/sidenav/types.d.ts +52 -26
- package/slider/Slider.accessibility.test.js +104 -0
- package/slider/Slider.d.ts +2 -2
- package/slider/Slider.js +149 -181
- package/slider/Slider.test.js +254 -0
- package/slider/types.d.ts +11 -3
- package/spinner/Spinner.accessibility.test.js +96 -0
- package/spinner/Spinner.js +32 -76
- package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -26
- package/spinner/Spinner.test.js +55 -0
- package/spinner/types.d.ts +3 -3
- package/status-light/StatusLight.accessibility.test.js +157 -0
- package/status-light/StatusLight.d.ts +4 -0
- package/status-light/StatusLight.js +51 -0
- package/status-light/StatusLight.stories.tsx +74 -0
- package/status-light/StatusLight.test.js +25 -0
- package/status-light/types.d.ts +17 -0
- package/status-light/types.js +5 -0
- package/switch/Switch.accessibility.test.js +89 -0
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +150 -115
- package/switch/Switch.stories.tsx +45 -68
- package/switch/Switch.test.js +180 -0
- package/switch/types.d.ts +13 -5
- package/table/DropdownTheme.js +62 -0
- package/table/Table.accessibility.test.js +82 -0
- package/table/Table.d.ts +6 -2
- package/table/Table.js +79 -36
- package/table/Table.stories.tsx +651 -0
- package/table/Table.test.js +113 -0
- package/table/types.d.ts +34 -6
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +117 -0
- package/tabs/Tabs.accessibility.test.js +56 -0
- package/tabs/Tabs.d.ts +1 -1
- package/tabs/Tabs.js +307 -147
- package/tabs/Tabs.stories.tsx +121 -18
- package/tabs/Tabs.test.js +276 -0
- package/tabs/types.d.ts +46 -24
- package/tag/Tag.accessibility.test.js +69 -0
- package/tag/Tag.d.ts +1 -1
- package/tag/Tag.js +44 -86
- package/tag/Tag.stories.tsx +37 -30
- package/tag/Tag.test.js +41 -0
- package/tag/types.d.ts +25 -16
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +67 -0
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +86 -0
- package/text-input/TextInput.accessibility.test.js +321 -0
- package/text-input/TextInput.js +335 -553
- package/text-input/TextInput.stories.tsx +465 -0
- package/text-input/TextInput.test.js +1756 -0
- package/text-input/types.d.ts +82 -34
- package/textarea/Textarea.accessibility.test.js +155 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +98 -181
- package/textarea/Textarea.stories.tsx +174 -0
- package/textarea/Textarea.test.js +406 -0
- package/textarea/types.d.ts +141 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
- package/toggle-group/ToggleGroup.d.ts +2 -2
- package/toggle-group/ToggleGroup.js +98 -113
- package/toggle-group/ToggleGroup.stories.tsx +79 -39
- package/toggle-group/ToggleGroup.test.js +137 -0
- package/toggle-group/types.d.ts +68 -38
- package/typography/Typography.accessibility.test.js +339 -0
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +23 -0
- package/typography/Typography.stories.tsx +198 -0
- package/typography/types.d.ts +18 -0
- package/typography/types.js +5 -0
- package/useTheme.d.ts +1147 -0
- package/useTheme.js +4 -11
- package/useTranslatedLabels.d.ts +85 -0
- package/useTranslatedLabels.js +14 -0
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +94 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +124 -0
- package/wizard/Wizard.accessibility.test.js +55 -0
- package/wizard/Wizard.d.ts +1 -1
- package/wizard/Wizard.js +130 -114
- package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +67 -19
- package/wizard/Wizard.test.js +114 -0
- package/wizard/types.d.ts +15 -15
- package/ThemeContext.js +0 -246
- package/V3Select/V3Select.js +0 -455
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -260
- package/V3Textarea/index.d.ts +0 -27
- package/card/ice-cream.jpg +0 -0
- package/chip/index.d.ts +0 -22
- package/common/OpenSans.css +0 -81
- package/common/RequiredComponent.js +0 -32
- package/common/fonts/OpenSans-Bold.ttf +0 -0
- package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-Italic.ttf +0 -0
- package/common/fonts/OpenSans-Light.ttf +0 -0
- package/common/fonts/OpenSans-LightItalic.ttf +0 -0
- package/common/fonts/OpenSans-Regular.ttf +0 -0
- package/common/fonts/OpenSans-SemiBold.ttf +0 -0
- package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/date/Date.js +0 -373
- package/date/index.d.ts +0 -27
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -611
- package/input-text/index.d.ts +0 -36
- package/number-input/numberInputContextTypes.d.ts +0 -19
- package/paginator/Icons.js +0 -66
- package/progress-bar/ProgressBar.stories.jsx +0 -58
- package/radio/Radio.d.ts +0 -4
- package/radio/Radio.js +0 -174
- package/radio/Radio.stories.tsx +0 -192
- package/radio/types.d.ts +0 -54
- package/resultsetTable/ResultsetTable.d.ts +0 -4
- package/resultsetTable/ResultsetTable.js +0 -249
- package/resultsetTable/types.d.ts +0 -63
- package/select/index.d.ts +0 -131
- package/slider/Slider.stories.tsx +0 -177
- package/table/Table.stories.jsx +0 -276
- package/textarea/Textarea.stories.jsx +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle/Toggle.js +0 -186
- package/toggle/index.d.ts +0 -21
- package/upload/Upload.js +0 -201
- package/upload/buttons-upload/ButtonsUpload.js +0 -111
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -115
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -109
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -104
- package/upload/transactions/Transactions.js +0 -94
- package/wizard/Icons.js +0 -65
- /package/{radio → action-icon}/types.js +0 -0
- /package/{resultsetTable → badge}/types.js +0 -0
- /package/{number-input/numberInputContextTypes.js → bleed/types.js} +0 -0
package/common/variables.js
CHANGED
|
@@ -1,225 +1,69 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
|
-
exports.
|
|
9
|
-
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
var _Icons2 = _interopRequireDefault(require("../footer/Icons"));
|
|
13
|
-
|
|
14
|
-
var globalTokens = {
|
|
15
|
-
// Color
|
|
16
|
-
inherit: "inherit",
|
|
17
|
-
transparent: "transparent",
|
|
18
|
-
hal_white: "#ffffff",
|
|
19
|
-
hal_grey_l_95: "#f2f2f2",
|
|
20
|
-
hal_grey_l_90: "#e6e6e6",
|
|
21
|
-
hal_grey_l_80: "#cccccc",
|
|
22
|
-
hal_grey_l_75: "#bfbfbf",
|
|
23
|
-
hal_grey_l_60: "#999999",
|
|
24
|
-
hal_grey_s_40: "#666666",
|
|
25
|
-
hal_black: "#000000",
|
|
26
|
-
color_grey_800: "#4d4d4d",
|
|
27
|
-
color_grey_600: "#808080",
|
|
28
|
-
color_grey_50: "#fafafa",
|
|
29
|
-
hal_purple_l_95: "#f2eafa",
|
|
30
|
-
hal_purple_l_90: "#e5d5f6",
|
|
31
|
-
hal_purple_l_65: "#a46ede",
|
|
32
|
-
hal_purple_s_38: "#5f249f",
|
|
33
|
-
hal_purple_d_30: "#4b1c7d",
|
|
34
|
-
hal_purple_d_20: "#321353",
|
|
35
|
-
color_purple_600: "#7D2FD0",
|
|
36
|
-
color_purple_300: "#cbacec",
|
|
37
|
-
hal_blue_l_95: "#e6f4ff",
|
|
38
|
-
hal_blue_l_80: "#99d5ff",
|
|
39
|
-
hal_blue_l_50: "#0095ff",
|
|
40
|
-
hal_blue_l_45: "#0086e6",
|
|
41
|
-
hal_blue_s_35: "#0067b3",
|
|
42
|
-
hal_blue_d_20: "#003c66",
|
|
43
|
-
color_blue_200: "#cceaff",
|
|
44
|
-
color_blue_500: "#33AAFF",
|
|
45
|
-
color_blue_50: "#f5fbff",
|
|
46
|
-
hal_red_l_95: "#ffe6e9",
|
|
47
|
-
hal_red_l_80: "#fe9aa7",
|
|
48
|
-
hal_red_l_60: "#fe344f",
|
|
49
|
-
hal_red_s_41: "#d0011b",
|
|
50
|
-
hal_red_d_30: "#980115",
|
|
51
|
-
hal_red_d_20: "#65010e",
|
|
52
|
-
color_red_700: "#ffccd3",
|
|
53
|
-
color_red_50: "#FFF5F6",
|
|
54
|
-
color_red_600: "#fe0123",
|
|
55
|
-
hal_green_l_95: "#eafaef",
|
|
56
|
-
hal_green_l_80: "#acecbe",
|
|
57
|
-
hal_green_s_39: "#24a148",
|
|
58
|
-
hal_green_d_30: "#1c7d38",
|
|
59
|
-
hal_green_d_20: "#135325",
|
|
60
|
-
hal_yellow_l_95: "#fef9e6",
|
|
61
|
-
hal_yellow_l_80: "#fbe89d",
|
|
62
|
-
hal_yellow_s_57: "#f7cf2b",
|
|
63
|
-
hal_yellow_d_40: "#c59f07",
|
|
64
|
-
hal_yellow_d_30: "#947705",
|
|
65
|
-
hal_orange_s_54: "#f38f20",
|
|
66
|
-
black: "#000000",
|
|
67
|
-
lightBlack: "#212121",
|
|
68
|
-
yellow: "#FFED00",
|
|
69
|
-
lightGrey: "#D9D9D9",
|
|
70
|
-
darkRed: "#D0011B",
|
|
71
|
-
lightRed: "#FF6161",
|
|
72
|
-
lightBlue: "#CEE0F5",
|
|
73
|
-
lightYellow: "#FCF2BD",
|
|
74
|
-
lightPink: "#F9CFCF",
|
|
75
|
-
lightGreen: "#DBF1C4",
|
|
76
|
-
blue: "#005FCC",
|
|
77
|
-
lighterGrey: "#F8F8F8",
|
|
78
|
-
red: "#D0011B",
|
|
79
|
-
violet: "#8800F6",
|
|
80
|
-
darkBlue: "#006BF6",
|
|
81
|
-
purple: "#6f2c91",
|
|
82
|
-
mediumPurple: "#ead8f3",
|
|
83
|
-
lightPurple: "#f5ebf9",
|
|
84
|
-
lighterPurple: "#d0bddb",
|
|
85
|
-
white: "#ffffff",
|
|
86
|
-
darkGrey: "#666666",
|
|
87
|
-
mediumGrey: "#bfbfbf",
|
|
88
|
-
mediumWhite: "#f9f9f9",
|
|
89
|
-
mediumBlue: "#0067b3",
|
|
90
|
-
softBlue: "#b1cee6",
|
|
91
|
-
darkWhite: "#eeeeee",
|
|
92
|
-
lighterBlack: "#b1b1b1",
|
|
93
|
-
mediumBlack: "#676767",
|
|
94
|
-
mediumGreyBlack: "#dbdbdb",
|
|
95
|
-
lightWhite: "#f2f2f2",
|
|
96
|
-
softGrey: "#cecece",
|
|
97
|
-
softBlack: "#565656",
|
|
98
|
-
// Typography
|
|
99
|
-
type_sans: "Open Sans, sans-serif",
|
|
100
|
-
type_scale_root: "16px",
|
|
101
|
-
type_scale_08: "3.75rem",
|
|
102
|
-
type_scale_07: "3rem",
|
|
103
|
-
type_scale_06: "2rem",
|
|
104
|
-
type_scale_05: "1.5rem",
|
|
105
|
-
type_scale_04: "1.25rem",
|
|
106
|
-
type_scale_03: "1rem",
|
|
107
|
-
type_scale_02: "0.875rem",
|
|
108
|
-
type_scale_01: "0.75rem",
|
|
109
|
-
type_light: "300",
|
|
110
|
-
type_regular: "400",
|
|
111
|
-
type_semibold: "600",
|
|
112
|
-
type_bold: "bold",
|
|
113
|
-
type_italic: "italic",
|
|
114
|
-
type_normal: "normal",
|
|
115
|
-
type_spacing_tight_02: "-0.05em",
|
|
116
|
-
type_spacing_tight_01: "-0.025em",
|
|
117
|
-
type_spacing_normal: "0",
|
|
118
|
-
type_spacing_wide_01: "0.025em",
|
|
119
|
-
type_spacing_wide_02: "0.05em",
|
|
120
|
-
type_spacing_wide_03: "0.1em",
|
|
121
|
-
type_initial: "initial",
|
|
122
|
-
type_uppercase: "uppercase",
|
|
123
|
-
type_no_line: "none",
|
|
124
|
-
type_underline: "underline",
|
|
125
|
-
type_line_through: "line-through",
|
|
126
|
-
type_leading_compact_03: "1em",
|
|
127
|
-
type_leading_compact_02: "1.25em",
|
|
128
|
-
type_leading_compact_01: "1.365em",
|
|
129
|
-
type_leading_normal: "1.5em",
|
|
130
|
-
type_leading_loose_01: "1.715em",
|
|
131
|
-
type_leading_loose_02: "2em",
|
|
132
|
-
fontSize10: "10px",
|
|
133
|
-
// Spacing
|
|
134
|
-
spacing_00: "0rem",
|
|
135
|
-
spacing_01: "0.125rem",
|
|
136
|
-
spacing_02: "0.25rem",
|
|
137
|
-
spacing_03: "0.5rem",
|
|
138
|
-
spacing_04: "0.75rem",
|
|
139
|
-
spacing_05: "1rem",
|
|
140
|
-
spacing_06: "1.5rem",
|
|
141
|
-
spacing_07: "2rem",
|
|
142
|
-
spacing_08: "2.5rem",
|
|
143
|
-
spacing_09: "3rem",
|
|
144
|
-
spacing_10: "3.5rem",
|
|
145
|
-
spacing_11: "4rem",
|
|
146
|
-
spacing_12: "5rem",
|
|
147
|
-
spacing_13: "6rem",
|
|
148
|
-
spacing_14: "7rem",
|
|
149
|
-
// Border
|
|
150
|
-
border_width_0: "0px",
|
|
151
|
-
border_width_1: "1px",
|
|
152
|
-
border_width_2: "2px",
|
|
153
|
-
border_width_4: "4px",
|
|
154
|
-
border_radius_none: "0rem",
|
|
155
|
-
border_radius_small: "0.125rem",
|
|
156
|
-
border_radius_medium: "0.25rem",
|
|
157
|
-
border_radius_large: "0.375rem",
|
|
158
|
-
border_radius_full: "9999px",
|
|
159
|
-
border_solid: "solid",
|
|
160
|
-
border_dashed: "dashed",
|
|
161
|
-
border_none: "none"
|
|
162
|
-
};
|
|
163
|
-
exports.globalTokens = globalTokens;
|
|
164
|
-
var componentTokens = {
|
|
7
|
+
exports.spaces = exports.responsiveSizes = exports.defaultTranslatedComponentLabels = exports.componentTokens = void 0;
|
|
8
|
+
var _coreTokens = _interopRequireDefault(require("./coreTokens"));
|
|
9
|
+
var componentTokens = exports.componentTokens = {
|
|
165
10
|
accordion: {
|
|
166
|
-
backgroundColor:
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
disabledAssistiveTextFontColor: globalTokens.hal_grey_l_60,
|
|
11
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
12
|
+
hoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
13
|
+
arrowColor: _coreTokens["default"].color_purple_700,
|
|
14
|
+
disabledArrowColor: _coreTokens["default"].color_grey_500,
|
|
15
|
+
assistiveTextFontFamily: _coreTokens["default"].type_sans,
|
|
16
|
+
assistiveTextFontSize: _coreTokens["default"].type_scale_03,
|
|
17
|
+
assistiveTextFontWeight: _coreTokens["default"].type_light,
|
|
18
|
+
assistiveTextFontStyle: _coreTokens["default"].type_italic,
|
|
19
|
+
assistiveTextLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
20
|
+
assistiveTextFontColor: _coreTokens["default"].color_grey_700,
|
|
21
|
+
disabledAssistiveTextFontColor: _coreTokens["default"].color_grey_500,
|
|
178
22
|
assistiveTextMinWidth: "100px",
|
|
179
23
|
assistiveTextPaddingRight: "24px",
|
|
180
24
|
assistiveTextPaddingLeft: "0px",
|
|
181
|
-
titleLabelFontFamily:
|
|
182
|
-
titleLabelFontSize:
|
|
183
|
-
titleLabelFontWeight:
|
|
184
|
-
titleLabelFontStyle:
|
|
185
|
-
titleLabelFontColor:
|
|
186
|
-
disabledTitleLabelFontColor:
|
|
187
|
-
titleLabelPaddingLeft: "0px",
|
|
188
|
-
titleLabelPaddingRight: "16px",
|
|
25
|
+
titleLabelFontFamily: _coreTokens["default"].type_sans,
|
|
26
|
+
titleLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
27
|
+
titleLabelFontWeight: _coreTokens["default"].type_regular,
|
|
28
|
+
titleLabelFontStyle: _coreTokens["default"].type_normal,
|
|
29
|
+
titleLabelFontColor: _coreTokens["default"].color_black,
|
|
30
|
+
disabledTitleLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
189
31
|
titleLabelPaddingTop: "0px",
|
|
190
32
|
titleLabelPaddingBottom: "0px",
|
|
191
|
-
|
|
33
|
+
titleLabelPaddingLeft: "0px",
|
|
34
|
+
titleLabelPaddingRight: "16px",
|
|
35
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
36
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
192
37
|
focusBorderThickness: "2px",
|
|
193
|
-
focusBorderColor: globalTokens.hal_blue_l_50,
|
|
194
38
|
borderRadius: "4px",
|
|
195
39
|
boxShadowOffsetX: "0px",
|
|
196
40
|
boxShadowOffsetY: "6px",
|
|
197
41
|
boxShadowBlur: "10px",
|
|
198
|
-
boxShadowColor: "
|
|
199
|
-
iconColor:
|
|
200
|
-
disabledIconColor:
|
|
42
|
+
boxShadowColor: _coreTokens["default"].color_grey_200_a,
|
|
43
|
+
iconColor: _coreTokens["default"].color_purple_700,
|
|
44
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
201
45
|
iconSize: "24px",
|
|
202
46
|
iconMarginLeft: "0px",
|
|
203
|
-
|
|
204
|
-
accordionGroupSeparatorBorderColor: "
|
|
47
|
+
iconMarginRight: "12px",
|
|
48
|
+
accordionGroupSeparatorBorderColor: _coreTokens["default"].color_grey_200_a,
|
|
205
49
|
accordionGroupSeparatorBorderThickness: "1px",
|
|
206
50
|
accordionGroupSeparatorBorderRadius: "0px",
|
|
207
|
-
accordionGroupSeparatorBorderStyle: "
|
|
51
|
+
accordionGroupSeparatorBorderStyle: _coreTokens["default"].border_solid
|
|
208
52
|
},
|
|
209
53
|
alert: {
|
|
210
|
-
titleFontFamily:
|
|
211
|
-
titleFontColor:
|
|
212
|
-
titleFontSize:
|
|
213
|
-
titleFontStyle:
|
|
214
|
-
titleFontWeight:
|
|
215
|
-
titleTextTransform:
|
|
54
|
+
titleFontFamily: _coreTokens["default"].type_sans,
|
|
55
|
+
titleFontColor: _coreTokens["default"].color_black,
|
|
56
|
+
titleFontSize: _coreTokens["default"].type_scale_01,
|
|
57
|
+
titleFontStyle: _coreTokens["default"].type_normal,
|
|
58
|
+
titleFontWeight: _coreTokens["default"].type_bold,
|
|
59
|
+
titleTextTransform: _coreTokens["default"].type_uppercase,
|
|
216
60
|
titlePaddingRight: "0px",
|
|
217
61
|
titlePaddingLeft: "0px",
|
|
218
|
-
inlineTextFontFamily:
|
|
219
|
-
inlineTextFontColor:
|
|
220
|
-
inlineTextFontSize:
|
|
221
|
-
inlineTextFontStyle:
|
|
222
|
-
inlineTextFontWeight:
|
|
62
|
+
inlineTextFontFamily: _coreTokens["default"].type_sans,
|
|
63
|
+
inlineTextFontColor: _coreTokens["default"].color_black,
|
|
64
|
+
inlineTextFontSize: _coreTokens["default"].type_scale_01,
|
|
65
|
+
inlineTextFontStyle: _coreTokens["default"].type_normal,
|
|
66
|
+
inlineTextFontWeight: _coreTokens["default"].type_regular,
|
|
223
67
|
inlineTextPaddingLeft: "0px",
|
|
224
68
|
inlineTextPaddingRight: "0px",
|
|
225
69
|
contentPaddingLeft: "0px",
|
|
@@ -227,1303 +71,1088 @@ var componentTokens = {
|
|
|
227
71
|
contentPaddingTop: "20px",
|
|
228
72
|
contentPaddingBottom: "30px",
|
|
229
73
|
borderRadius: "4px",
|
|
230
|
-
borderStyle: "
|
|
74
|
+
borderStyle: _coreTokens["default"].border_solid,
|
|
231
75
|
borderThickness: "1px",
|
|
232
|
-
infoBorderColor:
|
|
233
|
-
successBorderColor:
|
|
234
|
-
warningBorderColor:
|
|
235
|
-
errorBorderColor:
|
|
76
|
+
infoBorderColor: _coreTokens["default"].color_blue_800,
|
|
77
|
+
successBorderColor: _coreTokens["default"].color_green_700,
|
|
78
|
+
warningBorderColor: _coreTokens["default"].color_yellow_700,
|
|
79
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
236
80
|
iconSize: "24px",
|
|
237
81
|
iconPaddingLeft: "0px",
|
|
238
82
|
iconPaddingRight: "0px",
|
|
239
|
-
infoIconColor:
|
|
240
|
-
successIconColor:
|
|
241
|
-
warningIconColor:
|
|
242
|
-
errorIconColor:
|
|
243
|
-
infoBackgroundColor:
|
|
244
|
-
successBackgroundColor:
|
|
245
|
-
warningBackgroundColor:
|
|
246
|
-
errorBackgroundColor:
|
|
247
|
-
hoverActionBackgroundColor: "
|
|
248
|
-
activeActionBackgroundColor: "
|
|
249
|
-
focusActionBorderColor:
|
|
250
|
-
overlayColor: "
|
|
83
|
+
infoIconColor: _coreTokens["default"].color_blue_800,
|
|
84
|
+
successIconColor: _coreTokens["default"].color_green_700,
|
|
85
|
+
warningIconColor: _coreTokens["default"].color_yellow_700,
|
|
86
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
87
|
+
infoBackgroundColor: _coreTokens["default"].color_blue_100,
|
|
88
|
+
successBackgroundColor: _coreTokens["default"].color_green_100,
|
|
89
|
+
warningBackgroundColor: _coreTokens["default"].color_yellow_100,
|
|
90
|
+
errorBackgroundColor: _coreTokens["default"].color_red_100,
|
|
91
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100_a,
|
|
92
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_200_a,
|
|
93
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
94
|
+
overlayColor: _coreTokens["default"].color_grey_800_a
|
|
251
95
|
},
|
|
252
96
|
box: {
|
|
253
|
-
backgroundColor:
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
borderColor: globalTokens.transparent,
|
|
97
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
98
|
+
borderRadius: _coreTokens["default"].border_radius_medium,
|
|
99
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
100
|
+
borderStyle: _coreTokens["default"].border_none,
|
|
101
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
259
102
|
noneShadowDepthShadowOffsetX: "none",
|
|
260
103
|
noneShadowDepthShadowOffsetY: "none",
|
|
261
104
|
noneShadowDepthShadowBlur: "none",
|
|
262
105
|
noneShadowDepthShadowSpread: "none",
|
|
263
|
-
noneShadowDepthShadowColor:
|
|
106
|
+
noneShadowDepthShadowColor: _coreTokens["default"].color_transparent,
|
|
264
107
|
oneShadowDepthShadowOffsetX: "0px",
|
|
265
108
|
oneShadowDepthShadowOffsetY: "3px",
|
|
266
109
|
oneShadowDepthShadowBlur: "6px",
|
|
267
110
|
oneShadowDepthShadowSpread: "0px",
|
|
268
|
-
oneShadowDepthShadowColor: "
|
|
111
|
+
oneShadowDepthShadowColor: _coreTokens["default"].color_grey_300_a,
|
|
269
112
|
twoShadowDepthShadowOffsetX: "0px",
|
|
270
113
|
twoShadowDepthShadowOffsetY: "3px",
|
|
271
114
|
twoShadowDepthShadowBlur: "10px",
|
|
272
115
|
twoShadowDepthShadowSpread: "0px",
|
|
273
|
-
twoShadowDepthShadowColor: "
|
|
116
|
+
twoShadowDepthShadowColor: _coreTokens["default"].color_grey_300_a
|
|
117
|
+
},
|
|
118
|
+
bulletedList: {
|
|
119
|
+
fontColor: _coreTokens["default"].color_black,
|
|
120
|
+
bulletIconHeight: "1.5rem",
|
|
121
|
+
bulletIconWidth: "1.5rem",
|
|
122
|
+
bulletHeight: "5px",
|
|
123
|
+
bulletWidth: "5px",
|
|
124
|
+
bulletMarginRight: "0.5rem"
|
|
274
125
|
},
|
|
275
126
|
button: {
|
|
276
|
-
labelFontLineHeight:
|
|
277
|
-
labelLetterSpacing:
|
|
278
|
-
paddingLeft:
|
|
279
|
-
paddingRight:
|
|
280
|
-
paddingTop:
|
|
281
|
-
paddingBottom:
|
|
282
|
-
focusBorderColor:
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
secondaryBorderRadius: globalTokens.border_radius_medium,
|
|
323
|
-
secondaryFontFamily: globalTokens.type_sans,
|
|
324
|
-
secondaryFontSize: globalTokens.type_scale_03,
|
|
325
|
-
secondaryFontWeight: globalTokens.type_regular,
|
|
326
|
-
textBackgroundColor: globalTokens.transparent,
|
|
327
|
-
textBackgroundColorOnDark: globalTokens.transparent,
|
|
328
|
-
textFontColor: globalTokens.hal_purple_s_38,
|
|
329
|
-
textFontColorOnDark: globalTokens.hal_white,
|
|
330
|
-
textHoverBackgroundColor: globalTokens.hal_purple_l_95,
|
|
331
|
-
textHoverBackgroundColorOnDark: globalTokens.color_grey_800,
|
|
332
|
-
textActiveBackgroundColor: globalTokens.hal_purple_l_90,
|
|
333
|
-
textActiveBackgroundColorOnDark: globalTokens.hal_grey_s_40,
|
|
334
|
-
textDisabledBackgroundColor: globalTokens.transparent,
|
|
335
|
-
textDisabledBackgroundColorOnDark: globalTokens.transparent,
|
|
336
|
-
textDisabledFontColor: globalTokens.hal_grey_l_60,
|
|
337
|
-
textDisabledFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
338
|
-
textBorderThickness: globalTokens.border_width_0,
|
|
339
|
-
textBorderStyle: globalTokens.border_none,
|
|
340
|
-
textBorderRadius: globalTokens.border_radius_medium,
|
|
341
|
-
textFontFamily: globalTokens.type_sans,
|
|
342
|
-
textFontSize: globalTokens.type_scale_03,
|
|
343
|
-
textFontWeight: globalTokens.type_regular
|
|
127
|
+
labelFontLineHeight: _coreTokens["default"].type_leading_normal,
|
|
128
|
+
labelLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
129
|
+
paddingLeft: _coreTokens["default"].spacing_8,
|
|
130
|
+
paddingRight: _coreTokens["default"].spacing_8,
|
|
131
|
+
paddingTop: _coreTokens["default"].spacing_8,
|
|
132
|
+
paddingBottom: _coreTokens["default"].spacing_8,
|
|
133
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
134
|
+
primaryBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
135
|
+
primaryFontColor: _coreTokens["default"].color_white,
|
|
136
|
+
primaryHoverBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
137
|
+
primaryActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
138
|
+
primaryDisabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
139
|
+
primaryDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
140
|
+
primaryBorderThickness: _coreTokens["default"].border_width_0,
|
|
141
|
+
primaryBorderStyle: _coreTokens["default"].border_none,
|
|
142
|
+
primaryBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
143
|
+
primaryFontFamily: _coreTokens["default"].type_sans,
|
|
144
|
+
primaryFontSize: _coreTokens["default"].type_scale_03,
|
|
145
|
+
primaryFontWeight: _coreTokens["default"].type_regular,
|
|
146
|
+
secondaryBackgroundColor: _coreTokens["default"].color_transparent,
|
|
147
|
+
secondaryFontColor: _coreTokens["default"].color_purple_700,
|
|
148
|
+
secondaryHoverFontColor: _coreTokens["default"].color_white,
|
|
149
|
+
secondaryBorderColor: _coreTokens["default"].color_purple_700,
|
|
150
|
+
secondaryHoverBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
151
|
+
secondaryActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
152
|
+
secondaryDisabledBackgroundColor: _coreTokens["default"].color_transparent,
|
|
153
|
+
secondaryDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
154
|
+
secondaryDisabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
155
|
+
secondaryBorderThickness: _coreTokens["default"].border_width_1,
|
|
156
|
+
secondaryBorderStyle: _coreTokens["default"].border_solid,
|
|
157
|
+
secondaryBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
158
|
+
secondaryFontFamily: _coreTokens["default"].type_sans,
|
|
159
|
+
secondaryFontSize: _coreTokens["default"].type_scale_03,
|
|
160
|
+
secondaryFontWeight: _coreTokens["default"].type_regular,
|
|
161
|
+
textBackgroundColor: _coreTokens["default"].color_transparent,
|
|
162
|
+
textFontColor: _coreTokens["default"].color_purple_700,
|
|
163
|
+
textHoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
164
|
+
textActiveBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
165
|
+
textDisabledBackgroundColor: _coreTokens["default"].color_transparent,
|
|
166
|
+
textDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
167
|
+
textBorderThickness: _coreTokens["default"].border_width_0,
|
|
168
|
+
textBorderStyle: _coreTokens["default"].border_none,
|
|
169
|
+
textBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
170
|
+
textFontFamily: _coreTokens["default"].type_sans,
|
|
171
|
+
textFontSize: _coreTokens["default"].type_scale_03,
|
|
172
|
+
textFontWeight: _coreTokens["default"].type_regular
|
|
344
173
|
},
|
|
345
174
|
card: {
|
|
346
175
|
height: "220px",
|
|
347
176
|
width: "400px"
|
|
348
177
|
},
|
|
349
178
|
checkbox: {
|
|
350
|
-
backgroundColorChecked:
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
fontColor: globalTokens.hal_black,
|
|
370
|
-
fontColorOnDark: globalTokens.hal_white,
|
|
371
|
-
disabledFontColor: globalTokens.hal_grey_l_60,
|
|
372
|
-
disabledFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
373
|
-
focusColor: globalTokens.hal_blue_l_50,
|
|
374
|
-
focusColorOnDark: globalTokens.hal_blue_l_50,
|
|
179
|
+
backgroundColorChecked: _coreTokens["default"].color_blue_800,
|
|
180
|
+
hoverBackgroundColorChecked: _coreTokens["default"].color_blue_900,
|
|
181
|
+
disabledBackgroundColorChecked: _coreTokens["default"].color_grey_500,
|
|
182
|
+
readOnlyBackgroundColorChecked: _coreTokens["default"].color_grey_500,
|
|
183
|
+
hoverReadOnlyBackgroundColorChecked: _coreTokens["default"].color_grey_600,
|
|
184
|
+
borderColor: _coreTokens["default"].color_blue_800,
|
|
185
|
+
hoverBorderColor: _coreTokens["default"].color_blue_900,
|
|
186
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
187
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
188
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
189
|
+
checkColor: _coreTokens["default"].color_white,
|
|
190
|
+
disabledCheckColor: _coreTokens["default"].color_white,
|
|
191
|
+
readOnlyCheckColor: _coreTokens["default"].color_white,
|
|
192
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
193
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
194
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
195
|
+
fontColor: _coreTokens["default"].color_black,
|
|
196
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
197
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
375
198
|
checkLabelSpacing: "8px"
|
|
376
199
|
},
|
|
377
200
|
chip: {
|
|
378
|
-
backgroundColor:
|
|
379
|
-
disabledBackgroundColor:
|
|
380
|
-
fontFamily:
|
|
381
|
-
fontSize:
|
|
382
|
-
fontStyle:
|
|
383
|
-
fontWeight:
|
|
384
|
-
fontColor:
|
|
385
|
-
disabledFontColor:
|
|
386
|
-
borderColor:
|
|
201
|
+
backgroundColor: _coreTokens["default"].color_grey_200,
|
|
202
|
+
disabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
203
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
204
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
205
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
206
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
207
|
+
fontColor: _coreTokens["default"].color_black,
|
|
208
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
209
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
387
210
|
borderRadius: "80px",
|
|
388
|
-
borderThickness: "
|
|
389
|
-
borderStyle: "
|
|
211
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
212
|
+
borderStyle: _coreTokens["default"].border_solid,
|
|
390
213
|
contentPaddingLeft: "16px",
|
|
391
214
|
contentPaddingRight: "16px",
|
|
392
215
|
contentPaddingTop: "0px",
|
|
393
216
|
contentPaddingBottom: "0px",
|
|
394
217
|
iconSize: "24px",
|
|
395
218
|
iconSpacing: "8px",
|
|
396
|
-
iconColor:
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
pickerFontColor: globalTokens.hal_black,
|
|
405
|
-
pickerHoverDateBackgroundColor: globalTokens.lighterPurple,
|
|
406
|
-
pickerHoverDateFontColor: globalTokens.hal_black,
|
|
407
|
-
pickerActualDateColor: globalTokens.lightGrey,
|
|
408
|
-
pickerYearColor: globalTokens.hal_black,
|
|
409
|
-
pickerMonthColor: globalTokens.hal_black,
|
|
410
|
-
pickerWeekLabelColor: globalTokens.hal_black,
|
|
411
|
-
pickerBackgroundColorMonthArrows: globalTokens.transparent,
|
|
412
|
-
focusColor: globalTokens.hal_blue_l_50,
|
|
413
|
-
fontFamily: globalTokens.type_sans,
|
|
414
|
-
pickerHeight: "316px",
|
|
415
|
-
pickerWidth: "290px"
|
|
219
|
+
iconColor: _coreTokens["default"].color_grey_800,
|
|
220
|
+
hoverIconColor: _coreTokens["default"].color_grey_900,
|
|
221
|
+
activeIconColor: _coreTokens["default"].color_black,
|
|
222
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
223
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
224
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
225
|
+
focusBorderThickness: _coreTokens["default"].border_width_2,
|
|
226
|
+
focusBorderRadius: _coreTokens["default"].border_radius_medium
|
|
416
227
|
},
|
|
417
228
|
dateInput: {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
229
|
+
pickerBackgroundColor: _coreTokens["default"].color_white,
|
|
230
|
+
pickerFontColor: _coreTokens["default"].color_black,
|
|
231
|
+
pickerBorderColor: _coreTokens["default"].color_grey_400,
|
|
232
|
+
pickerSelectedBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
233
|
+
pickerSelectedFontColor: _coreTokens["default"].color_white,
|
|
234
|
+
pickerHoverBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
235
|
+
pickerHoverFontColor: _coreTokens["default"].color_black,
|
|
236
|
+
pickerActiveBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
237
|
+
pickerActiveFontColor: _coreTokens["default"].color_white,
|
|
238
|
+
pickerNonCurrentMonthFontColor: _coreTokens["default"].color_grey_500,
|
|
239
|
+
pickerCurrentDateBorderColor: _coreTokens["default"].color_purple_300,
|
|
240
|
+
pickerCurrentDateFontColor: _coreTokens["default"].color_black,
|
|
241
|
+
pickerCurrentYearFontColor: _coreTokens["default"].color_purple_700,
|
|
242
|
+
pickerHeaderBackgroundColor: _coreTokens["default"].color_transparent,
|
|
243
|
+
pickerHeaderFontColor: _coreTokens["default"].color_black,
|
|
244
|
+
pickerHeaderHoverBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
245
|
+
pickerHeaderHoverFontColor: _coreTokens["default"].color_black,
|
|
246
|
+
pickerHeaderActiveBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
247
|
+
pickerHeaderActiveFontColor: _coreTokens["default"].color_white,
|
|
248
|
+
pickerFocusColor: _coreTokens["default"].color_blue_600,
|
|
249
|
+
pickerBorderWidth: _coreTokens["default"].border_width_1,
|
|
250
|
+
pickerBorderStyle: _coreTokens["default"].border_solid,
|
|
251
|
+
pickerFocusWidth: _coreTokens["default"].border_width_2,
|
|
252
|
+
pickerCurrentDateBorderWidth: _coreTokens["default"].border_width_1,
|
|
253
|
+
pickerFontFamily: _coreTokens["default"].type_sans,
|
|
254
|
+
pickerFontSize: _coreTokens["default"].type_scale_02,
|
|
255
|
+
pickerFontWeight: _coreTokens["default"].type_regular,
|
|
256
|
+
pickerInteractedYearFontSize: _coreTokens["default"].type_scale_05,
|
|
257
|
+
pickerHeaderFontSize: _coreTokens["default"].type_scale_02
|
|
433
258
|
},
|
|
434
259
|
dialog: {
|
|
435
|
-
overlayColor:
|
|
436
|
-
backgroundColor:
|
|
437
|
-
|
|
438
|
-
closeIconHeight: "24px",
|
|
260
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
261
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
262
|
+
closeIconSize: "24px",
|
|
439
263
|
closeIconTopPosition: "20px",
|
|
440
264
|
closeIconRightPosition: "20px",
|
|
441
|
-
closeIconBackgroundColor: "
|
|
442
|
-
closeIconBorderColor: "
|
|
443
|
-
closeIconColor:
|
|
444
|
-
closeIconBorderThickness: "
|
|
445
|
-
closeIconBorderStyle: "
|
|
446
|
-
closeIconBorderRadius: "
|
|
265
|
+
closeIconBackgroundColor: _coreTokens["default"].color_transparent,
|
|
266
|
+
closeIconBorderColor: _coreTokens["default"].border_none,
|
|
267
|
+
closeIconColor: _coreTokens["default"].color_black,
|
|
268
|
+
closeIconBorderThickness: _coreTokens["default"].border_width_0,
|
|
269
|
+
closeIconBorderStyle: _coreTokens["default"].border_solid,
|
|
270
|
+
closeIconBorderRadius: "2px",
|
|
447
271
|
boxShadowOffsetX: "0px",
|
|
448
272
|
boxShadowOffsetY: "1px",
|
|
449
273
|
boxShadowBlur: "3px",
|
|
450
|
-
boxShadowColor: "
|
|
451
|
-
overlayOpacity: "0.7"
|
|
274
|
+
boxShadowColor: _coreTokens["default"].color_grey_300_a
|
|
452
275
|
},
|
|
453
276
|
dropdown: {
|
|
454
|
-
buttonBackgroundColor:
|
|
455
|
-
hoverButtonBackgroundColor:
|
|
456
|
-
activeButtonBackgroundColor:
|
|
457
|
-
buttonFontFamily:
|
|
458
|
-
buttonFontSize:
|
|
459
|
-
buttonFontStyle:
|
|
460
|
-
buttonFontWeight:
|
|
461
|
-
buttonFontColor:
|
|
277
|
+
buttonBackgroundColor: _coreTokens["default"].color_white,
|
|
278
|
+
hoverButtonBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
279
|
+
activeButtonBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
280
|
+
buttonFontFamily: _coreTokens["default"].type_sans,
|
|
281
|
+
buttonFontSize: _coreTokens["default"].type_scale_03,
|
|
282
|
+
buttonFontStyle: _coreTokens["default"].type_normal,
|
|
283
|
+
buttonFontWeight: _coreTokens["default"].type_regular,
|
|
284
|
+
buttonFontColor: _coreTokens["default"].color_black,
|
|
462
285
|
buttonIconSize: "20px",
|
|
463
286
|
buttonIconSpacing: "10px",
|
|
464
|
-
buttonIconColor:
|
|
287
|
+
buttonIconColor: _coreTokens["default"].color_black,
|
|
465
288
|
buttonPaddingTop: "0px",
|
|
466
289
|
buttonPaddingBottom: "0px",
|
|
467
290
|
buttonPaddingLeft: "16px",
|
|
468
291
|
buttonPaddingRight: "16px",
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
292
|
+
buttonHeight: "40px",
|
|
293
|
+
buttonBorderRadius: "4px",
|
|
294
|
+
buttonBorderStyle: _coreTokens["default"].border_none,
|
|
295
|
+
buttonBorderThickness: _coreTokens["default"].border_width_0,
|
|
296
|
+
buttonBorderColor: _coreTokens["default"].color_transparent,
|
|
297
|
+
disabledColor: _coreTokens["default"].color_grey_500,
|
|
298
|
+
disabledButtonBackgroundColor: _coreTokens["default"].color_transparent,
|
|
299
|
+
disabledButtonBorderColor: _coreTokens["default"].color_transparent,
|
|
300
|
+
disabledBorderColor: _coreTokens["default"].color_transparent,
|
|
301
|
+
optionBackgroundColor: _coreTokens["default"].color_white,
|
|
302
|
+
hoverOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
303
|
+
activeOptionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
304
|
+
optionFontFamily: _coreTokens["default"].type_sans,
|
|
305
|
+
optionFontSize: _coreTokens["default"].type_scale_root,
|
|
306
|
+
optionFontStyle: _coreTokens["default"].type_normal,
|
|
307
|
+
optionFontWeight: _coreTokens["default"].type_regular,
|
|
308
|
+
optionFontColor: _coreTokens["default"].color_black,
|
|
480
309
|
optionIconSize: "20px",
|
|
481
310
|
optionIconSpacing: "10px",
|
|
482
|
-
optionIconColor:
|
|
311
|
+
optionIconColor: _coreTokens["default"].color_black,
|
|
483
312
|
optionPaddingTop: "6px",
|
|
484
313
|
optionPaddingBottom: "6px",
|
|
485
314
|
optionPaddingLeft: "16px",
|
|
486
315
|
optionPaddingRight: "16px",
|
|
487
316
|
caretIconSize: "24px",
|
|
488
|
-
caretIconColor:
|
|
317
|
+
caretIconColor: _coreTokens["default"].color_black,
|
|
489
318
|
caretIconSpacing: "12px",
|
|
490
319
|
borderRadius: "4px",
|
|
491
|
-
borderStyle: "
|
|
492
|
-
borderThickness: "
|
|
493
|
-
borderColor:
|
|
494
|
-
scrollBarThumbColor:
|
|
495
|
-
scrollBarTrackColor:
|
|
496
|
-
focusColor:
|
|
320
|
+
borderStyle: _coreTokens["default"].border_none,
|
|
321
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
322
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
323
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_700,
|
|
324
|
+
scrollBarTrackColor: _coreTokens["default"].color_grey_300,
|
|
325
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
497
326
|
},
|
|
498
327
|
fileInput: {
|
|
499
|
-
dropBorderColor:
|
|
500
|
-
fileItemBorderColor:
|
|
501
|
-
fileNameFontColor:
|
|
502
|
-
labelFontColor:
|
|
503
|
-
helperTextFontColor:
|
|
504
|
-
dropLabelFontColor:
|
|
505
|
-
disabledLabelFontColor:
|
|
506
|
-
disabledHelperTextFontcolor:
|
|
507
|
-
disabledDropLabelFontColor:
|
|
508
|
-
focusDropBorderColor:
|
|
509
|
-
disabledDropBorderColor:
|
|
510
|
-
dragoverDropBackgroundColor:
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
328
|
+
dropBorderColor: _coreTokens["default"].color_black,
|
|
329
|
+
fileItemBorderColor: _coreTokens["default"].color_grey_300,
|
|
330
|
+
fileNameFontColor: _coreTokens["default"].color_black,
|
|
331
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
332
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
333
|
+
dropLabelFontColor: _coreTokens["default"].color_black,
|
|
334
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
335
|
+
disabledHelperTextFontcolor: _coreTokens["default"].color_grey_500,
|
|
336
|
+
disabledDropLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
337
|
+
focusDropBorderColor: _coreTokens["default"].color_blue_600,
|
|
338
|
+
disabledDropBorderColor: _coreTokens["default"].color_grey_500,
|
|
339
|
+
dragoverDropBackgroundColor: _coreTokens["default"].color_blue_50,
|
|
340
|
+
activeFileItemIconBackgrounColor: _coreTokens["default"].color_grey_300,
|
|
341
|
+
errorFileItemBorderColor: _coreTokens["default"].color_red_700,
|
|
342
|
+
errorFileItemBackgroundColor: _coreTokens["default"].color_red_50,
|
|
343
|
+
errorFilePreviewBackgroundColor: _coreTokens["default"].color_red_200,
|
|
344
|
+
errorFileItemIconColor: _coreTokens["default"].color_red_700,
|
|
345
|
+
fileItemIconBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
346
|
+
deleteFileItemColor: _coreTokens["default"].color_black,
|
|
347
|
+
errorMessageFontColor: _coreTokens["default"].color_red_700,
|
|
348
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
349
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
350
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
351
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
352
|
+
fileItemFontFamily: _coreTokens["default"].type_sans,
|
|
353
|
+
fileItemFontSize: _coreTokens["default"].type_scale_02,
|
|
354
|
+
fileItemFontWeight: _coreTokens["default"].type_regular,
|
|
355
|
+
fileItemLineHeight: _coreTokens["default"].type_leading_normal,
|
|
356
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
357
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
358
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
359
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
360
|
+
dropLabelFontFamily: _coreTokens["default"].type_sans,
|
|
361
|
+
dropLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
362
|
+
dropLabelFontWeight: _coreTokens["default"].type_regular,
|
|
363
|
+
errorMessageFontFamily: _coreTokens["default"].type_sans,
|
|
364
|
+
errorMessageFontSize: _coreTokens["default"].type_scale_01,
|
|
365
|
+
errorMessageFontWeight: _coreTokens["default"].type_regular,
|
|
366
|
+
errorMessageLineHeight: _coreTokens["default"].type_leading_normal,
|
|
367
|
+
dropBorderThickness: _coreTokens["default"].border_width_1,
|
|
368
|
+
dropBorderStyle: _coreTokens["default"].border_dashed,
|
|
369
|
+
dropBorderRadius: _coreTokens["default"].border_radius_large,
|
|
370
|
+
fileItemBorderThickness: _coreTokens["default"].border_width_1,
|
|
371
|
+
fileItemBorderStyle: _coreTokens["default"].border_solid,
|
|
372
|
+
fileItemBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
373
|
+
hoverDeleteFileItemBackgroundColor: _coreTokens["default"].color_grey_100_a,
|
|
374
|
+
activeDeleteFileItemBackgroundColor: _coreTokens["default"].color_grey_300_a,
|
|
375
|
+
focusDeleteFileItemBorderColor: _coreTokens["default"].color_blue_600,
|
|
376
|
+
filePreviewBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
377
|
+
filePreviewIconColor: _coreTokens["default"].color_grey_600,
|
|
378
|
+
errorFilePreviewIconColor: _coreTokens["default"].color_red_700
|
|
549
379
|
},
|
|
550
380
|
footer: {
|
|
551
381
|
height: "124px",
|
|
552
|
-
backgroundColor:
|
|
553
|
-
bottomLinksDividerColor:
|
|
382
|
+
backgroundColor: _coreTokens["default"].color_black,
|
|
383
|
+
bottomLinksDividerColor: _coreTokens["default"].color_blue_600,
|
|
554
384
|
bottomLinksDividerThickness: "1px",
|
|
555
|
-
bottomLinksDividerStyle: "
|
|
385
|
+
bottomLinksDividerStyle: _coreTokens["default"].border_solid,
|
|
556
386
|
bottomLinksDividerSpacing: "8px",
|
|
557
|
-
bottomLinksFontFamily:
|
|
558
|
-
bottomLinksFontSize:
|
|
559
|
-
bottomLinksFontStyle:
|
|
560
|
-
bottomLinksFontWeight:
|
|
561
|
-
bottomLinksFontColor:
|
|
562
|
-
bottomLinksTextDecoration:
|
|
563
|
-
copyrightFontFamily:
|
|
564
|
-
copyrightFontSize:
|
|
565
|
-
copyrightFontStyle:
|
|
566
|
-
copyrightFontWeight:
|
|
567
|
-
copyrightFontColor:
|
|
568
|
-
logo:
|
|
387
|
+
bottomLinksFontFamily: _coreTokens["default"].type_sans,
|
|
388
|
+
bottomLinksFontSize: _coreTokens["default"].type_scale_01,
|
|
389
|
+
bottomLinksFontStyle: _coreTokens["default"].type_normal,
|
|
390
|
+
bottomLinksFontWeight: _coreTokens["default"].type_regular,
|
|
391
|
+
bottomLinksFontColor: _coreTokens["default"].color_white,
|
|
392
|
+
bottomLinksTextDecoration: _coreTokens["default"].type_no_line,
|
|
393
|
+
copyrightFontFamily: _coreTokens["default"].type_sans,
|
|
394
|
+
copyrightFontSize: _coreTokens["default"].type_scale_01,
|
|
395
|
+
copyrightFontStyle: _coreTokens["default"].type_normal,
|
|
396
|
+
copyrightFontWeight: _coreTokens["default"].type_regular,
|
|
397
|
+
copyrightFontColor: _coreTokens["default"].color_white,
|
|
398
|
+
logo: "",
|
|
569
399
|
logoHeight: "32px",
|
|
570
400
|
logoWidth: "auto",
|
|
571
401
|
socialLinksSize: "24px",
|
|
572
402
|
socialLinksGutter: "16px",
|
|
573
|
-
socialLinksColor:
|
|
403
|
+
socialLinksColor: _coreTokens["default"].color_white
|
|
574
404
|
},
|
|
575
405
|
header: {
|
|
576
|
-
backgroundColor:
|
|
577
|
-
hamburguerFocusColor:
|
|
578
|
-
hamburguerFontFamily:
|
|
579
|
-
hamburguerFontStyle:
|
|
580
|
-
hamburguerFontColor:
|
|
406
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
407
|
+
hamburguerFocusColor: _coreTokens["default"].color_blue_600,
|
|
408
|
+
hamburguerFontFamily: _coreTokens["default"].type_sans,
|
|
409
|
+
hamburguerFontStyle: _coreTokens["default"].type_normal,
|
|
410
|
+
hamburguerFontColor: _coreTokens["default"].color_black,
|
|
581
411
|
hamburguerFontSize: "10px",
|
|
582
|
-
hamburguerFontWeight:
|
|
583
|
-
hamburguerTextTransform:
|
|
584
|
-
hamburguerIconColor:
|
|
585
|
-
hamburguerHoverColor:
|
|
586
|
-
logo:
|
|
587
|
-
logoResponsive:
|
|
412
|
+
hamburguerFontWeight: _coreTokens["default"].type_semibold,
|
|
413
|
+
hamburguerTextTransform: _coreTokens["default"].type_uppercase,
|
|
414
|
+
hamburguerIconColor: _coreTokens["default"].color_black,
|
|
415
|
+
hamburguerHoverColor: _coreTokens["default"].color_grey_200,
|
|
416
|
+
logo: "",
|
|
417
|
+
logoResponsive: "",
|
|
588
418
|
logoHeight: "40px",
|
|
589
419
|
logoWidth: "auto",
|
|
590
|
-
menuBackgroundColor:
|
|
420
|
+
menuBackgroundColor: _coreTokens["default"].color_white,
|
|
591
421
|
menuZindex: "2000",
|
|
592
422
|
menuTabletWidth: "60vw",
|
|
593
423
|
menuMobileWidth: "100vw",
|
|
594
424
|
minHeight: "64px",
|
|
595
|
-
overlayColor:
|
|
425
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
596
426
|
overlayOpacity: "0.7",
|
|
597
427
|
overlayZindex: "1600",
|
|
598
428
|
paddingTop: "0px",
|
|
599
429
|
paddingBottom: "0px",
|
|
600
430
|
paddingRight: "24px",
|
|
601
431
|
paddingLeft: "24px",
|
|
602
|
-
underlinedColor:
|
|
432
|
+
underlinedColor: _coreTokens["default"].color_black,
|
|
603
433
|
underlinedThickness: "2px",
|
|
604
|
-
underlinedStyle: "
|
|
605
|
-
contentColor:
|
|
606
|
-
contentColorOnDark: globalTokens.hal_white
|
|
434
|
+
underlinedStyle: _coreTokens["default"].border_solid,
|
|
435
|
+
contentColor: _coreTokens["default"].color_black
|
|
607
436
|
},
|
|
608
437
|
heading: {
|
|
609
|
-
level1FontColor:
|
|
610
|
-
level1FontFamily:
|
|
611
|
-
level1FontSize:
|
|
612
|
-
level1FontStyle:
|
|
613
|
-
level1FontWeight:
|
|
614
|
-
level1LineHeight:
|
|
615
|
-
level1LetterSpacing:
|
|
616
|
-
level2FontColor:
|
|
617
|
-
level2FontFamily:
|
|
618
|
-
level2FontSize:
|
|
619
|
-
level2FontStyle:
|
|
620
|
-
level2FontWeight:
|
|
621
|
-
level2LineHeight:
|
|
622
|
-
level2LetterSpacing:
|
|
623
|
-
level3FontColor:
|
|
624
|
-
level3FontFamily:
|
|
625
|
-
level3FontSize:
|
|
626
|
-
level3FontStyle:
|
|
627
|
-
level3FontWeight:
|
|
628
|
-
level3LineHeight:
|
|
629
|
-
level3LetterSpacing:
|
|
630
|
-
level4FontColor:
|
|
631
|
-
level4FontFamily:
|
|
632
|
-
level4FontSize:
|
|
633
|
-
level4FontStyle:
|
|
634
|
-
level4FontWeight:
|
|
635
|
-
level4LineHeight:
|
|
636
|
-
level4LetterSpacing:
|
|
637
|
-
level5FontColor:
|
|
638
|
-
level5FontFamily:
|
|
639
|
-
level5FontSize:
|
|
640
|
-
level5FontStyle:
|
|
641
|
-
level5FontWeight:
|
|
642
|
-
level5LineHeight:
|
|
643
|
-
level5LetterSpacing:
|
|
644
|
-
},
|
|
645
|
-
inputText: {
|
|
646
|
-
fontFamily: globalTokens.type_sans,
|
|
647
|
-
assistiveTextFontColor: globalTokens.black,
|
|
648
|
-
assistiveTextFontColorOnDark: globalTokens.white,
|
|
649
|
-
assistiveTextFontSize: globalTokens.type_scale_01,
|
|
650
|
-
assistiveTextFontStyle: globalTokens.type_normal,
|
|
651
|
-
assistiveTextFontWeight: globalTokens.type_regular,
|
|
652
|
-
disabledColor: globalTokens.lighterBlack,
|
|
653
|
-
disabledColorOnDark: "#575757",
|
|
654
|
-
errorColor: globalTokens.red,
|
|
655
|
-
errorColorOnDark: globalTokens.hal_red_l_60,
|
|
656
|
-
optionBackgroundColor: globalTokens.white,
|
|
657
|
-
optionBorderColor: globalTokens.black,
|
|
658
|
-
optionBorderThickness: "0px",
|
|
659
|
-
optionBorderStyle: "solid",
|
|
660
|
-
optionFontColor: globalTokens.black,
|
|
661
|
-
optionFontColorOnDark: globalTokens.white,
|
|
662
|
-
optionFontSize: globalTokens.type_scale_03,
|
|
663
|
-
optionFontStyle: globalTokens.type_normal,
|
|
664
|
-
optionFontWeight: globalTokens.type_regular,
|
|
665
|
-
optionPaddingBottom: "6px",
|
|
666
|
-
optionPaddingTop: "6px",
|
|
667
|
-
scrollBarThumbColor: globalTokens.darkGrey,
|
|
668
|
-
scrollBarTrackColor: globalTokens.lightGrey,
|
|
669
|
-
hoverOptionColor: globalTokens.black,
|
|
670
|
-
hoverOptionBackgroundColor: globalTokens.lightWhite,
|
|
671
|
-
hoverOptionBackgroundColorOnDark: globalTokens.mediumGrey,
|
|
672
|
-
selectedOptionBackgroundColor: globalTokens.lightGrey,
|
|
673
|
-
selectedOptionBackgroundColorOnDark: globalTokens.lightGrey,
|
|
674
|
-
labelFontColor: globalTokens.black,
|
|
675
|
-
labelFontColorOnDark: globalTokens.white,
|
|
676
|
-
labelFontSize: globalTokens.type_scale_03,
|
|
677
|
-
labelFontStyle: globalTokens.type_normal,
|
|
678
|
-
labelFontWeight: globalTokens.type_regular,
|
|
679
|
-
valueFontColor: globalTokens.black,
|
|
680
|
-
valueFontColorOnDark: globalTokens.white,
|
|
681
|
-
valueFontSize: globalTokens.type_scale_03,
|
|
682
|
-
valueFontStyle: globalTokens.type_normal,
|
|
683
|
-
valueFontWeight: globalTokens.type_regular,
|
|
684
|
-
prefixIconColor: globalTokens.black,
|
|
685
|
-
prefixIconColorOnDark: globalTokens.white,
|
|
686
|
-
prefixLabelFontColor: globalTokens.black,
|
|
687
|
-
prefixLabelFontColorOnDark: globalTokens.white,
|
|
688
|
-
prefixLabelFontSize: globalTokens.type_scale_03,
|
|
689
|
-
prefixLabelFontStyle: globalTokens.type_normal,
|
|
690
|
-
prefixLabelFontWeight: globalTokens.type_regular,
|
|
691
|
-
suffixIconColor: globalTokens.black,
|
|
692
|
-
suffixIconColorOnDark: globalTokens.white,
|
|
693
|
-
suffixLabelFontColor: globalTokens.black,
|
|
694
|
-
suffixLabelFontColorOnDark: globalTokens.white,
|
|
695
|
-
suffixLabelFontSize: globalTokens.type_scale_03,
|
|
696
|
-
suffixLabelFontStyle: globalTokens.type_normal,
|
|
697
|
-
suffixLabelFontWeight: globalTokens.type_regular,
|
|
698
|
-
underlineColor: globalTokens.black,
|
|
699
|
-
underlineColorOnDark: globalTokens.white,
|
|
700
|
-
underlineFocusColor: globalTokens.black,
|
|
701
|
-
underlineFocusColorOnDark: globalTokens.white,
|
|
702
|
-
underlineThickness: "1px"
|
|
438
|
+
level1FontColor: _coreTokens["default"].inherit,
|
|
439
|
+
level1FontFamily: _coreTokens["default"].type_sans,
|
|
440
|
+
level1FontSize: _coreTokens["default"].type_scale_07,
|
|
441
|
+
level1FontStyle: _coreTokens["default"].type_normal,
|
|
442
|
+
level1FontWeight: _coreTokens["default"].type_semibold,
|
|
443
|
+
level1LineHeight: _coreTokens["default"].type_leading_compact_01,
|
|
444
|
+
level1LetterSpacing: _coreTokens["default"].type_spacing_tight_01,
|
|
445
|
+
level2FontColor: _coreTokens["default"].inherit,
|
|
446
|
+
level2FontFamily: _coreTokens["default"].type_sans,
|
|
447
|
+
level2FontSize: _coreTokens["default"].type_scale_05,
|
|
448
|
+
level2FontStyle: _coreTokens["default"].type_normal,
|
|
449
|
+
level2FontWeight: _coreTokens["default"].type_semibold,
|
|
450
|
+
level2LineHeight: _coreTokens["default"].type_leading_normal,
|
|
451
|
+
level2LetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
452
|
+
level3FontColor: _coreTokens["default"].inherit,
|
|
453
|
+
level3FontFamily: _coreTokens["default"].type_sans,
|
|
454
|
+
level3FontSize: _coreTokens["default"].type_scale_04,
|
|
455
|
+
level3FontStyle: _coreTokens["default"].type_normal,
|
|
456
|
+
level3FontWeight: _coreTokens["default"].type_semibold,
|
|
457
|
+
level3LineHeight: _coreTokens["default"].type_leading_compact_01,
|
|
458
|
+
level3LetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
459
|
+
level4FontColor: _coreTokens["default"].inherit,
|
|
460
|
+
level4FontFamily: _coreTokens["default"].type_sans,
|
|
461
|
+
level4FontSize: _coreTokens["default"].type_scale_03,
|
|
462
|
+
level4FontStyle: _coreTokens["default"].type_normal,
|
|
463
|
+
level4FontWeight: _coreTokens["default"].type_semibold,
|
|
464
|
+
level4LineHeight: _coreTokens["default"].type_leading_normal,
|
|
465
|
+
level4LetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
466
|
+
level5FontColor: _coreTokens["default"].inherit,
|
|
467
|
+
level5FontFamily: _coreTokens["default"].type_sans,
|
|
468
|
+
level5FontSize: _coreTokens["default"].type_scale_02,
|
|
469
|
+
level5FontStyle: _coreTokens["default"].type_normal,
|
|
470
|
+
level5FontWeight: _coreTokens["default"].type_semibold,
|
|
471
|
+
level5LineHeight: _coreTokens["default"].type_leading_normal,
|
|
472
|
+
level5LetterSpacing: _coreTokens["default"].type_spacing_wide_01
|
|
703
473
|
},
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
focusBorderColorOnDark: globalTokens.hal_blue_l_50,
|
|
712
|
-
disabledBorderColor: globalTokens.hal_grey_l_60,
|
|
713
|
-
disabledBorderColorOnDark: globalTokens.hal_grey_l_60,
|
|
714
|
-
disabledContainerFillColor: globalTokens.hal_grey_l_95,
|
|
715
|
-
disabledContainerFillColorOnDark: globalTokens.hal_grey_s_40,
|
|
716
|
-
errorBorderColor: globalTokens.hal_red_s_41,
|
|
717
|
-
errorBorderColorOnDark: globalTokens.hal_red_l_60,
|
|
718
|
-
hoverErrorBorderColor: globalTokens.color_red_600,
|
|
719
|
-
hoverErrorBorderColorOnDark: "#fe677b",
|
|
720
|
-
inputMarginTop: globalTokens.spacing_02,
|
|
721
|
-
inputMarginBottom: globalTokens.spacing_02,
|
|
722
|
-
errorMessageColor: globalTokens.hal_red_s_41,
|
|
723
|
-
errorMessageColorOnDark: globalTokens.hal_red_l_60,
|
|
724
|
-
errorIconColor: globalTokens.hal_red_s_41,
|
|
725
|
-
errorIconColorOnDark: globalTokens.hal_red_l_60,
|
|
726
|
-
labelFontColor: globalTokens.hal_black,
|
|
727
|
-
labelFontColorOnDark: globalTokens.hal_white,
|
|
728
|
-
labelFontSize: globalTokens.type_scale_02,
|
|
729
|
-
labelFontStyle: globalTokens.type_normal,
|
|
730
|
-
labelFontWeight: globalTokens.type_semibold,
|
|
731
|
-
labelLineHeight: globalTokens.type_leading_loose_01,
|
|
732
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
733
|
-
disabledLabelFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
734
|
-
optionalLabelFontWeight: globalTokens.type_regular,
|
|
735
|
-
helperTextFontColor: globalTokens.hal_black,
|
|
736
|
-
helperTextFontColorOnDark: globalTokens.hal_white,
|
|
737
|
-
helperTextFontSize: globalTokens.type_scale_01,
|
|
738
|
-
helperTextFontStyle: globalTokens.type_normal,
|
|
739
|
-
helperTextFontWeight: globalTokens.type_regular,
|
|
740
|
-
helperTextLineHeight: globalTokens.type_leading_normal,
|
|
741
|
-
disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
|
|
742
|
-
disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
743
|
-
prefixColor: globalTokens.hal_grey_s_40,
|
|
744
|
-
prefixColorOnDark: globalTokens.hal_white,
|
|
745
|
-
suffixColor: globalTokens.hal_grey_s_40,
|
|
746
|
-
suffixColorOnDark: globalTokens.hal_white,
|
|
747
|
-
disabledPrefixColor: globalTokens.hal_grey_l_75,
|
|
748
|
-
disabledSuffixColor: globalTokens.hal_grey_l_75,
|
|
749
|
-
disabledPrefixColorOnDark: globalTokens.hal_grey_l_60,
|
|
750
|
-
disabledSuffixColorOnDark: globalTokens.hal_grey_l_60,
|
|
751
|
-
placeholderFontColor: "#000000b3",
|
|
752
|
-
placeholderFontColorOnDark: globalTokens.hal_grey_l_95,
|
|
753
|
-
disabledPlaceholderFontColor: globalTokens.hal_grey_l_60,
|
|
754
|
-
disabledPlaceholderFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
755
|
-
valueFontColor: globalTokens.hal_black,
|
|
756
|
-
valueFontColorOnDark: globalTokens.hal_white,
|
|
757
|
-
valueFontSize: globalTokens.type_scale_03,
|
|
758
|
-
valueFontStyle: globalTokens.type_normal,
|
|
759
|
-
valueFontWeight: globalTokens.type_regular,
|
|
760
|
-
disabledValueFontColor: globalTokens.hal_grey_l_60,
|
|
761
|
-
disabledValueFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
762
|
-
actionIconColor: globalTokens.hal_black,
|
|
763
|
-
actionIconColorOnDark: globalTokens.hal_white,
|
|
764
|
-
disabledActionIconColor: globalTokens.hal_grey_l_60,
|
|
765
|
-
disabledActionIconColorOnDark: globalTokens.hal_grey_l_60,
|
|
766
|
-
hoverActionIconColor: globalTokens.hal_black,
|
|
767
|
-
hoverActionIconColorOnDark: globalTokens.hal_white,
|
|
768
|
-
focusActionIconColor: globalTokens.hal_black,
|
|
769
|
-
focusActionIconColorOnDark: globalTokens.hal_white,
|
|
770
|
-
activeActionIconColor: globalTokens.hal_black,
|
|
771
|
-
activeActionIconColorOnDark: globalTokens.hal_black,
|
|
772
|
-
actionBackgroundColor: globalTokens.transparent,
|
|
773
|
-
actionBackgroundColorOnDark: globalTokens.transparent,
|
|
774
|
-
disabledActionBackgroundColor: globalTokens.transparent,
|
|
775
|
-
disabledActionBackgroundColorOnDark: globalTokens.transparent,
|
|
776
|
-
hoverActionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
777
|
-
hoverActionBackgroundColorOnDark: globalTokens.hal_grey_s_40,
|
|
778
|
-
focusActionBorderColor: globalTokens.hal_blue_l_50,
|
|
779
|
-
focusActionBorderColorOnDark: globalTokens.hal_blue_l_50,
|
|
780
|
-
activeActionBackgroundColor: globalTokens.hal_grey_l_80,
|
|
781
|
-
activeActionBackgroundColorOnDark: globalTokens.hal_grey_l_60,
|
|
782
|
-
listDialogBackgroundColor: globalTokens.hal_white,
|
|
783
|
-
listDialogBorderColor: globalTokens.hal_grey_l_75,
|
|
784
|
-
listOptionDividerColor: globalTokens.hal_grey_l_90,
|
|
785
|
-
listOptionFontColor: globalTokens.hal_black,
|
|
786
|
-
listOptionFontSize: globalTokens.type_scale_02,
|
|
787
|
-
listOptionFontStyle: globalTokens.type_normal,
|
|
788
|
-
listOptionFontWeight: globalTokens.type_regular,
|
|
789
|
-
systemMessageFontColor: globalTokens.hal_grey_s_40,
|
|
790
|
-
errorListDialogFontColor: globalTokens.hal_black,
|
|
791
|
-
errorListDialogBackgroundColor: globalTokens.color_red_50,
|
|
792
|
-
errorListDialogBorderColor: globalTokens.hal_red_s_41,
|
|
793
|
-
hoverListOptionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
794
|
-
activeListOptionBackgroundColor: globalTokens.hal_grey_l_80,
|
|
795
|
-
focusListOptionBorderColor: globalTokens.hal_blue_l_50
|
|
474
|
+
image: {
|
|
475
|
+
captionFontColor: _coreTokens["default"].color_grey_900,
|
|
476
|
+
captionFontFamily: _coreTokens["default"].type_sans,
|
|
477
|
+
captionFontSize: _coreTokens["default"].type_scale_02,
|
|
478
|
+
captionFontStyle: _coreTokens["default"].type_normal,
|
|
479
|
+
captionFontWeight: _coreTokens["default"].type_regular,
|
|
480
|
+
captionLineHeight: _coreTokens["default"].type_leading_normal
|
|
796
481
|
},
|
|
797
482
|
link: {
|
|
798
|
-
fontColor:
|
|
799
|
-
fontFamily:
|
|
800
|
-
fontSize:
|
|
801
|
-
fontStyle:
|
|
802
|
-
fontWeight:
|
|
483
|
+
fontColor: _coreTokens["default"].color_blue_800,
|
|
484
|
+
fontFamily: _coreTokens["default"].inherit,
|
|
485
|
+
fontSize: _coreTokens["default"].inherit,
|
|
486
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
487
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
803
488
|
iconSize: "16px",
|
|
804
489
|
iconSpacing: "4px",
|
|
805
490
|
underlineSpacing: "0px",
|
|
806
|
-
underlineStyle: "
|
|
491
|
+
underlineStyle: _coreTokens["default"].border_solid,
|
|
807
492
|
underlineThickness: "1px",
|
|
808
|
-
|
|
809
|
-
hoverFontColor:
|
|
810
|
-
hoverUnderlineColor:
|
|
811
|
-
visitedFontColor:
|
|
812
|
-
visitedUnderlineColor:
|
|
813
|
-
activeFontColor:
|
|
814
|
-
activeUnderlineColor:
|
|
815
|
-
focusColor:
|
|
493
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
494
|
+
hoverFontColor: _coreTokens["default"].color_blue_800,
|
|
495
|
+
hoverUnderlineColor: _coreTokens["default"].color_blue_800,
|
|
496
|
+
visitedFontColor: _coreTokens["default"].color_purple_700,
|
|
497
|
+
visitedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
498
|
+
activeFontColor: _coreTokens["default"].color_black,
|
|
499
|
+
activeUnderlineColor: _coreTokens["default"].color_black,
|
|
500
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
501
|
+
},
|
|
502
|
+
navTabs: {
|
|
503
|
+
selectedBackgroundColor: _coreTokens["default"].color_white,
|
|
504
|
+
unselectedBackgroundColor: _coreTokens["default"].color_white,
|
|
505
|
+
hoverBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
506
|
+
pressedBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
507
|
+
selectedFontColor: _coreTokens["default"].color_grey_700,
|
|
508
|
+
unselectedFontColor: _coreTokens["default"].color_grey_700,
|
|
509
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
510
|
+
focusOutline: _coreTokens["default"].color_blue_600,
|
|
511
|
+
selectedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
512
|
+
dividerColor: _coreTokens["default"].color_grey_400,
|
|
513
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
514
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
515
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
516
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
517
|
+
selectedIconColor: _coreTokens["default"].color_grey_700,
|
|
518
|
+
unselectedIconColor: _coreTokens["default"].color_grey_700,
|
|
519
|
+
disabledIconColor: _coreTokens["default"].color_grey_500
|
|
816
520
|
},
|
|
817
521
|
paginator: {
|
|
818
|
-
backgroundColor:
|
|
819
|
-
fontColor:
|
|
820
|
-
fontFamily:
|
|
821
|
-
fontSize:
|
|
822
|
-
fontStyle:
|
|
823
|
-
fontWeight:
|
|
522
|
+
backgroundColor: _coreTokens["default"].color_grey_100,
|
|
523
|
+
fontColor: _coreTokens["default"].color_black,
|
|
524
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
525
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
526
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
527
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
824
528
|
fontTextTransform: "none",
|
|
825
|
-
|
|
826
|
-
|
|
529
|
+
verticalPadding: "0.75rem",
|
|
530
|
+
horizontalPadding: "2rem",
|
|
827
531
|
marginRight: "40px",
|
|
828
532
|
marginLeft: "20px",
|
|
829
533
|
itemsPerPageSelectorMarginLeft: "0px",
|
|
830
|
-
itemsPerPageSelectorMarginRight: "
|
|
534
|
+
itemsPerPageSelectorMarginRight: "0.5rem",
|
|
831
535
|
pageSelectorMarginRight: "30px",
|
|
832
536
|
pageSelectorMarginLeft: "0px",
|
|
833
|
-
totalItemsContainerMarginRight: "
|
|
537
|
+
totalItemsContainerMarginRight: "2.5rem",
|
|
834
538
|
totalItemsContainerMarginLeft: "0px"
|
|
835
539
|
},
|
|
540
|
+
paragraph: {
|
|
541
|
+
fontColor: _coreTokens["default"].color_black,
|
|
542
|
+
display: "block",
|
|
543
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
544
|
+
fontWeight: _coreTokens["default"].type_regular
|
|
545
|
+
},
|
|
836
546
|
progressBar: {
|
|
837
|
-
trackLineColor:
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
helperTextFontSize: globalTokens.type_scale_01,
|
|
857
|
-
helperTextFontStyle: globalTokens.type_normal,
|
|
858
|
-
helperTextFontWeight: globalTokens.type_regular,
|
|
859
|
-
helperTextFontFamily: globalTokens.type_sans,
|
|
547
|
+
trackLineColor: _coreTokens["default"].color_purple_700,
|
|
548
|
+
totalLineColor: _coreTokens["default"].color_grey_200,
|
|
549
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
550
|
+
labelFontSize: _coreTokens["default"].type_scale_01,
|
|
551
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
552
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
553
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
554
|
+
labelFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
555
|
+
valueFontFamily: _coreTokens["default"].type_sans,
|
|
556
|
+
valueFontSize: _coreTokens["default"].type_scale_01,
|
|
557
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
558
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
559
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
560
|
+
valueFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
561
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
562
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
563
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
564
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
565
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
860
566
|
thickness: "9px",
|
|
861
567
|
borderRadius: "5px",
|
|
862
|
-
overlayColor:
|
|
863
|
-
|
|
568
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
569
|
+
overlayFontColor: _coreTokens["default"].color_white
|
|
864
570
|
},
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
fontWeight: globalTokens.type_regular
|
|
571
|
+
quickNav: {
|
|
572
|
+
fontColor: _coreTokens["default"].color_grey_700,
|
|
573
|
+
hoverFontColor: _coreTokens["default"].color_purple_600,
|
|
574
|
+
dividerBorderColor: _coreTokens["default"].color_grey_400,
|
|
575
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
576
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
577
|
+
focusBorderThickness: _coreTokens["default"].border_width_2,
|
|
578
|
+
focusBorderRadius: _coreTokens["default"].border_width_2,
|
|
579
|
+
paddingTop: _coreTokens["default"].spacing_8,
|
|
580
|
+
paddingBottom: _coreTokens["default"].spacing_8,
|
|
581
|
+
paddingLeft: _coreTokens["default"].spacing_16,
|
|
582
|
+
paddingRight: _coreTokens["default"].spacing_16,
|
|
583
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
584
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
585
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
586
|
+
fontWeight: _coreTokens["default"].type_regular
|
|
882
587
|
},
|
|
883
|
-
|
|
884
|
-
fontFamily:
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
listOptionFontSize: globalTokens.type_scale_02,
|
|
921
|
-
listOptionFontStyle: globalTokens.type_normal,
|
|
922
|
-
listOptionFontWeight: globalTokens.type_regular,
|
|
923
|
-
listOptionIconColor: globalTokens.hal_black,
|
|
924
|
-
listOptionDividerColor: globalTokens.hal_grey_l_90,
|
|
925
|
-
listGroupLabelFontWeight: globalTokens.type_semibold,
|
|
926
|
-
focusListOptionBorderColor: globalTokens.hal_blue_l_50,
|
|
927
|
-
systemMessageFontColor: globalTokens.hal_grey_s_40,
|
|
928
|
-
collapseIndicatorColor: globalTokens.hal_black,
|
|
929
|
-
listDialogBackgroundColor: globalTokens.hal_white,
|
|
930
|
-
listDialogBorderColor: globalTokens.hal_grey_l_75,
|
|
931
|
-
selectedListOptionBackgroundColor: globalTokens.hal_blue_l_95,
|
|
932
|
-
selectedHoverListOptionBackgroundColor: globalTokens.color_blue_200,
|
|
933
|
-
selectedActiveListOptionBackgroundColor: globalTokens.hal_blue_l_80,
|
|
934
|
-
selectedListOptionIconColor: globalTokens.hal_blue_d_20,
|
|
935
|
-
unselectedHoverListOptionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
936
|
-
unselectedActiveListOptionBackgroundColor: globalTokens.hal_grey_l_90,
|
|
937
|
-
selectionIndicatorFontColor: globalTokens.hal_black,
|
|
938
|
-
selectionIndicatorFontSize: globalTokens.type_scale_01,
|
|
939
|
-
selectionIndicatorFontStyle: globalTokens.type_regular,
|
|
940
|
-
selectionIndicatorFontWeight: globalTokens.type_normal,
|
|
941
|
-
selectionIndicatorBorderColor: globalTokens.hal_grey_l_75,
|
|
942
|
-
selectionIndicatorBackgroundColor: globalTokens.color_grey_50,
|
|
943
|
-
enabledSelectionIndicatorActionBackgroundColor: globalTokens.transparent,
|
|
944
|
-
enabledSelectionIndicatorActionIconColor: globalTokens.hal_black,
|
|
945
|
-
hoverSelectionIndicatorActionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
946
|
-
hoverSelectionIndicatorActionIconColor: globalTokens.hal_black,
|
|
947
|
-
activeSelectionIndicatorActionBackgroundColor: globalTokens.hal_grey_l_80,
|
|
948
|
-
activeSelectionIndicatorActionIconColor: globalTokens.hal_black
|
|
588
|
+
radioGroup: {
|
|
589
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
590
|
+
radioInputColor: _coreTokens["default"].color_blue_700,
|
|
591
|
+
hoverRadioInputColor: _coreTokens["default"].color_blue_800,
|
|
592
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
593
|
+
activeRadioInputColor: _coreTokens["default"].color_blue_900,
|
|
594
|
+
errorRadioInputColor: _coreTokens["default"].color_red_700,
|
|
595
|
+
hoverErrorRadioInputColor: _coreTokens["default"].color_red_800,
|
|
596
|
+
activeErrorRadioInputColor: _coreTokens["default"].color_red_900,
|
|
597
|
+
readOnlyRadioInputColor: _coreTokens["default"].color_grey_500,
|
|
598
|
+
hoverReadOnlyRadioInputColor: _coreTokens["default"].color_grey_600,
|
|
599
|
+
activeReadOnlyRadioInputColor: _coreTokens["default"].color_grey_700,
|
|
600
|
+
disabledRadioInputColor: _coreTokens["default"].color_grey_500,
|
|
601
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
602
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
603
|
+
disabledRadioInputLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
604
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
605
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
606
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
607
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
608
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
609
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
610
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
611
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
612
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
613
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
614
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
615
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
616
|
+
radioInputLabelFontColor: _coreTokens["default"].color_black,
|
|
617
|
+
radioInputLabelFontSize: _coreTokens["default"].type_scale_02,
|
|
618
|
+
radioInputLabelFontStyle: _coreTokens["default"].type_normal,
|
|
619
|
+
radioInputLabelFontWeight: _coreTokens["default"].type_regular,
|
|
620
|
+
radioInputLabelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
621
|
+
groupLabelMargin: _coreTokens["default"].spacing_8,
|
|
622
|
+
radioInputLabelMargin: _coreTokens["default"].spacing_8,
|
|
623
|
+
groupVerticalGutter: _coreTokens["default"].spacing_4,
|
|
624
|
+
groupHorizontalGutter: _coreTokens["default"].spacing_32
|
|
949
625
|
},
|
|
950
|
-
|
|
951
|
-
fontFamily:
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
626
|
+
select: {
|
|
627
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
628
|
+
disabledColor: _coreTokens["default"].color_grey_500,
|
|
629
|
+
enabledInputBorderColor: _coreTokens["default"].color_black,
|
|
630
|
+
hoverInputBorderColor: _coreTokens["default"].color_purple_500,
|
|
631
|
+
focusInputBorderColor: _coreTokens["default"].color_blue_600,
|
|
632
|
+
errorInputBorderColor: _coreTokens["default"].color_red_700,
|
|
633
|
+
hoverInputErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
634
|
+
disabledInputBorderColor: _coreTokens["default"].color_grey_500,
|
|
635
|
+
disabledInputBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
636
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
637
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
638
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
639
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
640
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
641
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
642
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
643
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
644
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
645
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
646
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
647
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
648
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
649
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
650
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
651
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
652
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
653
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
654
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
655
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
656
|
+
actionIconColor: _coreTokens["default"].color_black,
|
|
657
|
+
hoverActionIconColor: _coreTokens["default"].color_black,
|
|
658
|
+
activeActionIconColor: _coreTokens["default"].color_black,
|
|
659
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
660
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
661
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
662
|
+
listOptionFontColor: _coreTokens["default"].color_black,
|
|
663
|
+
listOptionFontSize: _coreTokens["default"].type_scale_02,
|
|
664
|
+
listOptionFontStyle: _coreTokens["default"].type_normal,
|
|
665
|
+
listOptionFontWeight: _coreTokens["default"].type_regular,
|
|
666
|
+
listOptionIconColor: _coreTokens["default"].color_black,
|
|
667
|
+
listOptionDividerColor: _coreTokens["default"].color_grey_200,
|
|
668
|
+
listGroupLabelFontWeight: _coreTokens["default"].type_semibold,
|
|
669
|
+
focusListOptionBorderColor: _coreTokens["default"].color_blue_600,
|
|
670
|
+
systemMessageFontColor: _coreTokens["default"].color_grey_700,
|
|
671
|
+
collapseIndicatorColor: _coreTokens["default"].color_black,
|
|
672
|
+
listDialogBackgroundColor: _coreTokens["default"].color_white,
|
|
673
|
+
listDialogBorderColor: _coreTokens["default"].color_grey_400,
|
|
674
|
+
selectedListOptionBackgroundColor: _coreTokens["default"].color_blue_100,
|
|
675
|
+
selectedHoverListOptionBackgroundColor: _coreTokens["default"].color_blue_200,
|
|
676
|
+
selectedActiveListOptionBackgroundColor: _coreTokens["default"].color_blue_300,
|
|
677
|
+
selectedListOptionIconColor: _coreTokens["default"].color_blue_900,
|
|
678
|
+
unselectedHoverListOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
679
|
+
unselectedActiveListOptionBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
680
|
+
selectionIndicatorFontColor: _coreTokens["default"].color_black,
|
|
681
|
+
selectionIndicatorFontSize: _coreTokens["default"].type_scale_01,
|
|
682
|
+
selectionIndicatorFontStyle: _coreTokens["default"].type_regular,
|
|
683
|
+
selectionIndicatorFontWeight: _coreTokens["default"].type_normal,
|
|
684
|
+
selectionIndicatorBorderColor: _coreTokens["default"].color_grey_400,
|
|
685
|
+
selectionIndicatorBackgroundColor: _coreTokens["default"].color_grey_50,
|
|
686
|
+
enabledSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
687
|
+
enabledSelectionIndicatorActionIconColor: _coreTokens["default"].color_black,
|
|
688
|
+
hoverSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
689
|
+
hoverSelectionIndicatorActionIconColor: _coreTokens["default"].color_black,
|
|
690
|
+
activeSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
691
|
+
activeSelectionIndicatorActionIconColor: _coreTokens["default"].color_black
|
|
1008
692
|
},
|
|
1009
693
|
sidenav: {
|
|
1010
|
-
backgroundColor:
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
titleFontWeight: globalTokens.type_regular,
|
|
1017
|
-
titleFontColor: globalTokens.hal_black,
|
|
694
|
+
backgroundColor: _coreTokens["default"].color_grey_100,
|
|
695
|
+
titleFontFamily: _coreTokens["default"].type_sans,
|
|
696
|
+
titleFontSize: _coreTokens["default"].type_scale_04,
|
|
697
|
+
titleFontStyle: _coreTokens["default"].type_normal,
|
|
698
|
+
titleFontWeight: _coreTokens["default"].type_semibold,
|
|
699
|
+
titleFontColor: _coreTokens["default"].color_grey_800,
|
|
1018
700
|
titleFontTextTransform: "none",
|
|
1019
|
-
titleFontLetterSpacing:
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
701
|
+
titleFontLetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
702
|
+
groupTitleFontFamily: _coreTokens["default"].type_sans,
|
|
703
|
+
groupTitleFontSize: _coreTokens["default"].type_scale_02,
|
|
704
|
+
groupTitleFontStyle: _coreTokens["default"].type_normal,
|
|
705
|
+
groupTitleFontWeight: _coreTokens["default"].type_semibold,
|
|
706
|
+
groupTitleFontColor: _coreTokens["default"].color_black,
|
|
707
|
+
groupTitleHoverBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
708
|
+
groupTitleActiveBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
709
|
+
groupTitleSelectedFontColor: _coreTokens["default"].color_white,
|
|
710
|
+
groupTitleSelectedBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
711
|
+
groupTitleSelectedHoverFontColor: _coreTokens["default"].color_white,
|
|
712
|
+
groupTitleSelectedHoverBackgroundColor: _coreTokens["default"].color_grey_900,
|
|
713
|
+
groupTitleFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
714
|
+
groupTitleFontLetterSpacing: _coreTokens["default"].type_spacing_wide_02,
|
|
715
|
+
linkFontFamily: _coreTokens["default"].type_sans,
|
|
716
|
+
linkFontSize: _coreTokens["default"].type_scale_02,
|
|
717
|
+
linkFontStyle: _coreTokens["default"].type_normal,
|
|
718
|
+
linkFontWeight: _coreTokens["default"].type_regular,
|
|
719
|
+
linkFontColor: _coreTokens["default"].color_grey_800,
|
|
720
|
+
linkHoverBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
721
|
+
linkSelectedFontColor: _coreTokens["default"].color_white,
|
|
722
|
+
linkSelectedBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
723
|
+
linkSelectedHoverFontColor: _coreTokens["default"].color_white,
|
|
724
|
+
linkSelectedHoverBackgroundColor: _coreTokens["default"].color_grey_900,
|
|
1032
725
|
linkFontTextTransform: "none",
|
|
1033
|
-
linkFontLetterSpacing:
|
|
1034
|
-
linkTextDecoration:
|
|
726
|
+
linkFontLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
727
|
+
linkTextDecoration: _coreTokens["default"].type_no_line,
|
|
1035
728
|
linkMarginTop: "4px",
|
|
1036
729
|
linkMarginBottom: "4px",
|
|
1037
730
|
linkMarginRight: "16px",
|
|
1038
731
|
linkMarginLeft: "16px",
|
|
1039
|
-
linkFocusColor:
|
|
1040
|
-
scrollBarThumbColor: "
|
|
1041
|
-
scrollBarTrackColor:
|
|
732
|
+
linkFocusColor: _coreTokens["default"].color_blue_600,
|
|
733
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_200_a,
|
|
734
|
+
scrollBarTrackColor: _coreTokens["default"].color_transparent
|
|
1042
735
|
},
|
|
1043
736
|
slider: {
|
|
1044
|
-
fontFamily:
|
|
1045
|
-
limitValuesFontColor:
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
helperTextFontColor: globalTokens.hal_black,
|
|
1067
|
-
helperTextFontColorOnDark: globalTokens.hal_white,
|
|
1068
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
1069
|
-
disabledLabelFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
1070
|
-
disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
|
|
1071
|
-
disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
737
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
738
|
+
limitValuesFontColor: _coreTokens["default"].color_black,
|
|
739
|
+
limitValuesFontSize: _coreTokens["default"].type_scale_03,
|
|
740
|
+
limitValuesFontStyle: _coreTokens["default"].type_normal,
|
|
741
|
+
limitValuesFontWeight: _coreTokens["default"].type_regular,
|
|
742
|
+
limitValuesFontLetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
743
|
+
disabledLimitValuesFontColor: _coreTokens["default"].color_grey_500,
|
|
744
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
745
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
746
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
747
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
748
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
749
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
750
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
751
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
752
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
753
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
754
|
+
fontColor: _coreTokens["default"].color_black,
|
|
755
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
756
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
757
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
758
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
1072
759
|
thumbHeight: "12px",
|
|
1073
760
|
thumbWidth: "12px",
|
|
1074
761
|
hoverThumbHeight: "14px",
|
|
1075
762
|
hoverThumbWidth: "14px",
|
|
1076
763
|
thumbVerticalPosition: "12px",
|
|
1077
764
|
hoverThumbVerticalPosition: "11px",
|
|
1078
|
-
thumbBackgroundColor:
|
|
1079
|
-
thumbBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
765
|
+
thumbBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
1080
766
|
hoverThumbScale: "1.166666",
|
|
1081
|
-
hoverThumbBackgroundColor:
|
|
1082
|
-
hoverThumbBackgroundColorOnDark: globalTokens.hal_blue_d_20,
|
|
767
|
+
hoverThumbBackgroundColor: _coreTokens["default"].color_blue_900,
|
|
1083
768
|
activeThumbScale: "1.166666",
|
|
1084
|
-
activeThumbBackgroundColor:
|
|
1085
|
-
|
|
1086
|
-
focusThumbBackgroundColor: globalTokens.hal_blue_s_35,
|
|
1087
|
-
focusThumbBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
769
|
+
activeThumbBackgroundColor: _coreTokens["default"].color_blue_900,
|
|
770
|
+
focusThumbBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
1088
771
|
tickHeight: "4px",
|
|
1089
772
|
tickWidth: "4px",
|
|
1090
773
|
tickVerticalPosition: "11px",
|
|
1091
|
-
tickBackgroundColor:
|
|
1092
|
-
tickBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
774
|
+
tickBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
1093
775
|
trackLineThickness: "2px",
|
|
1094
776
|
trackLineVerticalPosition: "50%",
|
|
1095
|
-
trackLineColor:
|
|
1096
|
-
trackLineColorOnDark: globalTokens.hal_blue_l_50,
|
|
777
|
+
trackLineColor: _coreTokens["default"].color_blue_800,
|
|
1097
778
|
totalLineThickness: "2px",
|
|
1098
779
|
totalLineVerticalPosition: "50%",
|
|
1099
|
-
totalLineColor:
|
|
1100
|
-
totalLineColorOnDark: globalTokens.hal_grey_l_75,
|
|
780
|
+
totalLineColor: _coreTokens["default"].color_grey_200_a,
|
|
1101
781
|
disabledThumbVerticalPosition: "10px",
|
|
1102
|
-
disabledThumbBackgroundColor:
|
|
1103
|
-
disabledThumbBackgroundColorOnDark: "#575757",
|
|
782
|
+
disabledThumbBackgroundColor: _coreTokens["default"].color_grey_500,
|
|
1104
783
|
disabledTickVerticalPosition: "11px",
|
|
1105
|
-
disabledTickBackgroundColor:
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
focusColorOnDark: globalTokens.hal_blue_l_50,
|
|
1113
|
-
floorLabelMarginRight: globalTokens.type_scale_03,
|
|
1114
|
-
ceilLabelMarginLeft: globalTokens.type_scale_03,
|
|
1115
|
-
inputMarginLeft: globalTokens.type_scale_06
|
|
784
|
+
disabledTickBackgroundColor: _coreTokens["default"].color_grey_500,
|
|
785
|
+
disabledTrackLineColor: _coreTokens["default"].color_grey_500,
|
|
786
|
+
disabledTotalLineColor: _coreTokens["default"].color_grey_100,
|
|
787
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
788
|
+
floorLabelMarginRight: _coreTokens["default"].type_scale_03,
|
|
789
|
+
ceilLabelMarginLeft: _coreTokens["default"].type_scale_03,
|
|
790
|
+
inputMarginLeft: _coreTokens["default"].type_scale_06
|
|
1116
791
|
},
|
|
1117
792
|
spinner: {
|
|
1118
|
-
trackCircleColor: "
|
|
1119
|
-
|
|
1120
|
-
totalCircleColor:
|
|
1121
|
-
labelFontFamily:
|
|
1122
|
-
labelFontSize:
|
|
1123
|
-
labelFontStyle:
|
|
1124
|
-
labelFontWeight:
|
|
1125
|
-
labelFontColor:
|
|
1126
|
-
labelFontColorOnDark: globalTokens.white,
|
|
793
|
+
trackCircleColor: _coreTokens["default"].color_purple_700,
|
|
794
|
+
trackCircleColorOverlay: _coreTokens["default"].color_purple_500,
|
|
795
|
+
totalCircleColor: _coreTokens["default"].color_white,
|
|
796
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
797
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
798
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
799
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
800
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
1127
801
|
labelTextAlign: "center",
|
|
1128
|
-
progressValueFontFamily:
|
|
1129
|
-
progressValueFontSize:
|
|
1130
|
-
progressValueFontStyle:
|
|
1131
|
-
progressValueFontWeight:
|
|
1132
|
-
progressValueFontColor:
|
|
1133
|
-
progressValueFontColorOnDark: globalTokens.white,
|
|
802
|
+
progressValueFontFamily: _coreTokens["default"].type_sans,
|
|
803
|
+
progressValueFontSize: _coreTokens["default"].type_scale_02,
|
|
804
|
+
progressValueFontStyle: _coreTokens["default"].type_normal,
|
|
805
|
+
progressValueFontWeight: _coreTokens["default"].type_bold,
|
|
806
|
+
progressValueFontColor: _coreTokens["default"].inherit,
|
|
1134
807
|
progressValueTextAlign: "center",
|
|
1135
|
-
overlayBackgroundColor:
|
|
808
|
+
overlayBackgroundColor: _coreTokens["default"].color_black,
|
|
1136
809
|
overlayOpacity: "0.8",
|
|
1137
|
-
overlayLabelFontFamily:
|
|
1138
|
-
overlayLabelFontSize:
|
|
1139
|
-
overlayLabelFontStyle:
|
|
1140
|
-
overlayLabelFontWeight:
|
|
1141
|
-
overlayLabelFontColor:
|
|
810
|
+
overlayLabelFontFamily: _coreTokens["default"].type_sans,
|
|
811
|
+
overlayLabelFontSize: _coreTokens["default"].type_scale_02,
|
|
812
|
+
overlayLabelFontStyle: _coreTokens["default"].type_normal,
|
|
813
|
+
overlayLabelFontWeight: _coreTokens["default"].type_regular,
|
|
814
|
+
overlayLabelFontColor: _coreTokens["default"].color_white,
|
|
1142
815
|
overlayLabelTextAlign: "center",
|
|
1143
|
-
overlayProgressValueFontFamily:
|
|
1144
|
-
overlayProgressValueFontSize:
|
|
1145
|
-
overlayProgressValueFontStyle:
|
|
1146
|
-
overlayProgressValueFontWeight:
|
|
1147
|
-
overlayProgressValueFontColor:
|
|
816
|
+
overlayProgressValueFontFamily: _coreTokens["default"].type_sans,
|
|
817
|
+
overlayProgressValueFontSize: _coreTokens["default"].type_scale_02,
|
|
818
|
+
overlayProgressValueFontStyle: _coreTokens["default"].type_normal,
|
|
819
|
+
overlayProgressValueFontWeight: _coreTokens["default"].type_bold,
|
|
820
|
+
overlayProgressValueFontColor: _coreTokens["default"].color_white,
|
|
1148
821
|
overlayProgressValueTextAlign: "center"
|
|
1149
822
|
},
|
|
1150
823
|
"switch": {
|
|
1151
|
-
checkedTrackBackgroundColor:
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
1168
|
-
disabledLabelFontColorOnDark: "#575757",
|
|
1169
|
-
disabledLabelFontStyle: globalTokens.type_normal,
|
|
1170
|
-
labelFontFamily: globalTokens.type_sans,
|
|
1171
|
-
labelFontSize: globalTokens.type_scale_root,
|
|
1172
|
-
labelFontStyle: globalTokens.type_normal,
|
|
1173
|
-
labelFontWeight: globalTokens.type_regular,
|
|
1174
|
-
labelFontColor: globalTokens.hal_black,
|
|
1175
|
-
labelFontColorOnDark: globalTokens.hal_white,
|
|
1176
|
-
thumbFocusColor: globalTokens.hal_blue_l_50,
|
|
1177
|
-
thumbFocusColorOnDark: "#1682FF",
|
|
824
|
+
checkedTrackBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
825
|
+
checkedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
826
|
+
uncheckedTrackBackgroundColor: _coreTokens["default"].color_grey_400,
|
|
827
|
+
uncheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
828
|
+
disabledCheckedTrackBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
829
|
+
disabledCheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
830
|
+
disabledUncheckedTrackBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
831
|
+
disabledUncheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
832
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
833
|
+
disabledLabelFontStyle: _coreTokens["default"].type_normal,
|
|
834
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
835
|
+
labelFontSize: _coreTokens["default"].type_scale_root,
|
|
836
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
837
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
838
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
839
|
+
thumbFocusColor: _coreTokens["default"].color_blue_600,
|
|
1178
840
|
thumbHeight: "24px",
|
|
1179
841
|
thumbWidth: "24px",
|
|
1180
|
-
thumbShift: "
|
|
842
|
+
thumbShift: "1.25rem",
|
|
1181
843
|
trackHeight: "12px",
|
|
1182
|
-
trackWidth: "
|
|
1183
|
-
spaceBetweenLabelSwitch: "
|
|
1184
|
-
},
|
|
1185
|
-
tag: {
|
|
1186
|
-
fontFamily: globalTokens.type_sans,
|
|
1187
|
-
fontColor: globalTokens.hal_black,
|
|
1188
|
-
fontSize: globalTokens.type_scale_02,
|
|
1189
|
-
fontStyle: globalTokens.type_normal,
|
|
1190
|
-
fontWeight: globalTokens.type_regular,
|
|
1191
|
-
labelPaddingTop: "0px",
|
|
1192
|
-
labelPaddingBottom: "0px",
|
|
1193
|
-
labelPaddingLeft: "16px",
|
|
1194
|
-
labelPaddingRight: "16px",
|
|
1195
|
-
height: "40px",
|
|
1196
|
-
iconColor: globalTokens.hal_white,
|
|
1197
|
-
iconSectionWidth: "40px",
|
|
1198
|
-
iconHeight: "24px",
|
|
1199
|
-
iconWidth: "auto",
|
|
1200
|
-
focusColor: globalTokens.hal_blue_l_50
|
|
844
|
+
trackWidth: "36px",
|
|
845
|
+
spaceBetweenLabelSwitch: "8px"
|
|
1201
846
|
},
|
|
1202
847
|
table: {
|
|
1203
848
|
rowSeparatorThickness: "1px",
|
|
1204
|
-
rowSeparatorStyle: "
|
|
1205
|
-
rowSeparatorColor:
|
|
1206
|
-
dataBackgroundColor:
|
|
1207
|
-
dataFontFamily:
|
|
1208
|
-
dataFontSize:
|
|
1209
|
-
dataFontStyle:
|
|
1210
|
-
dataFontWeight:
|
|
1211
|
-
dataFontColor:
|
|
849
|
+
rowSeparatorStyle: _coreTokens["default"].border_solid,
|
|
850
|
+
rowSeparatorColor: _coreTokens["default"].color_grey_300,
|
|
851
|
+
dataBackgroundColor: _coreTokens["default"].color_white,
|
|
852
|
+
dataFontFamily: _coreTokens["default"].type_sans,
|
|
853
|
+
dataFontSize: _coreTokens["default"].type_scale_02,
|
|
854
|
+
dataFontStyle: _coreTokens["default"].type_normal,
|
|
855
|
+
dataFontWeight: _coreTokens["default"].type_regular,
|
|
856
|
+
dataFontColor: _coreTokens["default"].color_black,
|
|
1212
857
|
dataFontTextTransform: "none",
|
|
1213
|
-
dataPaddingTop: "
|
|
1214
|
-
dataPaddingBottom: "
|
|
858
|
+
dataPaddingTop: "16px",
|
|
859
|
+
dataPaddingBottom: "16px",
|
|
1215
860
|
dataPaddingRight: "20px",
|
|
1216
|
-
dataPaddingLeft: "
|
|
861
|
+
dataPaddingLeft: "20px",
|
|
862
|
+
dataPaddingTopReduced: _coreTokens["default"].spacing_8,
|
|
863
|
+
dataPaddingBottomReduced: _coreTokens["default"].spacing_8,
|
|
864
|
+
dataPaddingRightReduced: _coreTokens["default"].spacing_16,
|
|
865
|
+
dataPaddingLeftReduced: _coreTokens["default"].spacing_16,
|
|
1217
866
|
dataTextAlign: "left",
|
|
1218
867
|
dataTextLineHeight: "normal",
|
|
1219
|
-
|
|
868
|
+
firstChildPaddingLeft: _coreTokens["default"].spacing_24,
|
|
869
|
+
lastChildPaddingRight: _coreTokens["default"].spacing_24,
|
|
870
|
+
firstChildPaddingLeftReduced: "20px",
|
|
871
|
+
lastChildPaddingRightReduced: "20px",
|
|
872
|
+
headerBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1220
873
|
headerBorderRadius: "4px",
|
|
1221
|
-
headerFontFamily:
|
|
1222
|
-
headerFontSize:
|
|
1223
|
-
headerFontStyle:
|
|
1224
|
-
headerFontWeight:
|
|
1225
|
-
headerFontColor:
|
|
874
|
+
headerFontFamily: _coreTokens["default"].type_sans,
|
|
875
|
+
headerFontSize: _coreTokens["default"].type_scale_02,
|
|
876
|
+
headerFontStyle: _coreTokens["default"].type_normal,
|
|
877
|
+
headerFontWeight: _coreTokens["default"].type_regular,
|
|
878
|
+
headerFontColor: _coreTokens["default"].color_white,
|
|
1226
879
|
headerFontTextTransform: "none",
|
|
1227
880
|
headerPaddingTop: "16px",
|
|
1228
881
|
headerPaddingBottom: "16px",
|
|
1229
882
|
headerPaddingRight: "20px",
|
|
1230
|
-
headerPaddingLeft: "
|
|
883
|
+
headerPaddingLeft: "20px",
|
|
884
|
+
headerPaddingTopReduced: _coreTokens["default"].spacing_8,
|
|
885
|
+
headerPaddingBottomReduced: _coreTokens["default"].spacing_8,
|
|
886
|
+
headerPaddingRightReduced: _coreTokens["default"].spacing_16,
|
|
887
|
+
headerPaddingLeftReduced: _coreTokens["default"].spacing_16,
|
|
1231
888
|
headerTextAlign: "left",
|
|
1232
889
|
headerTextLineHeight: "normal",
|
|
1233
|
-
scrollBarThumbColor:
|
|
1234
|
-
scrollBarTrackColor:
|
|
1235
|
-
sortIconColor:
|
|
890
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_700,
|
|
891
|
+
scrollBarTrackColor: _coreTokens["default"].color_grey_300,
|
|
892
|
+
sortIconColor: _coreTokens["default"].color_white,
|
|
893
|
+
actionIconColor: _coreTokens["default"].color_purple_700,
|
|
894
|
+
disabledActionIconColor: _coreTokens["default"].color_grey_500,
|
|
895
|
+
hoverActionIconColor: _coreTokens["default"].color_purple_700,
|
|
896
|
+
focusActionIconColor: _coreTokens["default"].color_purple_700,
|
|
897
|
+
activeActionIconColor: _coreTokens["default"].color_purple_700,
|
|
898
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
899
|
+
disabledActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
900
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
901
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
902
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300
|
|
1236
903
|
},
|
|
1237
904
|
tabs: {
|
|
1238
|
-
fontFamily:
|
|
1239
|
-
fontSize:
|
|
1240
|
-
fontStyle:
|
|
1241
|
-
fontWeight:
|
|
905
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
906
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
907
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
908
|
+
fontWeight: _coreTokens["default"].type_semibold,
|
|
1242
909
|
fontTextTransform: "none",
|
|
1243
|
-
selectedBackgroundColor:
|
|
1244
|
-
selectedFontColor: "
|
|
1245
|
-
selectedIconColor: "
|
|
1246
|
-
selectedUnderlineColor: "
|
|
910
|
+
selectedBackgroundColor: _coreTokens["default"].color_white,
|
|
911
|
+
selectedFontColor: _coreTokens["default"].color_purple_700,
|
|
912
|
+
selectedIconColor: _coreTokens["default"].color_purple_700,
|
|
913
|
+
selectedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
1247
914
|
selectedUnderlineThickness: "2px",
|
|
1248
|
-
unselectedBackgroundColor:
|
|
1249
|
-
unselectedFontColor:
|
|
1250
|
-
unselectedIconColor:
|
|
1251
|
-
disabledFontColor: "
|
|
1252
|
-
disabledIconColor: "
|
|
1253
|
-
disabledFontStyle:
|
|
1254
|
-
hoverBackgroundColor: "
|
|
1255
|
-
pressedBackgroundColor: "
|
|
1256
|
-
pressedFontWeight:
|
|
1257
|
-
dividerColor:
|
|
915
|
+
unselectedBackgroundColor: _coreTokens["default"].color_white,
|
|
916
|
+
unselectedFontColor: _coreTokens["default"].color_grey_700,
|
|
917
|
+
unselectedIconColor: _coreTokens["default"].color_grey_700,
|
|
918
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
919
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
920
|
+
disabledFontStyle: _coreTokens["default"].type_normal,
|
|
921
|
+
hoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
922
|
+
pressedBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
923
|
+
pressedFontWeight: _coreTokens["default"].type_semibold,
|
|
924
|
+
dividerColor: _coreTokens["default"].color_grey_400,
|
|
1258
925
|
dividerThickness: "1px",
|
|
1259
|
-
focusOutline: "
|
|
1260
|
-
scrollButtonsWidth: "48px"
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
926
|
+
focusOutline: _coreTokens["default"].color_purple_700,
|
|
927
|
+
scrollButtonsWidth: "48px"
|
|
928
|
+
},
|
|
929
|
+
tag: {
|
|
930
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
931
|
+
fontColor: _coreTokens["default"].color_black,
|
|
932
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
933
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
934
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
935
|
+
labelPaddingTop: "0px",
|
|
936
|
+
labelPaddingBottom: "0px",
|
|
937
|
+
labelPaddingLeft: "16px",
|
|
938
|
+
labelPaddingRight: "16px",
|
|
939
|
+
height: "40px",
|
|
940
|
+
iconColor: _coreTokens["default"].color_white,
|
|
941
|
+
iconSectionWidth: "40px",
|
|
942
|
+
iconHeight: "24px",
|
|
943
|
+
iconWidth: "auto",
|
|
944
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
1274
945
|
},
|
|
1275
946
|
textarea: {
|
|
1276
|
-
fontFamily:
|
|
1277
|
-
enabledBorderColor:
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
helperTextLineHeight: globalTokens.type_leading_normal,
|
|
1310
|
-
disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
|
|
1311
|
-
disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
1312
|
-
placeholderFontColor: "#000000b3",
|
|
1313
|
-
placeholderFontColorOnDark: globalTokens.hal_grey_l_95,
|
|
1314
|
-
disabledPlaceholderFontColor: globalTokens.hal_grey_l_60,
|
|
1315
|
-
disabledPlaceholderFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
1316
|
-
valueFontColor: globalTokens.hal_black,
|
|
1317
|
-
valueFontColorOnDark: globalTokens.hal_white,
|
|
1318
|
-
valueFontSize: globalTokens.type_scale_03,
|
|
1319
|
-
valueFontStyle: globalTokens.type_normal,
|
|
1320
|
-
valueFontWeight: globalTokens.type_regular,
|
|
1321
|
-
disabledValueFontColor: globalTokens.hal_grey_l_60,
|
|
1322
|
-
disabledValueFontColorOnDark: globalTokens.hal_grey_l_60
|
|
947
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
948
|
+
enabledBorderColor: _coreTokens["default"].color_black,
|
|
949
|
+
hoverBorderColor: _coreTokens["default"].color_purple_500,
|
|
950
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
951
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
952
|
+
disabledContainerFillColor: _coreTokens["default"].color_grey_100,
|
|
953
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
954
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
955
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
956
|
+
hoverErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
957
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
958
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
959
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
960
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
961
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
962
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
963
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
964
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
965
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
966
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
967
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
968
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
969
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
970
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
971
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
972
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
973
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
974
|
+
disabledPlaceholderFontColor: _coreTokens["default"].color_grey_500,
|
|
975
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
976
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
977
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
978
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
979
|
+
disabledValueFontColor: _coreTokens["default"].color_grey_500
|
|
1323
980
|
},
|
|
1324
|
-
|
|
1325
|
-
fontFamily:
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
labelFontSize:
|
|
1341
|
-
labelFontStyle:
|
|
1342
|
-
labelFontWeight:
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
981
|
+
textInput: {
|
|
982
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
983
|
+
enabledBorderColor: _coreTokens["default"].color_black,
|
|
984
|
+
hoverBorderColor: _coreTokens["default"].color_purple_500,
|
|
985
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
986
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
987
|
+
disabledContainerFillColor: _coreTokens["default"].color_grey_100,
|
|
988
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
989
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
990
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
991
|
+
hoverErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
992
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
993
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
994
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
995
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
996
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
997
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
998
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
999
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
1000
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
1001
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1002
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
1003
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
1004
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
1005
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1006
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1007
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
1008
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
1009
|
+
prefixColor: _coreTokens["default"].color_grey_700,
|
|
1010
|
+
suffixColor: _coreTokens["default"].color_grey_700,
|
|
1011
|
+
disabledPrefixColor: _coreTokens["default"].color_grey_400,
|
|
1012
|
+
disabledSuffixColor: _coreTokens["default"].color_grey_400,
|
|
1013
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
1014
|
+
disabledPlaceholderFontColor: _coreTokens["default"].color_grey_500,
|
|
1015
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
1016
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
1017
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
1018
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
1019
|
+
disabledValueFontColor: _coreTokens["default"].color_grey_500,
|
|
1020
|
+
actionIconColor: _coreTokens["default"].color_black,
|
|
1021
|
+
disabledActionIconColor: _coreTokens["default"].color_grey_500,
|
|
1022
|
+
hoverActionIconColor: _coreTokens["default"].color_black,
|
|
1023
|
+
focusActionIconColor: _coreTokens["default"].color_black,
|
|
1024
|
+
activeActionIconColor: _coreTokens["default"].color_black,
|
|
1025
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1026
|
+
disabledActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1027
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1028
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
1029
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
1030
|
+
listDialogBackgroundColor: _coreTokens["default"].color_white,
|
|
1031
|
+
listDialogBorderColor: _coreTokens["default"].color_grey_400,
|
|
1032
|
+
listOptionDividerColor: _coreTokens["default"].color_grey_200,
|
|
1033
|
+
listOptionFontColor: _coreTokens["default"].color_black,
|
|
1034
|
+
listOptionFontSize: _coreTokens["default"].type_scale_02,
|
|
1035
|
+
listOptionFontStyle: _coreTokens["default"].type_normal,
|
|
1036
|
+
listOptionFontWeight: _coreTokens["default"].type_regular,
|
|
1037
|
+
systemMessageFontColor: _coreTokens["default"].color_grey_700,
|
|
1038
|
+
errorListDialogFontColor: _coreTokens["default"].color_black,
|
|
1039
|
+
errorListDialogBackgroundColor: _coreTokens["default"].color_red_50,
|
|
1040
|
+
errorListDialogBorderColor: _coreTokens["default"].color_red_700,
|
|
1041
|
+
hoverListOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1042
|
+
activeListOptionBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
1043
|
+
focusListOptionBorderColor: _coreTokens["default"].color_blue_600
|
|
1358
1044
|
},
|
|
1359
1045
|
toggleGroup: {
|
|
1360
|
-
containerBackgroundColor:
|
|
1361
|
-
containerBorderColor:
|
|
1362
|
-
labelFontColor:
|
|
1363
|
-
disabledLabelFontColor:
|
|
1364
|
-
helperTextFontColor:
|
|
1365
|
-
disabledHelperTextFontcolor:
|
|
1366
|
-
unselectedBackgroundColor:
|
|
1367
|
-
unselectedHoverBackgroundColor:
|
|
1368
|
-
unselectedActiveBackgroundColor:
|
|
1369
|
-
unselectedDisabledBackgroundColor:
|
|
1370
|
-
unselectedFontColor:
|
|
1371
|
-
unselectedDisabledFontColor:
|
|
1372
|
-
selectedBackgroundColor:
|
|
1373
|
-
selectedHoverBackgroundColor:
|
|
1374
|
-
selectedActiveBackgroundColor:
|
|
1375
|
-
selectedDisabledBackgroundColor:
|
|
1376
|
-
selectedFontColor:
|
|
1377
|
-
selectedDisabledFontColor:
|
|
1378
|
-
focusColor:
|
|
1379
|
-
labelFontFamily:
|
|
1380
|
-
labelFontSize:
|
|
1381
|
-
labelFontStyle:
|
|
1382
|
-
labelFontWeight:
|
|
1383
|
-
labelLineHeight:
|
|
1384
|
-
helperTextFontFamily:
|
|
1385
|
-
helperTextFontSize:
|
|
1386
|
-
helperTextFontStyle:
|
|
1387
|
-
helperTextFontWeight:
|
|
1388
|
-
helperTextLineHeight:
|
|
1389
|
-
optionLabelFontFamily:
|
|
1390
|
-
optionLabelFontSize:
|
|
1391
|
-
optionLabelFontStyle:
|
|
1392
|
-
optionLabelFontWeight:
|
|
1393
|
-
iconPaddingRight:
|
|
1394
|
-
iconPaddingLeft:
|
|
1395
|
-
labelPaddingLeft:
|
|
1396
|
-
labelPaddingRight:
|
|
1397
|
-
iconMarginRight:
|
|
1398
|
-
containerMarginTop:
|
|
1399
|
-
optionBorderThickness:
|
|
1400
|
-
optionBorderStyle:
|
|
1401
|
-
optionBorderRadius:
|
|
1402
|
-
containerBorderThickness:
|
|
1403
|
-
containerBorderStyle:
|
|
1404
|
-
containerBorderRadius:
|
|
1405
|
-
optionFocusBorderThickness:
|
|
1406
|
-
},
|
|
1407
|
-
upload: {
|
|
1408
|
-
fontFamily: globalTokens.type_sans,
|
|
1409
|
-
shadowColor: globalTokens.lightWhite,
|
|
1410
|
-
scrollBarThumbColor: globalTokens.darkGrey,
|
|
1411
|
-
scrollBarTrackColor: globalTokens.lightGrey,
|
|
1412
|
-
errorColor: globalTokens.red,
|
|
1413
|
-
backgroundColor: globalTokens.white,
|
|
1414
|
-
draggingStateBackgroundColor: globalTokens.lightWhite,
|
|
1415
|
-
dragAndDropIconColor: globalTokens.black,
|
|
1416
|
-
dragAndDropIconSize: "43.5px",
|
|
1417
|
-
dragAndDropTitleFontSize: globalTokens.type_scale_04,
|
|
1418
|
-
dragAndDropTitleFontStyle: globalTokens.type_normal,
|
|
1419
|
-
dragAndDropTitleFontWeight: globalTokens.type_bold,
|
|
1420
|
-
dragAndDropTitleFontTextTransform: "none",
|
|
1421
|
-
dragAndDropTitleFontColor: globalTokens.black,
|
|
1422
|
-
dragAndDropDescriptionFontSize: globalTokens.type_scale_03,
|
|
1423
|
-
dragAndDropDescriptionFontStyle: globalTokens.type_italic,
|
|
1424
|
-
dragAndDropDescriptionFontWeight: globalTokens.type_regular,
|
|
1425
|
-
dragAndDropDescriptionFontTextTransform: "none",
|
|
1426
|
-
dragAndDropDescriptionFontColor: globalTokens.darkGrey,
|
|
1427
|
-
dragAndDropDraggingStateIconColor: globalTokens.darkGrey,
|
|
1428
|
-
dragAndDropDraggingStateIconSize: "74.5px",
|
|
1429
|
-
dragAndDropDraggingStateFontSize: globalTokens.type_scale_03,
|
|
1430
|
-
dragAndDropDraggingStateFontStyle: globalTokens.type_italic,
|
|
1431
|
-
dragAndDropDraggingStateFontWeight: globalTokens.type_regular,
|
|
1432
|
-
dragAndDropDraggingStateFontTextTransform: "none",
|
|
1433
|
-
dragAndDropDraggingStateFontColor: globalTokens.darkGrey,
|
|
1434
|
-
dragAndDropAreaIconColor: globalTokens.darkGrey,
|
|
1435
|
-
dragAndDropAreaIconSize: "24px",
|
|
1436
|
-
dragAndDropAreaTextFontSize: globalTokens.type_scale_01,
|
|
1437
|
-
dragAndDropAreaTextFontStyle: globalTokens.type_italic,
|
|
1438
|
-
dragAndDropAreaTextFontWeight: globalTokens.type_regular,
|
|
1439
|
-
dragAndDropAreaTextFontTextTransform: "none",
|
|
1440
|
-
dragAndDropAreaTextFontColor: globalTokens.darkGrey,
|
|
1441
|
-
fileDeleteIconColor: globalTokens.black,
|
|
1442
|
-
fileDeleteIconSize: "30px",
|
|
1443
|
-
fileUnderlineColor: globalTokens.lightGrey,
|
|
1444
|
-
fileUnderlineThickness: "1px",
|
|
1445
|
-
fileNameFontSize: globalTokens.type_scale_03,
|
|
1446
|
-
fileNameFontStyle: globalTokens.type_normal,
|
|
1447
|
-
fileNameFontWeight: globalTokens.type_regular,
|
|
1448
|
-
fileNameFontTextTransform: "none",
|
|
1449
|
-
fileNameFontColor: globalTokens.black,
|
|
1450
|
-
fileTypeFontSize: globalTokens.type_scale_01,
|
|
1451
|
-
fileTypeFontStyle: globalTokens.type_normal,
|
|
1452
|
-
fileTypeFontWeight: globalTokens.type_regular,
|
|
1453
|
-
fileTypeFontTextTransform: globalTokens.type_uppercase,
|
|
1454
|
-
fileTypeFontColor: globalTokens.darkGrey,
|
|
1455
|
-
hoverFileColor: globalTokens.darkWhite,
|
|
1456
|
-
uploadedFileIconColor: globalTokens.lightGrey,
|
|
1457
|
-
uploadedFileIconSize: "24px",
|
|
1458
|
-
uploadedFilesTitleFontSize: globalTokens.type_scale_04,
|
|
1459
|
-
uploadedFilesTitleFontStyle: globalTokens.type_normal,
|
|
1460
|
-
uploadedFilesTitleFontWeight: globalTokens.type_regular,
|
|
1461
|
-
uploadedFilesTitleFontTextTransform: "none",
|
|
1462
|
-
uploadedFilesTitleFontColor: globalTokens.black,
|
|
1463
|
-
uploadedFilesSubtitleFontSize: globalTokens.type_scale_01,
|
|
1464
|
-
uploadedFilesSubtitleFontStyle: globalTokens.type_normal,
|
|
1465
|
-
uploadedFilesSubtitleFontWeight: globalTokens.type_regular,
|
|
1466
|
-
uploadedFilesSubtitleFontTextTransform: "none",
|
|
1467
|
-
uploadedFilesSubtitleFontColor: globalTokens.darkGrey,
|
|
1468
|
-
uploadedFilesNumberFontWeight: globalTokens.type_bold
|
|
1046
|
+
containerBackgroundColor: _coreTokens["default"].color_grey_50,
|
|
1047
|
+
containerBorderColor: _coreTokens["default"].color_grey_500,
|
|
1048
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
1049
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1050
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
1051
|
+
disabledHelperTextFontcolor: _coreTokens["default"].color_grey_500,
|
|
1052
|
+
unselectedBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
1053
|
+
unselectedHoverBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
1054
|
+
unselectedActiveBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1055
|
+
unselectedDisabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1056
|
+
unselectedFontColor: _coreTokens["default"].color_black,
|
|
1057
|
+
unselectedDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
1058
|
+
selectedBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1059
|
+
selectedHoverBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
1060
|
+
selectedActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
1061
|
+
selectedDisabledBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
1062
|
+
selectedFontColor: _coreTokens["default"].color_white,
|
|
1063
|
+
selectedDisabledFontColor: _coreTokens["default"].color_purple_300,
|
|
1064
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
1065
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
1066
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
1067
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
1068
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
1069
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
1070
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
1071
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
1072
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1073
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1074
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
1075
|
+
optionLabelFontFamily: _coreTokens["default"].type_sans,
|
|
1076
|
+
optionLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
1077
|
+
optionLabelFontStyle: _coreTokens["default"].type_normal,
|
|
1078
|
+
optionLabelFontWeight: _coreTokens["default"].type_regular,
|
|
1079
|
+
iconPaddingRight: _coreTokens["default"].spacing_8,
|
|
1080
|
+
iconPaddingLeft: _coreTokens["default"].spacing_8,
|
|
1081
|
+
labelPaddingLeft: _coreTokens["default"].spacing_24,
|
|
1082
|
+
labelPaddingRight: _coreTokens["default"].spacing_24,
|
|
1083
|
+
iconMarginRight: _coreTokens["default"].spacing_8,
|
|
1084
|
+
containerMarginTop: _coreTokens["default"].spacing_4,
|
|
1085
|
+
optionBorderThickness: _coreTokens["default"].border_width_0,
|
|
1086
|
+
optionBorderStyle: _coreTokens["default"].border_none,
|
|
1087
|
+
optionBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
1088
|
+
containerBorderThickness: _coreTokens["default"].border_width_1,
|
|
1089
|
+
containerBorderStyle: _coreTokens["default"].border_solid,
|
|
1090
|
+
containerBorderRadius: _coreTokens["default"].border_radius_large,
|
|
1091
|
+
optionFocusBorderThickness: _coreTokens["default"].border_width_2
|
|
1469
1092
|
},
|
|
1470
1093
|
wizard: {
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1094
|
+
visitedStepFontColor: _coreTokens["default"].color_black,
|
|
1095
|
+
visitedStepBackgroundColor: _coreTokens["default"].color_white,
|
|
1096
|
+
visitedStepBorderColor: _coreTokens["default"].color_black,
|
|
1097
|
+
unvisitedStepFontColor: _coreTokens["default"].color_grey_700,
|
|
1098
|
+
unvisitedLabelFontColor: _coreTokens["default"].color_grey_700,
|
|
1099
|
+
unvisitedHelperTextFontColor: _coreTokens["default"].color_grey_700,
|
|
1100
|
+
unvisitedStepBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1101
|
+
unvisitedStepBorderColor: _coreTokens["default"].color_grey_700,
|
|
1102
|
+
selectedStepFontColor: _coreTokens["default"].color_white,
|
|
1103
|
+
selectedStepBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1104
|
+
selectedStepBorderColor: _coreTokens["default"].color_purple_700,
|
|
1105
|
+
selectedLabelFontColor: _coreTokens["default"].color_black,
|
|
1106
|
+
selectedHelperTextFontColor: _coreTokens["default"].color_black,
|
|
1107
|
+
selectedStepWidth: "32px",
|
|
1108
|
+
selectedStepHeight: "32px",
|
|
1109
|
+
selectedStepBorderThickness: "2px",
|
|
1110
|
+
selectedStepBorderStyle: _coreTokens["default"].border_solid,
|
|
1111
|
+
selectedStepBorderRadius: "45px",
|
|
1112
|
+
stepFontSize: _coreTokens["default"].type_scale_03,
|
|
1113
|
+
stepFontFamily: _coreTokens["default"].type_sans,
|
|
1114
|
+
stepFontStyle: _coreTokens["default"].type_normal,
|
|
1115
|
+
stepFontWeight: _coreTokens["default"].type_regular,
|
|
1116
|
+
stepFontTracking: _coreTokens["default"].type_spacing_wide_02,
|
|
1117
|
+
stepIconSize: "20px",
|
|
1118
|
+
stepWidth: "32px",
|
|
1119
|
+
stepHeight: "32px",
|
|
1120
|
+
stepBorderThickness: "2px",
|
|
1121
|
+
stepBorderStyle: _coreTokens["default"].border_solid,
|
|
1122
|
+
stepBorderRadius: "45px",
|
|
1123
|
+
visitedLabelFontColor: _coreTokens["default"].color_black,
|
|
1124
|
+
labelFontSize: _coreTokens["default"].type_scale_03,
|
|
1125
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
1126
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
1127
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
1128
|
+
labelFontTracking: _coreTokens["default"].type_spacing_normal,
|
|
1488
1129
|
labelFontTextTransform: "none",
|
|
1489
1130
|
labelTextAlign: "left",
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
selectedCircleHeight: "32px",
|
|
1509
|
-
selectedCircleBorderThickness: "2px",
|
|
1510
|
-
selectedCircleBorderStyle: "solid",
|
|
1511
|
-
selectedCircleBorderRadius: "45px",
|
|
1512
|
-
selectedCircleBorderColor: globalTokens.purple,
|
|
1513
|
-
disabledCircleWidth: "32px",
|
|
1514
|
-
disabledCircleHeight: "32px",
|
|
1515
|
-
disabledCircleBorderThickness: "2px",
|
|
1516
|
-
disabledCircleBorderStyle: "solid",
|
|
1517
|
-
disabledCircleBorderRadius: "45px",
|
|
1518
|
-
disabledCircleBorderColor: globalTokens.lightGrey,
|
|
1131
|
+
helperTextFontSize: _coreTokens["default"].type_scale_02,
|
|
1132
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
1133
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1134
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1135
|
+
helperTextFontTracking: _coreTokens["default"].type_spacing_normal,
|
|
1136
|
+
helperTextFontTextTransform: "none",
|
|
1137
|
+
visitedHelperTextFontColor: _coreTokens["default"].color_black,
|
|
1138
|
+
helperTextTextAlign: "left",
|
|
1139
|
+
disabledStepBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1140
|
+
disabledStepFontColor: _coreTokens["default"].color_grey_500,
|
|
1141
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1142
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
1143
|
+
disabledStepBorderColor: _coreTokens["default"].color_grey_100,
|
|
1144
|
+
disabledStepWidth: "32px",
|
|
1145
|
+
disabledStepHeight: "32px",
|
|
1146
|
+
disabledStepBorderThickness: "2px",
|
|
1147
|
+
disabledStepBorderStyle: _coreTokens["default"].border_solid,
|
|
1148
|
+
disabledStepBorderRadius: "45px",
|
|
1519
1149
|
separatorBorderThickness: "1px",
|
|
1520
|
-
separatorBorderStyle: "
|
|
1521
|
-
separatorColor:
|
|
1522
|
-
focusColor:
|
|
1150
|
+
separatorBorderStyle: _coreTokens["default"].border_solid,
|
|
1151
|
+
separatorColor: _coreTokens["default"].color_grey_700,
|
|
1152
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
1523
1153
|
}
|
|
1524
1154
|
};
|
|
1525
|
-
exports.
|
|
1526
|
-
var spaces = {
|
|
1155
|
+
var spaces = exports.spaces = {
|
|
1527
1156
|
xxsmall: "6px",
|
|
1528
1157
|
xsmall: "16px",
|
|
1529
1158
|
small: "24px",
|
|
@@ -1532,46 +1161,106 @@ var spaces = {
|
|
|
1532
1161
|
xlarge: "64px",
|
|
1533
1162
|
xxlarge: "100px"
|
|
1534
1163
|
};
|
|
1535
|
-
exports.
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
laptop: "1024",
|
|
1542
|
-
desktop: "1440"
|
|
1164
|
+
var responsiveSizes = exports.responsiveSizes = {
|
|
1165
|
+
xsmall: "20",
|
|
1166
|
+
small: "30",
|
|
1167
|
+
medium: "45",
|
|
1168
|
+
large: "66",
|
|
1169
|
+
xlarge: "90"
|
|
1543
1170
|
};
|
|
1544
|
-
exports.
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1171
|
+
var defaultTranslatedComponentLabels = exports.defaultTranslatedComponentLabels = {
|
|
1172
|
+
formFields: {
|
|
1173
|
+
optionalLabel: "(Optional)",
|
|
1174
|
+
requiredSelectionErrorMessage: "This field is required. Please, choose an option.",
|
|
1175
|
+
requiredValueErrorMessage: "This field is required. Please, enter a value.",
|
|
1176
|
+
formatRequestedErrorMessage: "Please match the format requested.",
|
|
1177
|
+
lengthErrorMessage: function lengthErrorMessage(minLength, maxLength) {
|
|
1178
|
+
return "Min length ".concat(minLength, ", max length ").concat(maxLength, ".");
|
|
1179
|
+
},
|
|
1180
|
+
logoAlternativeText: "Logo"
|
|
1181
|
+
},
|
|
1182
|
+
applicationLayout: {
|
|
1183
|
+
visibilityToggleTitle: "Toggle visibility sidenav"
|
|
1184
|
+
},
|
|
1185
|
+
alert: {
|
|
1186
|
+
infoTitleText: "information",
|
|
1187
|
+
successTitleText: "success",
|
|
1188
|
+
warningTitleText: "warning",
|
|
1189
|
+
errorTitleText: "error"
|
|
1190
|
+
},
|
|
1191
|
+
dateInput: {
|
|
1192
|
+
invalidDateErrorMessage: "Invalid date."
|
|
1550
1193
|
},
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1194
|
+
dialog: {
|
|
1195
|
+
closeIconAriaLabel: "Close dialog"
|
|
1196
|
+
},
|
|
1197
|
+
fileInput: {
|
|
1198
|
+
fileSizeGreaterThanErrorMessage: "File size must be greater than min size.",
|
|
1199
|
+
fileSizeLessThanErrorMessage: "File size must be less than max size.",
|
|
1200
|
+
multipleButtonLabelDefault: "Select files",
|
|
1201
|
+
singleButtonLabelDefault: "Select file",
|
|
1202
|
+
dropAreaButtonLabelDefault: "Select",
|
|
1203
|
+
multipleDropAreaLabelDefault: "or drop files",
|
|
1204
|
+
singleDropAreaLabelDefault: "or drop a file",
|
|
1205
|
+
deleteFileActionTitle: "Remove file"
|
|
1206
|
+
},
|
|
1207
|
+
footer: {
|
|
1208
|
+
copyrightText: function copyrightText(year) {
|
|
1209
|
+
return "\xA9 DXC Technology ".concat(year, ". All rights reserved.");
|
|
1210
|
+
}
|
|
1555
1211
|
},
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1212
|
+
header: {
|
|
1213
|
+
closeIcon: "Close menu",
|
|
1214
|
+
hamburguerTitle: "Menu"
|
|
1215
|
+
},
|
|
1216
|
+
numberInput: {
|
|
1217
|
+
valueGreaterThanOrEqualToErrorMessage: function valueGreaterThanOrEqualToErrorMessage(value) {
|
|
1218
|
+
return "Value must be greater than or equal to ".concat(value, ".");
|
|
1219
|
+
},
|
|
1220
|
+
valueLessThanOrEqualToErrorMessage: function valueLessThanOrEqualToErrorMessage(value) {
|
|
1221
|
+
return "Value must be less than or equal to ".concat(value, ".");
|
|
1222
|
+
},
|
|
1223
|
+
decrementValueTitle: "Decrement value",
|
|
1224
|
+
incrementValueTitle: "Increment value"
|
|
1225
|
+
},
|
|
1226
|
+
paginator: {
|
|
1227
|
+
itemsPerPageText: "Items per page: ",
|
|
1228
|
+
minToMaxOfText: function minToMaxOfText(minNumberOfItems, maxNumberOfItems, totalItems) {
|
|
1229
|
+
return "".concat(minNumberOfItems, " to ").concat(maxNumberOfItems, " of ").concat(totalItems);
|
|
1230
|
+
},
|
|
1231
|
+
goToPageText: "Go to page:",
|
|
1232
|
+
pageOfText: function pageOfText(pageNumber, totalPagesNumber) {
|
|
1233
|
+
return "Page: ".concat(pageNumber, " of ").concat(totalPagesNumber);
|
|
1234
|
+
}
|
|
1560
1235
|
},
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
textTransform: "initial"
|
|
1236
|
+
passwordInput: {
|
|
1237
|
+
inputShowPasswordTitle: "Show password",
|
|
1238
|
+
inputHidePasswordTitle: "Hide password"
|
|
1565
1239
|
},
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
letterSpacing: "0.4",
|
|
1569
|
-
textTransform: "initial"
|
|
1240
|
+
quickNav: {
|
|
1241
|
+
contentTitle: "Contents"
|
|
1570
1242
|
},
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1243
|
+
radioGroup: {
|
|
1244
|
+
optionalItemLabelDefault: "N/A"
|
|
1245
|
+
},
|
|
1246
|
+
select: {
|
|
1247
|
+
noMatchesErrorMessage: "No matches found",
|
|
1248
|
+
actionClearSelectionTitle: "Clear selection",
|
|
1249
|
+
actionClearSearchTitle: "Clear search"
|
|
1250
|
+
},
|
|
1251
|
+
tabs: {
|
|
1252
|
+
scrollLeft: "Scroll left",
|
|
1253
|
+
scrollRight: "Scroll right"
|
|
1254
|
+
},
|
|
1255
|
+
textInput: {
|
|
1256
|
+
clearFieldActionTitle: "Clear field",
|
|
1257
|
+
searchingMessage: "Searching...",
|
|
1258
|
+
fetchingDataErrorMessage: "Error fetching data"
|
|
1259
|
+
},
|
|
1260
|
+
calendar: {
|
|
1261
|
+
daysShort: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
|
|
1262
|
+
months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
|
|
1263
|
+
previousMonthTitle: "Previous month",
|
|
1264
|
+
nextMonthTitle: "Next month"
|
|
1575
1265
|
}
|
|
1576
|
-
};
|
|
1577
|
-
exports.typeface = typeface;
|
|
1266
|
+
};
|