@atlaskit/tokens 1.25.2 → 1.26.1
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/CHANGELOG.md +12 -0
- package/dist/cjs/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/cjs/artifacts/palettes-raw/palette.js +133 -133
- package/dist/cjs/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/cjs/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/cjs/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/cjs/artifacts/theme-import-map.js +13 -1
- package/dist/cjs/artifacts/themes/atlassian-dark-increased-contrast.js +12 -0
- package/dist/cjs/artifacts/themes/atlassian-light-increased-contrast.js +12 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8687 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8653 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/cjs/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/cjs/constants.js +2 -1
- package/dist/cjs/enable-global-theme.js +3 -0
- package/dist/cjs/get-ssr-auto-script.js +8 -2
- package/dist/cjs/get-theme-html-attrs.js +9 -0
- package/dist/cjs/get-theme-styles.js +9 -0
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/set-global-theme.js +35 -20
- package/dist/cjs/theme-config.js +29 -2
- package/dist/cjs/utils/configure-page.js +16 -1
- package/dist/cjs/utils/contrast-mode-listeners.js +65 -0
- package/dist/cjs/utils/get-increased-contrast-theme.js +20 -0
- package/dist/cjs/utils/get-theme-preferences.js +23 -1
- package/dist/cjs/utils/theme-loading.js +3 -2
- package/dist/es2019/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/es2019/artifacts/palettes-raw/palette.js +133 -133
- package/dist/es2019/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/es2019/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/es2019/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/es2019/artifacts/theme-import-map.js +5 -1
- package/dist/es2019/artifacts/themes/atlassian-dark-increased-contrast.js +401 -0
- package/dist/es2019/artifacts/themes/atlassian-light-increased-contrast.js +401 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8681 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8647 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/es2019/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/es2019/constants.js +1 -0
- package/dist/es2019/enable-global-theme.js +2 -0
- package/dist/es2019/get-ssr-auto-script.js +17 -11
- package/dist/es2019/get-theme-html-attrs.js +12 -2
- package/dist/es2019/get-theme-styles.js +7 -0
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/set-global-theme.js +14 -0
- package/dist/es2019/theme-config.js +28 -1
- package/dist/es2019/utils/configure-page.js +18 -1
- package/dist/es2019/utils/contrast-mode-listeners.js +48 -0
- package/dist/es2019/utils/get-increased-contrast-theme.js +13 -0
- package/dist/es2019/utils/get-theme-preferences.js +23 -1
- package/dist/es2019/utils/theme-loading.js +2 -1
- package/dist/esm/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/esm/artifacts/palettes-raw/palette.js +133 -133
- package/dist/esm/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/esm/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/esm/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/esm/artifacts/theme-import-map.js +9 -1
- package/dist/esm/artifacts/themes/atlassian-dark-increased-contrast.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-light-increased-contrast.js +6 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8681 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8647 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/esm/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/esm/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/esm/constants.js +1 -0
- package/dist/esm/enable-global-theme.js +3 -0
- package/dist/esm/get-ssr-auto-script.js +10 -4
- package/dist/esm/get-theme-html-attrs.js +10 -1
- package/dist/esm/get-theme-styles.js +9 -0
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/set-global-theme.js +35 -20
- package/dist/esm/theme-config.js +28 -1
- package/dist/esm/utils/configure-page.js +16 -1
- package/dist/esm/utils/contrast-mode-listeners.js +58 -0
- package/dist/esm/utils/get-increased-contrast-theme.js +14 -0
- package/dist/esm/utils/get-theme-preferences.js +23 -1
- package/dist/esm/utils/theme-loading.js +2 -1
- package/dist/types/artifacts/palettes-raw/legacy-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/shape-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/spacing-scale.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/updated-saturated-palette.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-dark-increased-contrast.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-light-increased-contrast.d.ts +7 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark-increased-contrast.d.ts +133 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark-new-input-border.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light-increased-contrast.d.ts +113 -0
- package/dist/types/artifacts/tokens-raw/atlassian-light-new-input-border.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-shape.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/enable-global-theme.d.ts +1 -1
- package/dist/types/get-ssr-auto-script.d.ts +1 -1
- package/dist/types/get-theme-html-attrs.d.ts +1 -1
- package/dist/types/set-global-theme.d.ts +2 -1
- package/dist/types/theme-config.d.ts +29 -6
- package/dist/types/types.d.ts +38 -40
- package/dist/types/utils/configure-page.d.ts +1 -1
- package/dist/types/utils/contrast-mode-listeners.d.ts +13 -0
- package/dist/types/utils/get-increased-contrast-theme.d.ts +5 -0
- package/dist/types/utils/theme-loading.d.ts +1 -0
- package/dist/types-ts4.5/artifacts/palettes-raw/legacy-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/shape-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/spacing-scale.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/updated-saturated-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-dark-increased-contrast.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-light-increased-contrast.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-increased-contrast.d.ts +133 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-new-input-border.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-increased-contrast.d.ts +113 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-new-input-border.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-shape.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +1 -1
- package/dist/types-ts4.5/constants.d.ts +1 -0
- package/dist/types-ts4.5/enable-global-theme.d.ts +1 -1
- package/dist/types-ts4.5/get-ssr-auto-script.d.ts +1 -1
- package/dist/types-ts4.5/get-theme-html-attrs.d.ts +1 -1
- package/dist/types-ts4.5/set-global-theme.d.ts +2 -1
- package/dist/types-ts4.5/theme-config.d.ts +35 -4
- package/dist/types-ts4.5/types.d.ts +38 -40
- package/dist/types-ts4.5/utils/configure-page.d.ts +1 -1
- package/dist/types-ts4.5/utils/contrast-mode-listeners.d.ts +13 -0
- package/dist/types-ts4.5/utils/get-increased-contrast-theme.d.ts +5 -0
- package/dist/types-ts4.5/utils/theme-loading.d.ts +1 -0
- package/figma/atlassian-dark-increased-contrast.json +3542 -0
- package/figma/atlassian-light-increased-contrast.json +3523 -0
- package/package.json +4 -1
- package/report.api.md +40 -229
- package/tmp/api-report-tmp.d.ts +21 -236
- package/dist/cjs/palettes/legacy-palette.js +0 -849
- package/dist/cjs/palettes/palette.js +0 -954
- package/dist/cjs/palettes/shape-palette.js +0 -82
- package/dist/cjs/palettes/spacing-scale.js +0 -154
- package/dist/cjs/palettes/typography-palette.js +0 -273
- package/dist/cjs/palettes/updated-saturated-palette.js +0 -320
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +0 -627
- package/dist/cjs/tokens/atlassian-dark/color/background.js +0 -272
- package/dist/cjs/tokens/atlassian-dark/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-dark/color/chart.js +0 -445
- package/dist/cjs/tokens/atlassian-dark/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-dark/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-dark/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-dark/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-dark/elevation/shadow.js +0 -110
- package/dist/cjs/tokens/atlassian-dark/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-dark/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-dark/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-dark-new-input-border/color/border.js +0 -16
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -21
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -26
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -18
- package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +0 -675
- package/dist/cjs/tokens/atlassian-legacy-dark/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-legacy-dark/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-legacy-dark/color/chart.js +0 -471
- package/dist/cjs/tokens/atlassian-legacy-dark/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-legacy-dark/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-legacy-dark/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-legacy-dark/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -110
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-legacy-dark/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +0 -675
- package/dist/cjs/tokens/atlassian-legacy-light/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-legacy-light/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-legacy-light/color/chart.js +0 -471
- package/dist/cjs/tokens/atlassian-legacy-light/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-legacy-light/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-legacy-light/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-legacy-light/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/shadow.js +0 -80
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-legacy-light/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-legacy-light/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-light/color/accent.js +0 -627
- package/dist/cjs/tokens/atlassian-light/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-light/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-light/color/chart.js +0 -445
- package/dist/cjs/tokens/atlassian-light/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-light/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-light/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-light/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-light/elevation/shadow.js +0 -80
- package/dist/cjs/tokens/atlassian-light/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-light/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-light/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-light-new-input-border/color/border.js +0 -16
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -35
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -26
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -16
- package/dist/cjs/tokens/atlassian-shape/shape.js +0 -52
- package/dist/cjs/tokens/atlassian-spacing/spacing.js +0 -89
- package/dist/cjs/tokens/atlassian-typography/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography/theme.js +0 -149
- package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography-adg3/font-size.js +0 -37
- package/dist/cjs/tokens/atlassian-typography-adg3/font-weight.js +0 -25
- package/dist/cjs/tokens/atlassian-typography-adg3/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography-adg3/line-height.js +0 -34
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +0 -160
- package/dist/cjs/tokens/atlassian-typography-minor3/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography-minor3/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +0 -160
- package/dist/cjs/tokens/default/color/accent.js +0 -1427
- package/dist/cjs/tokens/default/color/background.js +0 -585
- package/dist/cjs/tokens/default/color/border.js +0 -117
- package/dist/cjs/tokens/default/color/chart.js +0 -945
- package/dist/cjs/tokens/default/color/icon.js +0 -111
- package/dist/cjs/tokens/default/color/interaction.js +0 -29
- package/dist/cjs/tokens/default/color/skeleton.js +0 -29
- package/dist/cjs/tokens/default/color/text.js +0 -145
- package/dist/cjs/tokens/default/elevation/shadow.js +0 -55
- package/dist/cjs/tokens/default/elevation/surface.js +0 -99
- package/dist/cjs/tokens/default/opacity/opacity.js +0 -27
- package/dist/cjs/tokens/default/shape/shape.js +0 -106
- package/dist/cjs/tokens/default/spacing/spacing.js +0 -220
- package/dist/cjs/tokens/default/typography/font-family.js +0 -61
- package/dist/cjs/tokens/default/typography/font-size.js +0 -77
- package/dist/cjs/tokens/default/typography/font-weight.js +0 -45
- package/dist/cjs/tokens/default/typography/font.js +0 -140
- package/dist/cjs/tokens/default/typography/letter-spacing.js +0 -53
- package/dist/cjs/tokens/default/typography/line-height.js +0 -69
- package/dist/cjs/tokens/default/utility/utility.js +0 -41
- package/dist/es2019/palettes/legacy-palette.js +0 -843
- package/dist/es2019/palettes/palette.js +0 -948
- package/dist/es2019/palettes/shape-palette.js +0 -76
- package/dist/es2019/palettes/spacing-scale.js +0 -148
- package/dist/es2019/palettes/typography-palette.js +0 -269
- package/dist/es2019/palettes/updated-saturated-palette.js +0 -312
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +0 -621
- package/dist/es2019/tokens/atlassian-dark/color/background.js +0 -266
- package/dist/es2019/tokens/atlassian-dark/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-dark/color/chart.js +0 -439
- package/dist/es2019/tokens/atlassian-dark/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-dark/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-dark/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-dark/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-dark/elevation/shadow.js +0 -104
- package/dist/es2019/tokens/atlassian-dark/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-dark/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-dark/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-dark-new-input-border/color/border.js +0 -10
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -15
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -20
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -12
- package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +0 -669
- package/dist/es2019/tokens/atlassian-legacy-dark/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-legacy-dark/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-legacy-dark/color/chart.js +0 -465
- package/dist/es2019/tokens/atlassian-legacy-dark/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-legacy-dark/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-legacy-dark/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-legacy-dark/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -104
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-legacy-dark/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +0 -669
- package/dist/es2019/tokens/atlassian-legacy-light/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-legacy-light/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-legacy-light/color/chart.js +0 -465
- package/dist/es2019/tokens/atlassian-legacy-light/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-legacy-light/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-legacy-light/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-legacy-light/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/shadow.js +0 -74
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-legacy-light/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-legacy-light/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-light/color/accent.js +0 -621
- package/dist/es2019/tokens/atlassian-light/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-light/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-light/color/chart.js +0 -439
- package/dist/es2019/tokens/atlassian-light/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-light/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-light/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-light/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-light/elevation/shadow.js +0 -74
- package/dist/es2019/tokens/atlassian-light/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-light/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-light/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-light-new-input-border/color/border.js +0 -10
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -29
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -20
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -10
- package/dist/es2019/tokens/atlassian-shape/shape.js +0 -46
- package/dist/es2019/tokens/atlassian-spacing/spacing.js +0 -83
- package/dist/es2019/tokens/atlassian-typography/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography/theme.js +0 -143
- package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +0 -31
- package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +0 -19
- package/dist/es2019/tokens/atlassian-typography-adg3/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography-adg3/line-height.js +0 -28
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +0 -154
- package/dist/es2019/tokens/atlassian-typography-minor3/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography-minor3/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +0 -154
- package/dist/es2019/tokens/default/color/accent.js +0 -1421
- package/dist/es2019/tokens/default/color/background.js +0 -579
- package/dist/es2019/tokens/default/color/border.js +0 -111
- package/dist/es2019/tokens/default/color/chart.js +0 -939
- package/dist/es2019/tokens/default/color/icon.js +0 -105
- package/dist/es2019/tokens/default/color/interaction.js +0 -23
- package/dist/es2019/tokens/default/color/skeleton.js +0 -23
- package/dist/es2019/tokens/default/color/text.js +0 -139
- package/dist/es2019/tokens/default/elevation/shadow.js +0 -51
- package/dist/es2019/tokens/default/elevation/surface.js +0 -93
- package/dist/es2019/tokens/default/opacity/opacity.js +0 -21
- package/dist/es2019/tokens/default/shape/shape.js +0 -100
- package/dist/es2019/tokens/default/spacing/spacing.js +0 -214
- package/dist/es2019/tokens/default/typography/font-family.js +0 -55
- package/dist/es2019/tokens/default/typography/font-size.js +0 -71
- package/dist/es2019/tokens/default/typography/font-weight.js +0 -39
- package/dist/es2019/tokens/default/typography/font.js +0 -134
- package/dist/es2019/tokens/default/typography/letter-spacing.js +0 -47
- package/dist/es2019/tokens/default/typography/line-height.js +0 -63
- package/dist/es2019/tokens/default/utility/utility.js +0 -35
- package/dist/esm/palettes/legacy-palette.js +0 -843
- package/dist/esm/palettes/palette.js +0 -948
- package/dist/esm/palettes/shape-palette.js +0 -76
- package/dist/esm/palettes/spacing-scale.js +0 -148
- package/dist/esm/palettes/typography-palette.js +0 -266
- package/dist/esm/palettes/updated-saturated-palette.js +0 -313
- package/dist/esm/tokens/atlassian-dark/color/accent.js +0 -621
- package/dist/esm/tokens/atlassian-dark/color/background.js +0 -266
- package/dist/esm/tokens/atlassian-dark/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-dark/color/chart.js +0 -439
- package/dist/esm/tokens/atlassian-dark/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-dark/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-dark/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-dark/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-dark/elevation/shadow.js +0 -104
- package/dist/esm/tokens/atlassian-dark/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-dark/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-dark/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-dark-new-input-border/color/border.js +0 -10
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -15
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -20
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -12
- package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +0 -669
- package/dist/esm/tokens/atlassian-legacy-dark/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-legacy-dark/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-legacy-dark/color/chart.js +0 -465
- package/dist/esm/tokens/atlassian-legacy-dark/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-legacy-dark/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-legacy-dark/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-legacy-dark/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -104
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-legacy-dark/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +0 -669
- package/dist/esm/tokens/atlassian-legacy-light/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-legacy-light/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-legacy-light/color/chart.js +0 -465
- package/dist/esm/tokens/atlassian-legacy-light/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-legacy-light/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-legacy-light/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-legacy-light/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-legacy-light/elevation/shadow.js +0 -74
- package/dist/esm/tokens/atlassian-legacy-light/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-legacy-light/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-legacy-light/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-light/color/accent.js +0 -621
- package/dist/esm/tokens/atlassian-light/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-light/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-light/color/chart.js +0 -439
- package/dist/esm/tokens/atlassian-light/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-light/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-light/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-light/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-light/elevation/shadow.js +0 -74
- package/dist/esm/tokens/atlassian-light/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-light/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-light/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-light-new-input-border/color/border.js +0 -10
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -29
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -20
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -10
- package/dist/esm/tokens/atlassian-shape/shape.js +0 -46
- package/dist/esm/tokens/atlassian-spacing/spacing.js +0 -83
- package/dist/esm/tokens/atlassian-typography/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography/theme.js +0 -143
- package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +0 -31
- package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +0 -19
- package/dist/esm/tokens/atlassian-typography-adg3/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography-adg3/line-height.js +0 -28
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +0 -154
- package/dist/esm/tokens/atlassian-typography-minor3/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography-minor3/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography-minor3/theme.js +0 -154
- package/dist/esm/tokens/default/color/accent.js +0 -1421
- package/dist/esm/tokens/default/color/background.js +0 -579
- package/dist/esm/tokens/default/color/border.js +0 -111
- package/dist/esm/tokens/default/color/chart.js +0 -939
- package/dist/esm/tokens/default/color/icon.js +0 -105
- package/dist/esm/tokens/default/color/interaction.js +0 -23
- package/dist/esm/tokens/default/color/skeleton.js +0 -23
- package/dist/esm/tokens/default/color/text.js +0 -139
- package/dist/esm/tokens/default/elevation/shadow.js +0 -49
- package/dist/esm/tokens/default/elevation/surface.js +0 -93
- package/dist/esm/tokens/default/opacity/opacity.js +0 -21
- package/dist/esm/tokens/default/shape/shape.js +0 -100
- package/dist/esm/tokens/default/spacing/spacing.js +0 -214
- package/dist/esm/tokens/default/typography/font-family.js +0 -55
- package/dist/esm/tokens/default/typography/font-size.js +0 -71
- package/dist/esm/tokens/default/typography/font-weight.js +0 -39
- package/dist/esm/tokens/default/typography/font.js +0 -134
- package/dist/esm/tokens/default/typography/letter-spacing.js +0 -47
- package/dist/esm/tokens/default/typography/line-height.js +0 -63
- package/dist/esm/tokens/default/utility/utility.js +0 -35
- package/dist/types/palettes/legacy-palette.d.ts +0 -10
- package/dist/types/palettes/palette.d.ts +0 -5
- package/dist/types/palettes/shape-palette.d.ts +0 -73
- package/dist/types/palettes/spacing-scale.d.ts +0 -147
- package/dist/types/palettes/typography-palette.d.ts +0 -16
- package/dist/types/palettes/updated-saturated-palette.d.ts +0 -10
- package/dist/types/tokens/atlassian-dark/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-dark-new-input-border/color/border.d.ts +0 -10
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-legacy-dark/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-legacy-light/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-legacy-light/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-light/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-light-new-input-border/color/border.d.ts +0 -10
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-shape/shape.d.ts +0 -7
- package/dist/types/tokens/atlassian-spacing/spacing.d.ts +0 -10
- package/dist/types/tokens/atlassian-typography/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography/theme.d.ts +0 -10
- package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/font-size.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/font-weight.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/line-height.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +0 -145
- package/dist/types/tokens/atlassian-typography-minor3/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-minor3/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-minor3/theme.d.ts +0 -145
- package/dist/types/tokens/default/color/accent.d.ts +0 -4
- package/dist/types/tokens/default/color/background.d.ts +0 -4
- package/dist/types/tokens/default/color/border.d.ts +0 -4
- package/dist/types/tokens/default/color/chart.d.ts +0 -4
- package/dist/types/tokens/default/color/icon.d.ts +0 -4
- package/dist/types/tokens/default/color/interaction.d.ts +0 -4
- package/dist/types/tokens/default/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/default/color/text.d.ts +0 -4
- package/dist/types/tokens/default/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/default/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/default/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/default/shape/shape.d.ts +0 -3
- package/dist/types/tokens/default/spacing/spacing.d.ts +0 -8
- package/dist/types/tokens/default/typography/font-family.d.ts +0 -4
- package/dist/types/tokens/default/typography/font-size.d.ts +0 -4
- package/dist/types/tokens/default/typography/font-weight.d.ts +0 -4
- package/dist/types/tokens/default/typography/font.d.ts +0 -20
- package/dist/types/tokens/default/typography/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/default/typography/line-height.d.ts +0 -4
- package/dist/types/tokens/default/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/palettes/legacy-palette.d.ts +0 -10
- package/dist/types-ts4.5/palettes/palette.d.ts +0 -5
- package/dist/types-ts4.5/palettes/shape-palette.d.ts +0 -73
- package/dist/types-ts4.5/palettes/spacing-scale.d.ts +0 -147
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +0 -16
- package/dist/types-ts4.5/palettes/updated-saturated-palette.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-dark/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-dark/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-dark-new-input-border/color/border.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-light/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-light/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-light-new-input-border/color/border.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-shape/shape.d.ts +0 -7
- package/dist/types-ts4.5/tokens/atlassian-spacing/spacing.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-typography/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-size.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-weight.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/line-height.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +0 -145
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/theme.d.ts +0 -145
- package/dist/types-ts4.5/tokens/default/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/default/shape/shape.d.ts +0 -3
- package/dist/types-ts4.5/tokens/default/spacing/spacing.d.ts +0 -8
- package/dist/types-ts4.5/tokens/default/typography/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font-size.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font-weight.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font.d.ts +0 -20
- package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/line-height.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/utility/utility.d.ts +0 -5
|
@@ -1,1427 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var color = {
|
|
8
|
-
color: {
|
|
9
|
-
text: {
|
|
10
|
-
accent: {
|
|
11
|
-
blue: {
|
|
12
|
-
'[default]': {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'paint',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.6.0',
|
|
17
|
-
description: 'Use for blue text on subtlest and subtler blue accent backgrounds when there is no meaning tied to the color.'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
bolder: {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'paint',
|
|
23
|
-
state: 'active',
|
|
24
|
-
introduced: '0.7.0',
|
|
25
|
-
description: 'Use for blue text on subtle blue accent backgrounds when there is no meaning tied to the color.'
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
red: {
|
|
30
|
-
'[default]': {
|
|
31
|
-
attributes: {
|
|
32
|
-
group: 'paint',
|
|
33
|
-
state: 'active',
|
|
34
|
-
introduced: '0.6.0',
|
|
35
|
-
description: 'Use for red text on subtlest and subtler red accent backgrounds when there is no meaning tied to the color.'
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
bolder: {
|
|
39
|
-
attributes: {
|
|
40
|
-
group: 'paint',
|
|
41
|
-
state: 'active',
|
|
42
|
-
introduced: '0.7.0',
|
|
43
|
-
description: 'Use for red text on subtle red accent backgrounds when there is no meaning tied to the color.'
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
orange: {
|
|
48
|
-
'[default]': {
|
|
49
|
-
attributes: {
|
|
50
|
-
group: 'paint',
|
|
51
|
-
state: 'active',
|
|
52
|
-
introduced: '0.6.0',
|
|
53
|
-
description: 'Use for orange text on subtlest and subtler orange accent backgrounds when there is no meaning tied to the color.'
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
bolder: {
|
|
57
|
-
attributes: {
|
|
58
|
-
group: 'paint',
|
|
59
|
-
state: 'active',
|
|
60
|
-
introduced: '0.7.0',
|
|
61
|
-
description: 'Use for orange text on subtle orange accent backgrounds when there is no meaning tied to the color.'
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
yellow: {
|
|
66
|
-
'[default]': {
|
|
67
|
-
attributes: {
|
|
68
|
-
group: 'paint',
|
|
69
|
-
state: 'active',
|
|
70
|
-
introduced: '0.6.0',
|
|
71
|
-
description: 'Use for yellow text on subtlest and subtler yellow accent backgrounds when there is no meaning tied to the color.'
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
bolder: {
|
|
75
|
-
attributes: {
|
|
76
|
-
group: 'paint',
|
|
77
|
-
state: 'active',
|
|
78
|
-
introduced: '0.7.0',
|
|
79
|
-
description: 'Use for yellow text on subtle yellow accent backgrounds when there is no meaning tied to the color.'
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
green: {
|
|
84
|
-
'[default]': {
|
|
85
|
-
attributes: {
|
|
86
|
-
group: 'paint',
|
|
87
|
-
state: 'active',
|
|
88
|
-
introduced: '0.6.0',
|
|
89
|
-
description: 'Use for green text on subtlest and subtler green accent backgrounds when there is no meaning tied to the color.'
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
bolder: {
|
|
93
|
-
attributes: {
|
|
94
|
-
group: 'paint',
|
|
95
|
-
state: 'active',
|
|
96
|
-
introduced: '0.7.0',
|
|
97
|
-
description: 'Use for green text on subtle green accent backgrounds when there is no meaning tied to the color.'
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
purple: {
|
|
102
|
-
'[default]': {
|
|
103
|
-
attributes: {
|
|
104
|
-
group: 'paint',
|
|
105
|
-
state: 'active',
|
|
106
|
-
introduced: '0.6.0',
|
|
107
|
-
description: 'Use for purple text on subtlest and subtler purple accent backgrounds when there is no meaning tied to the color.'
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
bolder: {
|
|
111
|
-
attributes: {
|
|
112
|
-
group: 'paint',
|
|
113
|
-
state: 'active',
|
|
114
|
-
introduced: '0.7.0',
|
|
115
|
-
description: 'Use for purple text on subtle purple accent backgrounds when there is no meaning tied to the color.'
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
},
|
|
119
|
-
teal: {
|
|
120
|
-
'[default]': {
|
|
121
|
-
attributes: {
|
|
122
|
-
group: 'paint',
|
|
123
|
-
state: 'active',
|
|
124
|
-
introduced: '0.6.0',
|
|
125
|
-
description: 'Use for teal text on subtlest and subtler teal accent backgrounds when there is no meaning tied to the color.'
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
bolder: {
|
|
129
|
-
attributes: {
|
|
130
|
-
group: 'paint',
|
|
131
|
-
state: 'active',
|
|
132
|
-
introduced: '0.7.0',
|
|
133
|
-
description: 'Use for teal text on subtle teal accent backgrounds when there is no meaning tied to the color.'
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
magenta: {
|
|
138
|
-
'[default]': {
|
|
139
|
-
attributes: {
|
|
140
|
-
group: 'paint',
|
|
141
|
-
state: 'active',
|
|
142
|
-
introduced: '0.6.0',
|
|
143
|
-
description: 'Use for magenta text on subtlest and subtler magenta accent backgrounds when there is no meaning tied to the color.'
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
bolder: {
|
|
147
|
-
attributes: {
|
|
148
|
-
group: 'paint',
|
|
149
|
-
state: 'active',
|
|
150
|
-
introduced: '0.7.0',
|
|
151
|
-
description: 'Use for magenta text on subtle magenta accent backgrounds when there is no meaning tied to the color.'
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
lime: {
|
|
156
|
-
'[default]': {
|
|
157
|
-
attributes: {
|
|
158
|
-
group: 'paint',
|
|
159
|
-
state: 'active',
|
|
160
|
-
introduced: '1.8.0',
|
|
161
|
-
description: 'Use for lime text on subtlest and subtler lime accent backgrounds when there is no meaning tied to the color.'
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
bolder: {
|
|
165
|
-
attributes: {
|
|
166
|
-
group: 'paint',
|
|
167
|
-
state: 'active',
|
|
168
|
-
introduced: '1.8.0',
|
|
169
|
-
description: 'Use for lime text on subtle lime accent backgrounds when there is no meaning tied to the color.'
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
gray: {
|
|
174
|
-
'[default]': {
|
|
175
|
-
attributes: {
|
|
176
|
-
group: 'paint',
|
|
177
|
-
state: 'active',
|
|
178
|
-
introduced: '0.10.5',
|
|
179
|
-
description: 'Use for text on non-bold gray accent backgrounds, such as colored tags.'
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
bolder: {
|
|
183
|
-
attributes: {
|
|
184
|
-
group: 'paint',
|
|
185
|
-
state: 'active',
|
|
186
|
-
introduced: '0.10.5',
|
|
187
|
-
description: 'Use for text and icons on gray subtle accent backgrounds.'
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
icon: {
|
|
194
|
-
accent: {
|
|
195
|
-
blue: {
|
|
196
|
-
attributes: {
|
|
197
|
-
group: 'paint',
|
|
198
|
-
state: 'active',
|
|
199
|
-
introduced: '0.6.0',
|
|
200
|
-
description: 'Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
red: {
|
|
204
|
-
attributes: {
|
|
205
|
-
group: 'paint',
|
|
206
|
-
state: 'active',
|
|
207
|
-
introduced: '0.6.0',
|
|
208
|
-
description: 'Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
orange: {
|
|
212
|
-
attributes: {
|
|
213
|
-
group: 'paint',
|
|
214
|
-
state: 'active',
|
|
215
|
-
introduced: '0.6.0',
|
|
216
|
-
description: 'Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
yellow: {
|
|
220
|
-
attributes: {
|
|
221
|
-
group: 'paint',
|
|
222
|
-
state: 'active',
|
|
223
|
-
introduced: '0.6.0',
|
|
224
|
-
description: 'Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
green: {
|
|
228
|
-
attributes: {
|
|
229
|
-
group: 'paint',
|
|
230
|
-
state: 'active',
|
|
231
|
-
introduced: '0.6.0',
|
|
232
|
-
description: 'Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
purple: {
|
|
236
|
-
attributes: {
|
|
237
|
-
group: 'paint',
|
|
238
|
-
state: 'active',
|
|
239
|
-
introduced: '0.6.0',
|
|
240
|
-
description: 'Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
241
|
-
}
|
|
242
|
-
},
|
|
243
|
-
teal: {
|
|
244
|
-
attributes: {
|
|
245
|
-
group: 'paint',
|
|
246
|
-
state: 'active',
|
|
247
|
-
introduced: '0.6.0',
|
|
248
|
-
description: 'Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
magenta: {
|
|
252
|
-
attributes: {
|
|
253
|
-
group: 'paint',
|
|
254
|
-
state: 'active',
|
|
255
|
-
introduced: '0.6.0',
|
|
256
|
-
description: 'Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
lime: {
|
|
260
|
-
attributes: {
|
|
261
|
-
group: 'paint',
|
|
262
|
-
state: 'active',
|
|
263
|
-
introduced: '1.6.0',
|
|
264
|
-
description: 'Use for lime icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
gray: {
|
|
268
|
-
attributes: {
|
|
269
|
-
group: 'paint',
|
|
270
|
-
state: 'active',
|
|
271
|
-
introduced: '0.10.5',
|
|
272
|
-
description: 'Use for icons on non-bold gray accent backgrounds, such as file type icons.'
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
border: {
|
|
278
|
-
accent: {
|
|
279
|
-
blue: {
|
|
280
|
-
attributes: {
|
|
281
|
-
group: 'paint',
|
|
282
|
-
state: 'active',
|
|
283
|
-
introduced: '0.6.0',
|
|
284
|
-
description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
285
|
-
}
|
|
286
|
-
},
|
|
287
|
-
red: {
|
|
288
|
-
attributes: {
|
|
289
|
-
group: 'paint',
|
|
290
|
-
state: 'active',
|
|
291
|
-
introduced: '0.6.0',
|
|
292
|
-
description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
293
|
-
}
|
|
294
|
-
},
|
|
295
|
-
orange: {
|
|
296
|
-
attributes: {
|
|
297
|
-
group: 'paint',
|
|
298
|
-
state: 'active',
|
|
299
|
-
introduced: '0.6.0',
|
|
300
|
-
description: 'Use for orange borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
yellow: {
|
|
304
|
-
attributes: {
|
|
305
|
-
group: 'paint',
|
|
306
|
-
state: 'active',
|
|
307
|
-
introduced: '0.6.0',
|
|
308
|
-
description: 'Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
green: {
|
|
312
|
-
attributes: {
|
|
313
|
-
group: 'paint',
|
|
314
|
-
state: 'active',
|
|
315
|
-
introduced: '0.6.0',
|
|
316
|
-
description: 'Use for green borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
purple: {
|
|
320
|
-
attributes: {
|
|
321
|
-
group: 'paint',
|
|
322
|
-
state: 'active',
|
|
323
|
-
introduced: '0.6.0',
|
|
324
|
-
description: 'Use for purple borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
325
|
-
}
|
|
326
|
-
},
|
|
327
|
-
teal: {
|
|
328
|
-
attributes: {
|
|
329
|
-
group: 'paint',
|
|
330
|
-
state: 'active',
|
|
331
|
-
introduced: '0.6.0',
|
|
332
|
-
description: 'Use for teal borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
333
|
-
}
|
|
334
|
-
},
|
|
335
|
-
lime: {
|
|
336
|
-
attributes: {
|
|
337
|
-
group: 'paint',
|
|
338
|
-
state: 'active',
|
|
339
|
-
introduced: '1.6.0',
|
|
340
|
-
description: 'Use for lime borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
magenta: {
|
|
344
|
-
attributes: {
|
|
345
|
-
group: 'paint',
|
|
346
|
-
state: 'active',
|
|
347
|
-
introduced: '0.6.0',
|
|
348
|
-
description: 'Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
349
|
-
}
|
|
350
|
-
},
|
|
351
|
-
gray: {
|
|
352
|
-
attributes: {
|
|
353
|
-
group: 'paint',
|
|
354
|
-
state: 'active',
|
|
355
|
-
introduced: '0.10.5',
|
|
356
|
-
description: 'Use for borders on non-bold gray accent backgrounds.'
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
},
|
|
361
|
-
background: {
|
|
362
|
-
accent: {
|
|
363
|
-
blue: {
|
|
364
|
-
subtlest: {
|
|
365
|
-
'[default]': {
|
|
366
|
-
attributes: {
|
|
367
|
-
group: 'paint',
|
|
368
|
-
state: 'active',
|
|
369
|
-
introduced: '0.7.0',
|
|
370
|
-
description: 'Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
hovered: {
|
|
374
|
-
attributes: {
|
|
375
|
-
group: 'paint',
|
|
376
|
-
state: 'active',
|
|
377
|
-
introduced: '1.19.0',
|
|
378
|
-
description: 'Hovered state of color.background.accent.blue.subtlest.'
|
|
379
|
-
}
|
|
380
|
-
},
|
|
381
|
-
pressed: {
|
|
382
|
-
attributes: {
|
|
383
|
-
group: 'paint',
|
|
384
|
-
state: 'active',
|
|
385
|
-
introduced: '1.19.0',
|
|
386
|
-
description: 'Pressed state of color.background.accent.blue.subtlest.'
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
},
|
|
390
|
-
subtler: {
|
|
391
|
-
'[default]': {
|
|
392
|
-
attributes: {
|
|
393
|
-
group: 'paint',
|
|
394
|
-
state: 'active',
|
|
395
|
-
introduced: '0.7.0',
|
|
396
|
-
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
397
|
-
}
|
|
398
|
-
},
|
|
399
|
-
hovered: {
|
|
400
|
-
attributes: {
|
|
401
|
-
group: 'paint',
|
|
402
|
-
state: 'active',
|
|
403
|
-
introduced: '1.19.0',
|
|
404
|
-
description: 'Hovered state of color.background.accent.blue.subtler.'
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
pressed: {
|
|
408
|
-
attributes: {
|
|
409
|
-
group: 'paint',
|
|
410
|
-
state: 'active',
|
|
411
|
-
introduced: '1.19.0',
|
|
412
|
-
description: 'Pressed state of color.background.accent.blue.subtler.'
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
},
|
|
416
|
-
subtle: {
|
|
417
|
-
'[default]': {
|
|
418
|
-
attributes: {
|
|
419
|
-
group: 'paint',
|
|
420
|
-
state: 'active',
|
|
421
|
-
introduced: '0.7.0',
|
|
422
|
-
description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
423
|
-
}
|
|
424
|
-
},
|
|
425
|
-
hovered: {
|
|
426
|
-
attributes: {
|
|
427
|
-
group: 'paint',
|
|
428
|
-
state: 'active',
|
|
429
|
-
introduced: '1.19.0',
|
|
430
|
-
description: 'Hovered state of color.background.accent.blue.subtle.'
|
|
431
|
-
}
|
|
432
|
-
},
|
|
433
|
-
pressed: {
|
|
434
|
-
attributes: {
|
|
435
|
-
group: 'paint',
|
|
436
|
-
state: 'active',
|
|
437
|
-
introduced: '1.19.0',
|
|
438
|
-
description: 'Pressed state of color.background.accent.blue.subtle.'
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
bolder: {
|
|
443
|
-
'[default]': {
|
|
444
|
-
attributes: {
|
|
445
|
-
group: 'paint',
|
|
446
|
-
state: 'active',
|
|
447
|
-
introduced: '0.7.0',
|
|
448
|
-
description: 'Use for blue backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
449
|
-
}
|
|
450
|
-
},
|
|
451
|
-
hovered: {
|
|
452
|
-
attributes: {
|
|
453
|
-
group: 'paint',
|
|
454
|
-
state: 'active',
|
|
455
|
-
introduced: '1.19.0',
|
|
456
|
-
description: 'Hovered state of color.background.accent.blue.bolder.'
|
|
457
|
-
}
|
|
458
|
-
},
|
|
459
|
-
pressed: {
|
|
460
|
-
attributes: {
|
|
461
|
-
group: 'paint',
|
|
462
|
-
state: 'active',
|
|
463
|
-
introduced: '1.19.0',
|
|
464
|
-
description: 'Pressed state of color.background.accent.blue.bolder.'
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
},
|
|
469
|
-
red: {
|
|
470
|
-
subtlest: {
|
|
471
|
-
'[default]': {
|
|
472
|
-
attributes: {
|
|
473
|
-
group: 'paint',
|
|
474
|
-
state: 'active',
|
|
475
|
-
introduced: '0.7.0',
|
|
476
|
-
description: 'Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
477
|
-
}
|
|
478
|
-
},
|
|
479
|
-
hovered: {
|
|
480
|
-
attributes: {
|
|
481
|
-
group: 'paint',
|
|
482
|
-
state: 'active',
|
|
483
|
-
introduced: '1.19.0',
|
|
484
|
-
description: 'Hovered state of color.background.accent.red.subtlest.'
|
|
485
|
-
}
|
|
486
|
-
},
|
|
487
|
-
pressed: {
|
|
488
|
-
attributes: {
|
|
489
|
-
group: 'paint',
|
|
490
|
-
state: 'active',
|
|
491
|
-
introduced: '1.19.0',
|
|
492
|
-
description: 'Pressed state of color.background.accent.red.subtlest.'
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
},
|
|
496
|
-
subtler: {
|
|
497
|
-
'[default]': {
|
|
498
|
-
attributes: {
|
|
499
|
-
group: 'paint',
|
|
500
|
-
state: 'active',
|
|
501
|
-
introduced: '0.7.0',
|
|
502
|
-
description: 'Use for red backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
503
|
-
}
|
|
504
|
-
},
|
|
505
|
-
hovered: {
|
|
506
|
-
attributes: {
|
|
507
|
-
group: 'paint',
|
|
508
|
-
state: 'active',
|
|
509
|
-
introduced: '1.19.0',
|
|
510
|
-
description: 'Hovered state of color.background.accent.red.subtler.'
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
pressed: {
|
|
514
|
-
attributes: {
|
|
515
|
-
group: 'paint',
|
|
516
|
-
state: 'active',
|
|
517
|
-
introduced: '1.19.0',
|
|
518
|
-
description: 'Pressed state of color.background.accent.red.subtler.'
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
subtle: {
|
|
523
|
-
'[default]': {
|
|
524
|
-
attributes: {
|
|
525
|
-
group: 'paint',
|
|
526
|
-
state: 'active',
|
|
527
|
-
introduced: '0.7.0',
|
|
528
|
-
description: 'Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
hovered: {
|
|
532
|
-
attributes: {
|
|
533
|
-
group: 'paint',
|
|
534
|
-
state: 'active',
|
|
535
|
-
introduced: '1.19.0',
|
|
536
|
-
description: 'Hovered state of color.background.accent.red.subtle.'
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
pressed: {
|
|
540
|
-
attributes: {
|
|
541
|
-
group: 'paint',
|
|
542
|
-
state: 'active',
|
|
543
|
-
introduced: '1.19.0',
|
|
544
|
-
description: 'Pressed state of color.background.accent.red.subtle.'
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
},
|
|
548
|
-
bolder: {
|
|
549
|
-
'[default]': {
|
|
550
|
-
attributes: {
|
|
551
|
-
group: 'paint',
|
|
552
|
-
state: 'active',
|
|
553
|
-
introduced: '0.7.0',
|
|
554
|
-
description: 'Use for red backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
555
|
-
}
|
|
556
|
-
},
|
|
557
|
-
hovered: {
|
|
558
|
-
attributes: {
|
|
559
|
-
group: 'paint',
|
|
560
|
-
state: 'active',
|
|
561
|
-
introduced: '1.19.0',
|
|
562
|
-
description: 'Hovered state of color.background.accent.red.bolder.'
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
pressed: {
|
|
566
|
-
attributes: {
|
|
567
|
-
group: 'paint',
|
|
568
|
-
state: 'active',
|
|
569
|
-
introduced: '1.19.0',
|
|
570
|
-
description: 'Pressed state of color.background.accent.red.bolder.'
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
},
|
|
575
|
-
orange: {
|
|
576
|
-
subtlest: {
|
|
577
|
-
'[default]': {
|
|
578
|
-
attributes: {
|
|
579
|
-
group: 'paint',
|
|
580
|
-
state: 'active',
|
|
581
|
-
introduced: '0.7.0',
|
|
582
|
-
description: 'Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
hovered: {
|
|
586
|
-
attributes: {
|
|
587
|
-
group: 'paint',
|
|
588
|
-
state: 'active',
|
|
589
|
-
introduced: '1.19.0',
|
|
590
|
-
description: 'Hovered state of color.background.accent.orange.subtlest.'
|
|
591
|
-
}
|
|
592
|
-
},
|
|
593
|
-
pressed: {
|
|
594
|
-
attributes: {
|
|
595
|
-
group: 'paint',
|
|
596
|
-
state: 'active',
|
|
597
|
-
introduced: '1.19.0',
|
|
598
|
-
description: 'Pressed state of color.background.accent.orange.subtlest.'
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
},
|
|
602
|
-
subtler: {
|
|
603
|
-
'[default]': {
|
|
604
|
-
attributes: {
|
|
605
|
-
group: 'paint',
|
|
606
|
-
state: 'active',
|
|
607
|
-
introduced: '0.7.0',
|
|
608
|
-
description: 'Use for orange backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
609
|
-
}
|
|
610
|
-
},
|
|
611
|
-
hovered: {
|
|
612
|
-
attributes: {
|
|
613
|
-
group: 'paint',
|
|
614
|
-
state: 'active',
|
|
615
|
-
introduced: '1.19.0',
|
|
616
|
-
description: 'Hovered state of color.background.accent.orange.subtler.'
|
|
617
|
-
}
|
|
618
|
-
},
|
|
619
|
-
pressed: {
|
|
620
|
-
attributes: {
|
|
621
|
-
group: 'paint',
|
|
622
|
-
state: 'active',
|
|
623
|
-
introduced: '1.19.0',
|
|
624
|
-
description: 'Pressed state of color.background.accent.orange.subtler.'
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
},
|
|
628
|
-
subtle: {
|
|
629
|
-
'[default]': {
|
|
630
|
-
attributes: {
|
|
631
|
-
group: 'paint',
|
|
632
|
-
state: 'active',
|
|
633
|
-
introduced: '0.7.0',
|
|
634
|
-
description: 'Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
635
|
-
}
|
|
636
|
-
},
|
|
637
|
-
hovered: {
|
|
638
|
-
attributes: {
|
|
639
|
-
group: 'paint',
|
|
640
|
-
state: 'active',
|
|
641
|
-
introduced: '1.19.0',
|
|
642
|
-
description: 'Hovered state of color.background.accent.orange.subtle.'
|
|
643
|
-
}
|
|
644
|
-
},
|
|
645
|
-
pressed: {
|
|
646
|
-
attributes: {
|
|
647
|
-
group: 'paint',
|
|
648
|
-
state: 'active',
|
|
649
|
-
introduced: '1.19.0',
|
|
650
|
-
description: 'Pressed state of color.background.accent.orange.subtle.'
|
|
651
|
-
}
|
|
652
|
-
}
|
|
653
|
-
},
|
|
654
|
-
bolder: {
|
|
655
|
-
'[default]': {
|
|
656
|
-
attributes: {
|
|
657
|
-
group: 'paint',
|
|
658
|
-
state: 'active',
|
|
659
|
-
introduced: '0.7.0',
|
|
660
|
-
description: 'Use for orange backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
661
|
-
}
|
|
662
|
-
},
|
|
663
|
-
hovered: {
|
|
664
|
-
attributes: {
|
|
665
|
-
group: 'paint',
|
|
666
|
-
state: 'active',
|
|
667
|
-
introduced: '1.19.0',
|
|
668
|
-
description: 'Hovered state of color.background.accent.orange.bolder.'
|
|
669
|
-
}
|
|
670
|
-
},
|
|
671
|
-
pressed: {
|
|
672
|
-
attributes: {
|
|
673
|
-
group: 'paint',
|
|
674
|
-
state: 'active',
|
|
675
|
-
introduced: '1.19.0',
|
|
676
|
-
description: 'Pressed state of color.background.accent.orange.bolder.'
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
},
|
|
681
|
-
yellow: {
|
|
682
|
-
subtlest: {
|
|
683
|
-
'[default]': {
|
|
684
|
-
attributes: {
|
|
685
|
-
group: 'paint',
|
|
686
|
-
state: 'active',
|
|
687
|
-
introduced: '0.7.0',
|
|
688
|
-
description: 'Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
689
|
-
}
|
|
690
|
-
},
|
|
691
|
-
hovered: {
|
|
692
|
-
attributes: {
|
|
693
|
-
group: 'paint',
|
|
694
|
-
state: 'active',
|
|
695
|
-
introduced: '1.19.0',
|
|
696
|
-
description: 'Hovered state of color.background.accent.yellow.subtlest.'
|
|
697
|
-
}
|
|
698
|
-
},
|
|
699
|
-
pressed: {
|
|
700
|
-
attributes: {
|
|
701
|
-
group: 'paint',
|
|
702
|
-
state: 'active',
|
|
703
|
-
introduced: '1.19.0',
|
|
704
|
-
description: 'Pressed state of color.background.accent.yellow.subtlest.'
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
},
|
|
708
|
-
subtler: {
|
|
709
|
-
'[default]': {
|
|
710
|
-
attributes: {
|
|
711
|
-
group: 'paint',
|
|
712
|
-
state: 'active',
|
|
713
|
-
introduced: '0.7.0',
|
|
714
|
-
description: 'Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
715
|
-
}
|
|
716
|
-
},
|
|
717
|
-
hovered: {
|
|
718
|
-
attributes: {
|
|
719
|
-
group: 'paint',
|
|
720
|
-
state: 'active',
|
|
721
|
-
introduced: '1.19.0',
|
|
722
|
-
description: 'Hovered state of color.background.accent.yellow.subtler.'
|
|
723
|
-
}
|
|
724
|
-
},
|
|
725
|
-
pressed: {
|
|
726
|
-
attributes: {
|
|
727
|
-
group: 'paint',
|
|
728
|
-
state: 'active',
|
|
729
|
-
introduced: '1.19.0',
|
|
730
|
-
description: 'Pressed state of color.background.accent.yellow.subtler.'
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
},
|
|
734
|
-
subtle: {
|
|
735
|
-
'[default]': {
|
|
736
|
-
attributes: {
|
|
737
|
-
group: 'paint',
|
|
738
|
-
state: 'active',
|
|
739
|
-
introduced: '0.7.0',
|
|
740
|
-
description: 'Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
741
|
-
}
|
|
742
|
-
},
|
|
743
|
-
hovered: {
|
|
744
|
-
attributes: {
|
|
745
|
-
group: 'paint',
|
|
746
|
-
state: 'active',
|
|
747
|
-
introduced: '1.19.0',
|
|
748
|
-
description: 'Hovered state of color.background.accent.yellow.subtle.'
|
|
749
|
-
}
|
|
750
|
-
},
|
|
751
|
-
pressed: {
|
|
752
|
-
attributes: {
|
|
753
|
-
group: 'paint',
|
|
754
|
-
state: 'active',
|
|
755
|
-
introduced: '1.19.0',
|
|
756
|
-
description: 'Pressed state of color.background.accent.yellow.subtle.'
|
|
757
|
-
}
|
|
758
|
-
}
|
|
759
|
-
},
|
|
760
|
-
bolder: {
|
|
761
|
-
'[default]': {
|
|
762
|
-
attributes: {
|
|
763
|
-
group: 'paint',
|
|
764
|
-
state: 'active',
|
|
765
|
-
introduced: '0.7.0',
|
|
766
|
-
description: 'Use for yellow backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
767
|
-
}
|
|
768
|
-
},
|
|
769
|
-
hovered: {
|
|
770
|
-
attributes: {
|
|
771
|
-
group: 'paint',
|
|
772
|
-
state: 'active',
|
|
773
|
-
introduced: '1.19.0',
|
|
774
|
-
description: 'Hovered state of color.background.accent.yellow.bolder.'
|
|
775
|
-
}
|
|
776
|
-
},
|
|
777
|
-
pressed: {
|
|
778
|
-
attributes: {
|
|
779
|
-
group: 'paint',
|
|
780
|
-
state: 'active',
|
|
781
|
-
introduced: '1.19.0',
|
|
782
|
-
description: 'Pressed state of color.background.accent.yellow.bolder.'
|
|
783
|
-
}
|
|
784
|
-
}
|
|
785
|
-
}
|
|
786
|
-
},
|
|
787
|
-
green: {
|
|
788
|
-
subtlest: {
|
|
789
|
-
'[default]': {
|
|
790
|
-
attributes: {
|
|
791
|
-
group: 'paint',
|
|
792
|
-
state: 'active',
|
|
793
|
-
introduced: '0.7.0',
|
|
794
|
-
description: 'Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
795
|
-
}
|
|
796
|
-
},
|
|
797
|
-
hovered: {
|
|
798
|
-
attributes: {
|
|
799
|
-
group: 'paint',
|
|
800
|
-
state: 'active',
|
|
801
|
-
introduced: '1.19.0',
|
|
802
|
-
description: 'Hovered state of color.background.accent.green.subtlest.'
|
|
803
|
-
}
|
|
804
|
-
},
|
|
805
|
-
pressed: {
|
|
806
|
-
attributes: {
|
|
807
|
-
group: 'paint',
|
|
808
|
-
state: 'active',
|
|
809
|
-
introduced: '1.19.0',
|
|
810
|
-
description: 'Pressed state of color.background.accent.green.subtlest.'
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
},
|
|
814
|
-
subtler: {
|
|
815
|
-
'[default]': {
|
|
816
|
-
attributes: {
|
|
817
|
-
group: 'paint',
|
|
818
|
-
state: 'active',
|
|
819
|
-
introduced: '0.7.0',
|
|
820
|
-
description: 'Use for green backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
821
|
-
}
|
|
822
|
-
},
|
|
823
|
-
hovered: {
|
|
824
|
-
attributes: {
|
|
825
|
-
group: 'paint',
|
|
826
|
-
state: 'active',
|
|
827
|
-
introduced: '1.19.0',
|
|
828
|
-
description: 'Hovered state of color.background.accent.green.subtler.'
|
|
829
|
-
}
|
|
830
|
-
},
|
|
831
|
-
pressed: {
|
|
832
|
-
attributes: {
|
|
833
|
-
group: 'paint',
|
|
834
|
-
state: 'active',
|
|
835
|
-
introduced: '1.19.0',
|
|
836
|
-
description: 'Pressed state of color.background.accent.green.subtler.'
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
subtle: {
|
|
841
|
-
'[default]': {
|
|
842
|
-
attributes: {
|
|
843
|
-
group: 'paint',
|
|
844
|
-
state: 'active',
|
|
845
|
-
introduced: '0.7.0',
|
|
846
|
-
description: 'Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
847
|
-
}
|
|
848
|
-
},
|
|
849
|
-
hovered: {
|
|
850
|
-
attributes: {
|
|
851
|
-
group: 'paint',
|
|
852
|
-
state: 'active',
|
|
853
|
-
introduced: '1.19.0',
|
|
854
|
-
description: 'Hovered state of color.background.accent.green.subtle.'
|
|
855
|
-
}
|
|
856
|
-
},
|
|
857
|
-
pressed: {
|
|
858
|
-
attributes: {
|
|
859
|
-
group: 'paint',
|
|
860
|
-
state: 'active',
|
|
861
|
-
introduced: '1.19.0',
|
|
862
|
-
description: 'Pressed state of color.background.accent.green.subtle.'
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
},
|
|
866
|
-
bolder: {
|
|
867
|
-
'[default]': {
|
|
868
|
-
attributes: {
|
|
869
|
-
group: 'paint',
|
|
870
|
-
state: 'active',
|
|
871
|
-
introduced: '0.7.0',
|
|
872
|
-
description: 'Use for green backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
hovered: {
|
|
876
|
-
attributes: {
|
|
877
|
-
group: 'paint',
|
|
878
|
-
state: 'active',
|
|
879
|
-
introduced: '1.19.0',
|
|
880
|
-
description: 'Hovered state of color.background.accent.green.bolder.'
|
|
881
|
-
}
|
|
882
|
-
},
|
|
883
|
-
pressed: {
|
|
884
|
-
attributes: {
|
|
885
|
-
group: 'paint',
|
|
886
|
-
state: 'active',
|
|
887
|
-
introduced: '1.19.0',
|
|
888
|
-
description: 'Pressed state of color.background.accent.green.bolder.'
|
|
889
|
-
}
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
},
|
|
893
|
-
teal: {
|
|
894
|
-
subtlest: {
|
|
895
|
-
'[default]': {
|
|
896
|
-
attributes: {
|
|
897
|
-
group: 'paint',
|
|
898
|
-
state: 'active',
|
|
899
|
-
introduced: '0.7.0',
|
|
900
|
-
description: 'Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
901
|
-
}
|
|
902
|
-
},
|
|
903
|
-
hovered: {
|
|
904
|
-
attributes: {
|
|
905
|
-
group: 'paint',
|
|
906
|
-
state: 'active',
|
|
907
|
-
introduced: '1.19.0',
|
|
908
|
-
description: 'Hovered state of color.background.accent.teal.subtlest.'
|
|
909
|
-
}
|
|
910
|
-
},
|
|
911
|
-
pressed: {
|
|
912
|
-
attributes: {
|
|
913
|
-
group: 'paint',
|
|
914
|
-
state: 'active',
|
|
915
|
-
introduced: '1.19.0',
|
|
916
|
-
description: 'Pressed state of color.background.accent.teal.subtlest.'
|
|
917
|
-
}
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
subtler: {
|
|
921
|
-
'[default]': {
|
|
922
|
-
attributes: {
|
|
923
|
-
group: 'paint',
|
|
924
|
-
state: 'active',
|
|
925
|
-
introduced: '0.7.0',
|
|
926
|
-
description: 'Use for teal backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
hovered: {
|
|
930
|
-
attributes: {
|
|
931
|
-
group: 'paint',
|
|
932
|
-
state: 'active',
|
|
933
|
-
introduced: '1.19.0',
|
|
934
|
-
description: 'Hovered state of color.background.accent.teal.subtler.'
|
|
935
|
-
}
|
|
936
|
-
},
|
|
937
|
-
pressed: {
|
|
938
|
-
attributes: {
|
|
939
|
-
group: 'paint',
|
|
940
|
-
state: 'active',
|
|
941
|
-
introduced: '1.19.0',
|
|
942
|
-
description: 'Pressed state of color.background.accent.teal.subtler.'
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
},
|
|
946
|
-
subtle: {
|
|
947
|
-
'[default]': {
|
|
948
|
-
attributes: {
|
|
949
|
-
group: 'paint',
|
|
950
|
-
state: 'active',
|
|
951
|
-
introduced: '0.7.0',
|
|
952
|
-
description: 'Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
953
|
-
}
|
|
954
|
-
},
|
|
955
|
-
hovered: {
|
|
956
|
-
attributes: {
|
|
957
|
-
group: 'paint',
|
|
958
|
-
state: 'active',
|
|
959
|
-
introduced: '1.19.0',
|
|
960
|
-
description: 'Hovered state of color.background.accent.teal.subtle.'
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
pressed: {
|
|
964
|
-
attributes: {
|
|
965
|
-
group: 'paint',
|
|
966
|
-
state: 'active',
|
|
967
|
-
introduced: '1.19.0',
|
|
968
|
-
description: 'Pressed state of color.background.accent.teal.subtle.'
|
|
969
|
-
}
|
|
970
|
-
}
|
|
971
|
-
},
|
|
972
|
-
bolder: {
|
|
973
|
-
'[default]': {
|
|
974
|
-
attributes: {
|
|
975
|
-
group: 'paint',
|
|
976
|
-
state: 'active',
|
|
977
|
-
introduced: '0.7.0',
|
|
978
|
-
description: 'Use for teal backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
979
|
-
}
|
|
980
|
-
},
|
|
981
|
-
hovered: {
|
|
982
|
-
attributes: {
|
|
983
|
-
group: 'paint',
|
|
984
|
-
state: 'active',
|
|
985
|
-
introduced: '1.19.0',
|
|
986
|
-
description: 'Hovered state of color.background.accent.teal.bolder.'
|
|
987
|
-
}
|
|
988
|
-
},
|
|
989
|
-
pressed: {
|
|
990
|
-
attributes: {
|
|
991
|
-
group: 'paint',
|
|
992
|
-
state: 'active',
|
|
993
|
-
introduced: '1.19.0',
|
|
994
|
-
description: 'Pressed state of color.background.accent.teal.bolder.'
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
},
|
|
999
|
-
purple: {
|
|
1000
|
-
subtlest: {
|
|
1001
|
-
'[default]': {
|
|
1002
|
-
attributes: {
|
|
1003
|
-
group: 'paint',
|
|
1004
|
-
state: 'active',
|
|
1005
|
-
introduced: '0.7.0',
|
|
1006
|
-
description: 'Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
1007
|
-
}
|
|
1008
|
-
},
|
|
1009
|
-
hovered: {
|
|
1010
|
-
attributes: {
|
|
1011
|
-
group: 'paint',
|
|
1012
|
-
state: 'active',
|
|
1013
|
-
introduced: '1.19.0',
|
|
1014
|
-
description: 'Hovered state of color.background.accent.purple.subtlest.'
|
|
1015
|
-
}
|
|
1016
|
-
},
|
|
1017
|
-
pressed: {
|
|
1018
|
-
attributes: {
|
|
1019
|
-
group: 'paint',
|
|
1020
|
-
state: 'active',
|
|
1021
|
-
introduced: '1.19.0',
|
|
1022
|
-
description: 'Pressed state of color.background.accent.purple.subtlest.'
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
|
-
},
|
|
1026
|
-
subtler: {
|
|
1027
|
-
'[default]': {
|
|
1028
|
-
attributes: {
|
|
1029
|
-
group: 'paint',
|
|
1030
|
-
state: 'active',
|
|
1031
|
-
introduced: '0.7.0',
|
|
1032
|
-
description: 'Use for purple backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1033
|
-
}
|
|
1034
|
-
},
|
|
1035
|
-
hovered: {
|
|
1036
|
-
attributes: {
|
|
1037
|
-
group: 'paint',
|
|
1038
|
-
state: 'active',
|
|
1039
|
-
introduced: '1.19.0',
|
|
1040
|
-
description: 'Hovered state of color.background.accent.purple.subtler.'
|
|
1041
|
-
}
|
|
1042
|
-
},
|
|
1043
|
-
pressed: {
|
|
1044
|
-
attributes: {
|
|
1045
|
-
group: 'paint',
|
|
1046
|
-
state: 'active',
|
|
1047
|
-
introduced: '1.19.0',
|
|
1048
|
-
description: 'Pressed state of color.background.accent.purple.subtler.'
|
|
1049
|
-
}
|
|
1050
|
-
}
|
|
1051
|
-
},
|
|
1052
|
-
subtle: {
|
|
1053
|
-
'[default]': {
|
|
1054
|
-
attributes: {
|
|
1055
|
-
group: 'paint',
|
|
1056
|
-
state: 'active',
|
|
1057
|
-
introduced: '0.7.0',
|
|
1058
|
-
description: 'Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1059
|
-
}
|
|
1060
|
-
},
|
|
1061
|
-
hovered: {
|
|
1062
|
-
attributes: {
|
|
1063
|
-
group: 'paint',
|
|
1064
|
-
state: 'active',
|
|
1065
|
-
introduced: '1.19.0',
|
|
1066
|
-
description: 'Hovered state of color.background.accent.purple.subtle.'
|
|
1067
|
-
}
|
|
1068
|
-
},
|
|
1069
|
-
pressed: {
|
|
1070
|
-
attributes: {
|
|
1071
|
-
group: 'paint',
|
|
1072
|
-
state: 'active',
|
|
1073
|
-
introduced: '1.19.0',
|
|
1074
|
-
description: 'Pressed state of color.background.accent.purple.subtle.'
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
},
|
|
1078
|
-
bolder: {
|
|
1079
|
-
'[default]': {
|
|
1080
|
-
attributes: {
|
|
1081
|
-
group: 'paint',
|
|
1082
|
-
state: 'active',
|
|
1083
|
-
introduced: '0.7.0',
|
|
1084
|
-
description: 'Use for purple backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
1085
|
-
}
|
|
1086
|
-
},
|
|
1087
|
-
hovered: {
|
|
1088
|
-
attributes: {
|
|
1089
|
-
group: 'paint',
|
|
1090
|
-
state: 'active',
|
|
1091
|
-
introduced: '1.19.0',
|
|
1092
|
-
description: 'Hovered state of color.background.accent.purple.bolder.'
|
|
1093
|
-
}
|
|
1094
|
-
},
|
|
1095
|
-
pressed: {
|
|
1096
|
-
attributes: {
|
|
1097
|
-
group: 'paint',
|
|
1098
|
-
state: 'active',
|
|
1099
|
-
introduced: '1.19.0',
|
|
1100
|
-
description: 'Pressed state of color.background.accent.purple.bolder.'
|
|
1101
|
-
}
|
|
1102
|
-
}
|
|
1103
|
-
}
|
|
1104
|
-
},
|
|
1105
|
-
magenta: {
|
|
1106
|
-
subtlest: {
|
|
1107
|
-
'[default]': {
|
|
1108
|
-
attributes: {
|
|
1109
|
-
group: 'paint',
|
|
1110
|
-
state: 'active',
|
|
1111
|
-
introduced: '0.7.0',
|
|
1112
|
-
description: 'Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
1113
|
-
}
|
|
1114
|
-
},
|
|
1115
|
-
hovered: {
|
|
1116
|
-
attributes: {
|
|
1117
|
-
group: 'paint',
|
|
1118
|
-
state: 'active',
|
|
1119
|
-
introduced: '1.19.0',
|
|
1120
|
-
description: 'Hovered state of color.background.accent.magenta.subtlest.'
|
|
1121
|
-
}
|
|
1122
|
-
},
|
|
1123
|
-
pressed: {
|
|
1124
|
-
attributes: {
|
|
1125
|
-
group: 'paint',
|
|
1126
|
-
state: 'active',
|
|
1127
|
-
introduced: '1.19.0',
|
|
1128
|
-
description: 'Pressed state of color.background.accent.magenta.subtlest.'
|
|
1129
|
-
}
|
|
1130
|
-
}
|
|
1131
|
-
},
|
|
1132
|
-
subtler: {
|
|
1133
|
-
'[default]': {
|
|
1134
|
-
attributes: {
|
|
1135
|
-
group: 'paint',
|
|
1136
|
-
state: 'active',
|
|
1137
|
-
introduced: '0.7.0',
|
|
1138
|
-
description: 'Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
hovered: {
|
|
1142
|
-
attributes: {
|
|
1143
|
-
group: 'paint',
|
|
1144
|
-
state: 'active',
|
|
1145
|
-
introduced: '1.19.0',
|
|
1146
|
-
description: 'Hovered state of color.background.accent.magenta.subtler.'
|
|
1147
|
-
}
|
|
1148
|
-
},
|
|
1149
|
-
pressed: {
|
|
1150
|
-
attributes: {
|
|
1151
|
-
group: 'paint',
|
|
1152
|
-
state: 'active',
|
|
1153
|
-
introduced: '1.19.0',
|
|
1154
|
-
description: 'Pressed state of color.background.accent.magenta.subtler.'
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
},
|
|
1158
|
-
subtle: {
|
|
1159
|
-
'[default]': {
|
|
1160
|
-
attributes: {
|
|
1161
|
-
group: 'paint',
|
|
1162
|
-
state: 'active',
|
|
1163
|
-
introduced: '0.7.0',
|
|
1164
|
-
description: 'Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1165
|
-
}
|
|
1166
|
-
},
|
|
1167
|
-
hovered: {
|
|
1168
|
-
attributes: {
|
|
1169
|
-
group: 'paint',
|
|
1170
|
-
state: 'active',
|
|
1171
|
-
introduced: '1.19.0',
|
|
1172
|
-
description: 'Hovered state of color.background.accent.magenta.subtle.'
|
|
1173
|
-
}
|
|
1174
|
-
},
|
|
1175
|
-
pressed: {
|
|
1176
|
-
attributes: {
|
|
1177
|
-
group: 'paint',
|
|
1178
|
-
state: 'active',
|
|
1179
|
-
introduced: '1.19.0',
|
|
1180
|
-
description: 'Pressed state of color.background.accent.magenta.subtle.'
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
},
|
|
1184
|
-
bolder: {
|
|
1185
|
-
'[default]': {
|
|
1186
|
-
attributes: {
|
|
1187
|
-
group: 'paint',
|
|
1188
|
-
state: 'active',
|
|
1189
|
-
introduced: '0.7.0',
|
|
1190
|
-
description: 'Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
1191
|
-
}
|
|
1192
|
-
},
|
|
1193
|
-
hovered: {
|
|
1194
|
-
attributes: {
|
|
1195
|
-
group: 'paint',
|
|
1196
|
-
state: 'active',
|
|
1197
|
-
introduced: '1.19.0',
|
|
1198
|
-
description: 'Hovered state of color.background.accent.magenta.bolder.'
|
|
1199
|
-
}
|
|
1200
|
-
},
|
|
1201
|
-
pressed: {
|
|
1202
|
-
attributes: {
|
|
1203
|
-
group: 'paint',
|
|
1204
|
-
state: 'active',
|
|
1205
|
-
introduced: '1.19.0',
|
|
1206
|
-
description: 'Pressed state of color.background.accent.magenta.bolder.'
|
|
1207
|
-
}
|
|
1208
|
-
}
|
|
1209
|
-
}
|
|
1210
|
-
},
|
|
1211
|
-
lime: {
|
|
1212
|
-
subtlest: {
|
|
1213
|
-
'[default]': {
|
|
1214
|
-
attributes: {
|
|
1215
|
-
group: 'paint',
|
|
1216
|
-
state: 'active',
|
|
1217
|
-
introduced: '1.6.0',
|
|
1218
|
-
description: 'Use for for backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
1219
|
-
}
|
|
1220
|
-
},
|
|
1221
|
-
hovered: {
|
|
1222
|
-
attributes: {
|
|
1223
|
-
group: 'paint',
|
|
1224
|
-
state: 'active',
|
|
1225
|
-
introduced: '1.19.0',
|
|
1226
|
-
description: 'Hovered state of color.background.accent.lime.subtlest.'
|
|
1227
|
-
}
|
|
1228
|
-
},
|
|
1229
|
-
pressed: {
|
|
1230
|
-
attributes: {
|
|
1231
|
-
group: 'paint',
|
|
1232
|
-
state: 'active',
|
|
1233
|
-
introduced: '1.19.0',
|
|
1234
|
-
description: 'Pressed state of color.background.accent.lime.subtlest.'
|
|
1235
|
-
}
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
subtler: {
|
|
1239
|
-
'[default]': {
|
|
1240
|
-
attributes: {
|
|
1241
|
-
group: 'paint',
|
|
1242
|
-
state: 'active',
|
|
1243
|
-
introduced: '1.6.0',
|
|
1244
|
-
description: 'Use for for backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1245
|
-
}
|
|
1246
|
-
},
|
|
1247
|
-
hovered: {
|
|
1248
|
-
attributes: {
|
|
1249
|
-
group: 'paint',
|
|
1250
|
-
state: 'active',
|
|
1251
|
-
introduced: '1.19.0',
|
|
1252
|
-
description: 'Hovered state of color.background.accent.lime.subtler.'
|
|
1253
|
-
}
|
|
1254
|
-
},
|
|
1255
|
-
pressed: {
|
|
1256
|
-
attributes: {
|
|
1257
|
-
group: 'paint',
|
|
1258
|
-
state: 'active',
|
|
1259
|
-
introduced: '1.19.0',
|
|
1260
|
-
description: 'Pressed state of color.background.accent.lime.subtler.'
|
|
1261
|
-
}
|
|
1262
|
-
}
|
|
1263
|
-
},
|
|
1264
|
-
subtle: {
|
|
1265
|
-
'[default]': {
|
|
1266
|
-
attributes: {
|
|
1267
|
-
group: 'paint',
|
|
1268
|
-
state: 'active',
|
|
1269
|
-
introduced: '1.6.0',
|
|
1270
|
-
description: 'Use for vibrant for backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1271
|
-
}
|
|
1272
|
-
},
|
|
1273
|
-
hovered: {
|
|
1274
|
-
attributes: {
|
|
1275
|
-
group: 'paint',
|
|
1276
|
-
state: 'active',
|
|
1277
|
-
introduced: '1.19.0',
|
|
1278
|
-
description: 'Hovered state of color.background.accent.lime.subtle.'
|
|
1279
|
-
}
|
|
1280
|
-
},
|
|
1281
|
-
pressed: {
|
|
1282
|
-
attributes: {
|
|
1283
|
-
group: 'paint',
|
|
1284
|
-
state: 'active',
|
|
1285
|
-
introduced: '1.19.0',
|
|
1286
|
-
description: 'Pressed state of color.background.accent.lime.subtle.'
|
|
1287
|
-
}
|
|
1288
|
-
}
|
|
1289
|
-
},
|
|
1290
|
-
bolder: {
|
|
1291
|
-
'[default]': {
|
|
1292
|
-
attributes: {
|
|
1293
|
-
group: 'paint',
|
|
1294
|
-
state: 'active',
|
|
1295
|
-
introduced: '1.6.0',
|
|
1296
|
-
description: 'Use for for backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
1297
|
-
}
|
|
1298
|
-
},
|
|
1299
|
-
hovered: {
|
|
1300
|
-
attributes: {
|
|
1301
|
-
group: 'paint',
|
|
1302
|
-
state: 'active',
|
|
1303
|
-
introduced: '1.19.0',
|
|
1304
|
-
description: 'Hovered state of color.background.accent.lime.bolder.'
|
|
1305
|
-
}
|
|
1306
|
-
},
|
|
1307
|
-
pressed: {
|
|
1308
|
-
attributes: {
|
|
1309
|
-
group: 'paint',
|
|
1310
|
-
state: 'active',
|
|
1311
|
-
introduced: '1.19.0',
|
|
1312
|
-
description: 'Pressed state of color.background.accent.lime.bolder.'
|
|
1313
|
-
}
|
|
1314
|
-
}
|
|
1315
|
-
}
|
|
1316
|
-
},
|
|
1317
|
-
gray: {
|
|
1318
|
-
subtlest: {
|
|
1319
|
-
'[default]': {
|
|
1320
|
-
attributes: {
|
|
1321
|
-
group: 'paint',
|
|
1322
|
-
state: 'active',
|
|
1323
|
-
introduced: '0.7.0',
|
|
1324
|
-
description: 'Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
1325
|
-
}
|
|
1326
|
-
},
|
|
1327
|
-
hovered: {
|
|
1328
|
-
attributes: {
|
|
1329
|
-
group: 'paint',
|
|
1330
|
-
state: 'active',
|
|
1331
|
-
introduced: '1.19.0',
|
|
1332
|
-
description: 'Hovered state of color.background.accent.gray.subtlest.'
|
|
1333
|
-
}
|
|
1334
|
-
},
|
|
1335
|
-
pressed: {
|
|
1336
|
-
attributes: {
|
|
1337
|
-
group: 'paint',
|
|
1338
|
-
state: 'active',
|
|
1339
|
-
introduced: '1.19.0',
|
|
1340
|
-
description: 'Pressed state of color.background.accent.gray.subtlest.'
|
|
1341
|
-
}
|
|
1342
|
-
}
|
|
1343
|
-
},
|
|
1344
|
-
subtler: {
|
|
1345
|
-
'[default]': {
|
|
1346
|
-
attributes: {
|
|
1347
|
-
group: 'paint',
|
|
1348
|
-
state: 'active',
|
|
1349
|
-
introduced: '0.7.0',
|
|
1350
|
-
description: 'Use for gray backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1351
|
-
}
|
|
1352
|
-
},
|
|
1353
|
-
hovered: {
|
|
1354
|
-
attributes: {
|
|
1355
|
-
group: 'paint',
|
|
1356
|
-
state: 'active',
|
|
1357
|
-
introduced: '1.19.0',
|
|
1358
|
-
description: 'Hovered state of color.background.accent.gray.subtler.'
|
|
1359
|
-
}
|
|
1360
|
-
},
|
|
1361
|
-
pressed: {
|
|
1362
|
-
attributes: {
|
|
1363
|
-
group: 'paint',
|
|
1364
|
-
state: 'active',
|
|
1365
|
-
introduced: '1.19.0',
|
|
1366
|
-
description: 'Pressed state of color.background.accent.gray.subtler.'
|
|
1367
|
-
}
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
subtle: {
|
|
1371
|
-
'[default]': {
|
|
1372
|
-
attributes: {
|
|
1373
|
-
group: 'paint',
|
|
1374
|
-
state: 'active',
|
|
1375
|
-
introduced: '0.7.0',
|
|
1376
|
-
description: 'Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
1377
|
-
}
|
|
1378
|
-
},
|
|
1379
|
-
hovered: {
|
|
1380
|
-
attributes: {
|
|
1381
|
-
group: 'paint',
|
|
1382
|
-
state: 'active',
|
|
1383
|
-
introduced: '1.19.0',
|
|
1384
|
-
description: 'Hovered state of color.background.accent.gray.subtle.'
|
|
1385
|
-
}
|
|
1386
|
-
},
|
|
1387
|
-
pressed: {
|
|
1388
|
-
attributes: {
|
|
1389
|
-
group: 'paint',
|
|
1390
|
-
state: 'active',
|
|
1391
|
-
introduced: '1.19.0',
|
|
1392
|
-
description: 'Pressed state of color.background.accent.gray.subtle.'
|
|
1393
|
-
}
|
|
1394
|
-
}
|
|
1395
|
-
},
|
|
1396
|
-
bolder: {
|
|
1397
|
-
'[default]': {
|
|
1398
|
-
attributes: {
|
|
1399
|
-
group: 'paint',
|
|
1400
|
-
state: 'active',
|
|
1401
|
-
introduced: '0.7.0',
|
|
1402
|
-
description: 'Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
1403
|
-
}
|
|
1404
|
-
},
|
|
1405
|
-
hovered: {
|
|
1406
|
-
attributes: {
|
|
1407
|
-
group: 'paint',
|
|
1408
|
-
state: 'active',
|
|
1409
|
-
introduced: '1.19.0',
|
|
1410
|
-
description: 'Hovered state of color.background.accent.gray.bolder.'
|
|
1411
|
-
}
|
|
1412
|
-
},
|
|
1413
|
-
pressed: {
|
|
1414
|
-
attributes: {
|
|
1415
|
-
group: 'paint',
|
|
1416
|
-
state: 'active',
|
|
1417
|
-
introduced: '1.19.0',
|
|
1418
|
-
description: 'Pressed state of color.background.accent.gray.subtlest.'
|
|
1419
|
-
}
|
|
1420
|
-
}
|
|
1421
|
-
}
|
|
1422
|
-
}
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
};
|
|
1427
|
-
var _default = exports.default = color;
|