diff --git a/build-tools/utils/custom-css-properties.js b/build-tools/utils/custom-css-properties.js index 73511df043..76c4803e36 100644 --- a/build-tools/utils/custom-css-properties.js +++ b/build-tools/utils/custom-css-properties.js @@ -178,6 +178,8 @@ const customCssPropertiesList = [ 'tokenStyleDismissColorDisabled', 'tokenStyleDismissColorHover', 'tokenStyleDismissColorReadOnly', + // Box visual accent properties + 'boxVisualAccentBorderRadius', // Item card specific style properties 'styleItemCardBackgroundDefault', 'styleItemCardBorderColorDefault', diff --git a/pages/box/visual-accent.page.tsx b/pages/box/visual-accent.page.tsx new file mode 100644 index 0000000000..91ff8fba4e --- /dev/null +++ b/pages/box/visual-accent.page.tsx @@ -0,0 +1,167 @@ +// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +// SPDX-License-Identifier: Apache-2.0 +import React from 'react'; + +import Box, { BoxProps } from '~components/box'; +import Container from '~components/container'; +import Header from '~components/header'; +import Icon from '~components/icon'; +import KeyValuePairs from '~components/key-value-pairs'; +import List from '~components/list'; +import SpaceBetween from '~components/space-between'; + +// ─── Data ────────────────────────────────────────────────────────────────────── + +const ALL_VARIANTS: BoxProps.VisualAccent.Color[] = [ + 'red', + 'yellow', + 'indigo', + 'green', + 'orange', + 'purple', + 'mint', + 'lime', + 'grey', + 'teal', + 'cyan', + 'blue', + 'violet', + 'fuchsia', + 'magenta', + 'pink', + 'rose', + 'amber', +]; + +const BOX_VARIANTS: { variant: BoxProps['variant']; label: string; content: string }[] = [ + { variant: 'h4', label: 'h4', content: 'Heading 4' }, + { variant: 'p', label: 'p', content: 'Body paragraph text' }, +]; + +const LIST_ITEMS: { id: string; content: string; icon: string; color: BoxProps.VisualAccent.Color }[] = [ + { id: 'health', content: 'Health overview', icon: 'face-happy', color: 'green' }, + { id: 'functions', content: 'Functions', icon: 'script', color: 'indigo' }, + { id: 'network', content: 'Network configuration', icon: 'globe', color: 'grey' }, + { id: 'multi-session', content: 'Multi-session data', icon: 'multiscreen', color: 'purple' }, + { id: 'alert', content: 'Alert center', icon: 'security', color: 'red' }, + { id: 'communication', content: 'Communication', icon: 'contact', color: 'mint' }, +]; + +// ─── Page ────────────────────────────────────────────────────────────────────── + +export default function StyleBoxPage() { + return ( +
+
+ + Box visualAccent + + + + Uses the existing Box component with a new visualAccent prop. No wrapper component or utility + classes needed. + + + {/* ── Box text variants × accent colors ─────────────────────────── */} + + Text inside accent boxes + + + {BOX_VARIANTS.map(({ variant, label, content }) => ( +
+ + Wrapping Box variant="{label}" + + + {ALL_VARIANTS.map(color => ( + + + {content} + + + ))} + +
+ ))} + + {/* ── Icons in accent boxes ─────────────────────────────────────── */} + + Icons in accent boxes + + + {ALL_VARIANTS.map(color => ( + + + + ))} + + + {/* ── Application in components ──────────────────────────────────── */} + + Application in components + + + KeyValuePairs}> + + 114 + + ), + }, + { + label: 'Patterns', + value: ( + + 81 + + ), + }, + { + label: 'Demos', + value: ( + + 35 + + ), + }, + ]} + /> + + + + List}> + ({ + id: item.id, + content: item.content, + icon: ( + + + + ), + })} + /> + +
+
+ ); +} diff --git a/src/__integ__/__snapshots__/themes.test.ts.snap b/src/__integ__/__snapshots__/themes.test.ts.snap index f538fa177a..55e1d36f1e 100644 --- a/src/__integ__/__snapshots__/themes.test.ts.snap +++ b/src/__integ__/__snapshots__/themes.test.ts.snap @@ -78,7 +78,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "border-width-item-selected": "1px", "border-width-popover": "1px", "border-width-token": "1px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "#ffe8bd", + "color-background-accent-blue": "#d1f1ff", + "color-background-accent-cyan": "#d1fbff", + "color-background-accent-fuchsia": "#fce5ff", + "color-background-accent-green": "#d9ffd6", + "color-background-accent-grey": "#eaeded", + "color-background-accent-indigo": "#d1f1ff", + "color-background-accent-lime": "#ebffcc", + "color-background-accent-magenta": "#ffe0fb", + "color-background-accent-mint": "#ccffe9", + "color-background-accent-orange": "#ffe0d6", + "color-background-accent-pink": "#ffe0f0", + "color-background-accent-purple": "#f2e5ff", + "color-background-accent-red": "#ffe0e0", + "color-background-accent-rose": "#ffe0e8", + "color-background-accent-teal": "#ccfffc", + "color-background-accent-violet": "#e8e5ff", + "color-background-accent-yellow": "#fffbbd", "color-background-action-card-active": "#d1f1ff", "color-background-action-card-default": "#ffffff", "color-background-action-card-disabled": "#eaeded", @@ -454,6 +475,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#d5dbdb", "color-drag-placeholder-hover": "#99cbe4", "color-dropzone-background-default": "#ffffff", @@ -462,14 +486,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-dropzone-border-hover": "#002b66", "color-dropzone-text-default": "#545b64", "color-dropzone-text-hover": "#545b64", + "color-error-100": "#ffe0e0", "color-error-1000": "#270a11", "color-error-400": "#ff5d64", "color-error-50": "#fdf3f1", "color-error-600": "#d13212", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#ffffff", "color-foreground-control-read-only": "#687078", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#eaeded", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -483,12 +513,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-icon-action-card-default": "#0073bb", "color-icon-action-card-disabled": "#aab7b8", "color-icon-action-card-hover": "#002b66", + "color-info-100": "#d1f1ff", "color-info-1000": "#12293b", "color-info-300": "#44b9d6", "color-info-400": "#00a1c9", "color-info-50": "#f1faff", "color-info-600": "#0073bb", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#0073bb", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#fafafa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -509,6 +552,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-neutral-850": "#1a2029", "color-neutral-900": "#131920", "color-neutral-950": "#16191f", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#12293b", "color-primary-200": "#99cbe4", @@ -520,8 +569,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-primary-700": "#0a4a74", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#687078", "color-severity-orange": "#f89256", @@ -531,11 +586,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-shadow-side": "rgba(0, 28, 36, 0.15)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#879596", + "color-success-100": "#d9ffd6", "color-success-1000": "#172211", + "color-success-400": "#00e500", "color-success-50": "#f2f8f0", "color-success-500": "#6aaf35", "color-success-600": "#1d8102", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#0073bb", + "color-text-accent-amber": "#7a2b00", + "color-text-accent-blue": "#003b8f", + "color-text-accent-cyan": "#004761", + "color-text-accent-fuchsia": "#78008a", + "color-text-accent-green": "#005c26", + "color-text-accent-grey": "#21252c", + "color-text-accent-indigo": "#003b8f", + "color-text-accent-lime": "#005700", + "color-text-accent-magenta": "#8f0072", + "color-text-accent-mint": "#005237", + "color-text-accent-orange": "#8a2000", + "color-text-accent-pink": "#8f0047", + "color-text-accent-purple": "#5900b2", + "color-text-accent-red": "#990000", + "color-text-accent-rose": "#940025", + "color-text-accent-teal": "#00524c", + "color-text-accent-violet": "#4200db", + "color-text-accent-yellow": "#906806", "color-text-action-card-disabled": "#879596", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#fafafa", @@ -667,11 +747,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "compact" 1`] = "color-text-tutorial-hotspot-hover": "#0a4a74", "color-transparent": "transparent", "color-tree-view-connector-line": "#879596", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#906806", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.25px", "font-chart-detail-size": "14px", @@ -1005,7 +1092,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "border-width-item-selected": "1px", "border-width-popover": "1px", "border-width-token": "1px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "rgba(250, 111, 0, 0.2)", + "color-background-accent-blue": "rgba(0, 153, 255, 0.2)", + "color-background-accent-cyan": "rgba(0, 164, 189, 0.2)", + "color-background-accent-fuchsia": "rgba(228, 51, 255, 0.2)", + "color-background-accent-green": "rgba(43, 181, 52, 0.2)", + "color-background-accent-grey": "#414750", + "color-background-accent-indigo": "rgba(0, 153, 255, 0.2)", + "color-background-accent-lime": "rgba(49, 184, 0, 0.2)", + "color-background-accent-magenta": "rgba(255, 26, 224, 0.2)", + "color-background-accent-mint": "rgba(0, 189, 107, 0.2)", + "color-background-accent-orange": "rgba(255, 75, 20, 0.2)", + "color-background-accent-pink": "rgba(255, 51, 153, 0.2)", + "color-background-accent-purple": "rgba(173, 92, 255, 0.2)", + "color-background-accent-red": "rgba(255, 61, 61, 0.2)", + "color-background-accent-rose": "rgba(255, 56, 106, 0.2)", + "color-background-accent-teal": "rgba(0, 173, 162, 0.2)", + "color-background-accent-violet": "rgba(133, 117, 255, 0.2)", + "color-background-accent-yellow": "rgba(251, 211, 50, 0.2)", "color-background-action-card-active": "#414750", "color-background-action-card-default": "#1a2029", "color-background-action-card-disabled": "#21252c", @@ -1381,6 +1489,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-charts-yellow-700": "#dfb52c", "color-charts-yellow-800": "#eac33a", "color-charts-yellow-900": "#f1cf65", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#687078", "color-drag-placeholder-hover": "#0073bb", "color-dropzone-background-default": "#1a2029", @@ -1389,14 +1500,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-dropzone-border-hover": "#44b9d6", "color-dropzone-text-default": "#c6c6cd", "color-dropzone-text-hover": "#c6c6cd", + "color-error-100": "#ffe0e0", "color-error-1000": "#270a11", "color-error-400": "#ff5d64", "color-error-50": "#fdf3f1", "color-error-600": "#d13212", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#687078", "color-foreground-control-read-only": "#95a5a6", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#16191f", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -1410,12 +1527,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-icon-action-card-default": "#00a1c9", "color-icon-action-card-disabled": "#687078", "color-icon-action-card-hover": "#44b9d6", + "color-info-100": "#d1f1ff", "color-info-1000": "#12293b", "color-info-300": "#44b9d6", "color-info-400": "#00a1c9", "color-info-50": "#f1faff", "color-info-600": "#0073bb", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#44b9d6", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#fafafa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -1436,6 +1566,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-neutral-850": "#1a2029", "color-neutral-900": "#131920", "color-neutral-950": "#16191f", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#12293b", "color-primary-200": "#99cbe4", @@ -1447,8 +1583,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-primary-700": "#0a4a74", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#d63f38", "color-severity-grey": "#687078", "color-severity-orange": "#f89256", @@ -1458,11 +1600,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-shadow-side": "rgba(0, 0, 0, 0.3)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#879596", + "color-success-100": "#d9ffd6", "color-success-1000": "#172211", + "color-success-400": "#00e500", "color-success-50": "#f2f8f0", "color-success-500": "#6aaf35", "color-success-600": "#1d8102", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#44b9d6", + "color-text-accent-amber": "#ff9900", + "color-text-accent-blue": "#00a1c9", + "color-text-accent-cyan": "#00d2e5", + "color-text-accent-fuchsia": "#ec70ff", + "color-text-accent-green": "#00e500", + "color-text-accent-grey": "#d5dbdb", + "color-text-accent-indigo": "#00a1c9", + "color-text-accent-lime": "#7ae500", + "color-text-accent-magenta": "#ff57e9", + "color-text-accent-mint": "#00e582", + "color-text-accent-orange": "#ff6a3d", + "color-text-accent-pink": "#ff66b2", + "color-text-accent-purple": "#bf80ff", + "color-text-accent-red": "#ff5d64", + "color-text-accent-rose": "#ff5c85", + "color-text-accent-teal": "#00d6c8", + "color-text-accent-violet": "#978aff", + "color-text-accent-yellow": "#ffe347", "color-text-action-card-disabled": "#879596", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#fafafa", @@ -1594,11 +1761,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "dark" 1`] = ` "color-text-tutorial-hotspot-hover": "#99cbe4", "color-transparent": "transparent", "color-tree-view-connector-line": "#d5dbdb", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#906806", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.25px", "font-chart-detail-size": "14px", @@ -1932,7 +2106,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "border-width-item-selected": "1px", "border-width-popover": "1px", "border-width-token": "1px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "#ffe8bd", + "color-background-accent-blue": "#d1f1ff", + "color-background-accent-cyan": "#d1fbff", + "color-background-accent-fuchsia": "#fce5ff", + "color-background-accent-green": "#d9ffd6", + "color-background-accent-grey": "#eaeded", + "color-background-accent-indigo": "#d1f1ff", + "color-background-accent-lime": "#ebffcc", + "color-background-accent-magenta": "#ffe0fb", + "color-background-accent-mint": "#ccffe9", + "color-background-accent-orange": "#ffe0d6", + "color-background-accent-pink": "#ffe0f0", + "color-background-accent-purple": "#f2e5ff", + "color-background-accent-red": "#ffe0e0", + "color-background-accent-rose": "#ffe0e8", + "color-background-accent-teal": "#ccfffc", + "color-background-accent-violet": "#e8e5ff", + "color-background-accent-yellow": "#fffbbd", "color-background-action-card-active": "#d1f1ff", "color-background-action-card-default": "#ffffff", "color-background-action-card-disabled": "#eaeded", @@ -2308,6 +2503,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#d5dbdb", "color-drag-placeholder-hover": "#99cbe4", "color-dropzone-background-default": "#ffffff", @@ -2316,14 +2514,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-dropzone-border-hover": "#002b66", "color-dropzone-text-default": "#545b64", "color-dropzone-text-hover": "#545b64", + "color-error-100": "#ffe0e0", "color-error-1000": "#270a11", "color-error-400": "#ff5d64", "color-error-50": "#fdf3f1", "color-error-600": "#d13212", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#ffffff", "color-foreground-control-read-only": "#687078", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#eaeded", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -2337,12 +2541,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-icon-action-card-default": "#0073bb", "color-icon-action-card-disabled": "#aab7b8", "color-icon-action-card-hover": "#002b66", + "color-info-100": "#d1f1ff", "color-info-1000": "#12293b", "color-info-300": "#44b9d6", "color-info-400": "#00a1c9", "color-info-50": "#f1faff", "color-info-600": "#0073bb", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#0073bb", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#fafafa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -2363,6 +2580,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-neutral-850": "#1a2029", "color-neutral-900": "#131920", "color-neutral-950": "#16191f", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#12293b", "color-primary-200": "#99cbe4", @@ -2374,8 +2597,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-primary-700": "#0a4a74", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#687078", "color-severity-orange": "#f89256", @@ -2385,11 +2614,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-shadow-side": "rgba(0, 28, 36, 0.15)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#879596", + "color-success-100": "#d9ffd6", "color-success-1000": "#172211", + "color-success-400": "#00e500", "color-success-50": "#f2f8f0", "color-success-500": "#6aaf35", "color-success-600": "#1d8102", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#0073bb", + "color-text-accent-amber": "#7a2b00", + "color-text-accent-blue": "#003b8f", + "color-text-accent-cyan": "#004761", + "color-text-accent-fuchsia": "#78008a", + "color-text-accent-green": "#005c26", + "color-text-accent-grey": "#21252c", + "color-text-accent-indigo": "#003b8f", + "color-text-accent-lime": "#005700", + "color-text-accent-magenta": "#8f0072", + "color-text-accent-mint": "#005237", + "color-text-accent-orange": "#8a2000", + "color-text-accent-pink": "#8f0047", + "color-text-accent-purple": "#5900b2", + "color-text-accent-red": "#990000", + "color-text-accent-rose": "#940025", + "color-text-accent-teal": "#00524c", + "color-text-accent-violet": "#4200db", + "color-text-accent-yellow": "#906806", "color-text-action-card-disabled": "#879596", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#fafafa", @@ -2521,11 +2775,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "light" 1`] = ` "color-text-tutorial-hotspot-hover": "#0a4a74", "color-transparent": "transparent", "color-tree-view-connector-line": "#879596", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#906806", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.25px", "font-chart-detail-size": "14px", @@ -2859,7 +3120,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "border-width-item-selected": "1px", "border-width-popover": "1px", "border-width-token": "1px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "#ffe8bd", + "color-background-accent-blue": "#d1f1ff", + "color-background-accent-cyan": "#d1fbff", + "color-background-accent-fuchsia": "#fce5ff", + "color-background-accent-green": "#d9ffd6", + "color-background-accent-grey": "#eaeded", + "color-background-accent-indigo": "#d1f1ff", + "color-background-accent-lime": "#ebffcc", + "color-background-accent-magenta": "#ffe0fb", + "color-background-accent-mint": "#ccffe9", + "color-background-accent-orange": "#ffe0d6", + "color-background-accent-pink": "#ffe0f0", + "color-background-accent-purple": "#f2e5ff", + "color-background-accent-red": "#ffe0e0", + "color-background-accent-rose": "#ffe0e8", + "color-background-accent-teal": "#ccfffc", + "color-background-accent-violet": "#e8e5ff", + "color-background-accent-yellow": "#fffbbd", "color-background-action-card-active": "#d1f1ff", "color-background-action-card-default": "#ffffff", "color-background-action-card-disabled": "#eaeded", @@ -3235,6 +3517,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#d5dbdb", "color-drag-placeholder-hover": "#99cbe4", "color-dropzone-background-default": "#ffffff", @@ -3243,14 +3528,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-dropzone-border-hover": "#002b66", "color-dropzone-text-default": "#545b64", "color-dropzone-text-hover": "#545b64", + "color-error-100": "#ffe0e0", "color-error-1000": "#270a11", "color-error-400": "#ff5d64", "color-error-50": "#fdf3f1", "color-error-600": "#d13212", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#ffffff", "color-foreground-control-read-only": "#687078", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#eaeded", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -3264,12 +3555,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-icon-action-card-default": "#0073bb", "color-icon-action-card-disabled": "#aab7b8", "color-icon-action-card-hover": "#002b66", + "color-info-100": "#d1f1ff", "color-info-1000": "#12293b", "color-info-300": "#44b9d6", "color-info-400": "#00a1c9", "color-info-50": "#f1faff", "color-info-600": "#0073bb", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#0073bb", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#fafafa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -3290,6 +3594,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-neutral-850": "#1a2029", "color-neutral-900": "#131920", "color-neutral-950": "#16191f", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#12293b", "color-primary-200": "#99cbe4", @@ -3301,8 +3611,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-primary-700": "#0a4a74", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#687078", "color-severity-orange": "#f89256", @@ -3312,11 +3628,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-shadow-side": "rgba(0, 28, 36, 0.15)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#879596", + "color-success-100": "#d9ffd6", "color-success-1000": "#172211", + "color-success-400": "#00e500", "color-success-50": "#f2f8f0", "color-success-500": "#6aaf35", "color-success-600": "#1d8102", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#0073bb", + "color-text-accent-amber": "#7a2b00", + "color-text-accent-blue": "#003b8f", + "color-text-accent-cyan": "#004761", + "color-text-accent-fuchsia": "#78008a", + "color-text-accent-green": "#005c26", + "color-text-accent-grey": "#21252c", + "color-text-accent-indigo": "#003b8f", + "color-text-accent-lime": "#005700", + "color-text-accent-magenta": "#8f0072", + "color-text-accent-mint": "#005237", + "color-text-accent-orange": "#8a2000", + "color-text-accent-pink": "#8f0047", + "color-text-accent-purple": "#5900b2", + "color-text-accent-red": "#990000", + "color-text-accent-rose": "#940025", + "color-text-accent-teal": "#00524c", + "color-text-accent-violet": "#4200db", + "color-text-accent-yellow": "#906806", "color-text-action-card-disabled": "#879596", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#fafafa", @@ -3448,11 +3789,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "reduced-motion" "color-text-tutorial-hotspot-hover": "#0a4a74", "color-transparent": "transparent", "color-tree-view-connector-line": "#879596", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#906806", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.25px", "font-chart-detail-size": "14px", @@ -3786,7 +4134,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "border-width-item-selected": "2px", "border-width-popover": "2px", "border-width-token": "2px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "#ffe8bd", + "color-background-accent-blue": "#d1f1ff", + "color-background-accent-cyan": "#d1fbff", + "color-background-accent-fuchsia": "#fce5ff", + "color-background-accent-green": "#d9ffd6", + "color-background-accent-grey": "#ebebf0", + "color-background-accent-indigo": "#d1f1ff", + "color-background-accent-lime": "#ebffcc", + "color-background-accent-magenta": "#ffe0fb", + "color-background-accent-mint": "#ccffe9", + "color-background-accent-orange": "#ffe0d6", + "color-background-accent-pink": "#ffe0f0", + "color-background-accent-purple": "#f2e5ff", + "color-background-accent-red": "#ffe0e0", + "color-background-accent-rose": "#ffe0e8", + "color-background-accent-teal": "#ccfffc", + "color-background-accent-violet": "#e8e5ff", + "color-background-accent-yellow": "#fffbbd", "color-background-action-card-active": "#d1f1ff", "color-background-action-card-default": "#ffffff", "color-background-action-card-disabled": "#ffffff", @@ -4162,6 +4531,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#ebebf0", "color-drag-placeholder-hover": "#d1f1ff", "color-dropzone-background-default": "#ffffff", @@ -4170,14 +4542,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-dropzone-border-hover": "#002b66", "color-dropzone-text-default": "#424650", "color-dropzone-text-hover": "#424650", + "color-error-100": "#ffe0e0", "color-error-1000": "#1f0000", "color-error-400": "#ff7a7a", "color-error-50": "#fff5f5", "color-error-600": "#db0000", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#ffffff", "color-foreground-control-read-only": "#656871", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#ebebf0", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -4191,12 +4569,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-icon-action-card-default": "#006ce0", "color-icon-action-card-disabled": "#b4b4bb", "color-icon-action-card-hover": "#002b66", + "color-info-100": "#d1f1ff", "color-info-1000": "#001129", "color-info-300": "#75cfff", "color-info-400": "#42b4ff", "color-info-50": "#f0fbff", "color-info-600": "#006ce0", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#006ce0", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#f9f9fa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -4217,6 +4608,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-neutral-850": "#161d26", "color-neutral-900": "#131920", "color-neutral-950": "#0f141a", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#001129", "color-primary-200": "#b8e7ff", @@ -4228,8 +4625,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-primary-700": "#004a9e", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#656871", "color-severity-orange": "#f89256", @@ -4239,11 +4642,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-shadow-side": "rgba(15, 20, 26, 0.12)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#8c8c94", + "color-success-100": "#d9ffd6", "color-success-1000": "#001401", + "color-success-400": "#00e500", "color-success-50": "#effff1", "color-success-500": "#2bb534", "color-success-600": "#00802f", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#006ce0", + "color-text-accent-amber": "#7a2b00", + "color-text-accent-blue": "#003b8f", + "color-text-accent-cyan": "#004761", + "color-text-accent-fuchsia": "#78008a", + "color-text-accent-green": "#005c26", + "color-text-accent-grey": "#1b232d", + "color-text-accent-indigo": "#003b8f", + "color-text-accent-lime": "#005700", + "color-text-accent-magenta": "#8f0072", + "color-text-accent-mint": "#005237", + "color-text-accent-orange": "#8a2000", + "color-text-accent-pink": "#8f0047", + "color-text-accent-purple": "#5900b2", + "color-text-accent-red": "#990000", + "color-text-accent-rose": "#940025", + "color-text-accent-teal": "#00524c", + "color-text-accent-violet": "#4200db", + "color-text-accent-yellow": "#855900", "color-text-action-card-disabled": "#8c8c94", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#f9f9fa", @@ -4375,11 +4803,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh" "color-text-tutorial-hotspot-hover": "#002b66", "color-transparent": "transparent", "color-tree-view-connector-line": "#8c8c94", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#855900", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.005em", "font-chart-detail-size": "12px", @@ -4713,7 +5148,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "border-width-item-selected": "2px", "border-width-popover": "2px", "border-width-token": "2px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "#ffe8bd", + "color-background-accent-blue": "#d1f1ff", + "color-background-accent-cyan": "#d1fbff", + "color-background-accent-fuchsia": "#fce5ff", + "color-background-accent-green": "#d9ffd6", + "color-background-accent-grey": "#ebebf0", + "color-background-accent-indigo": "#d1f1ff", + "color-background-accent-lime": "#ebffcc", + "color-background-accent-magenta": "#ffe0fb", + "color-background-accent-mint": "#ccffe9", + "color-background-accent-orange": "#ffe0d6", + "color-background-accent-pink": "#ffe0f0", + "color-background-accent-purple": "#f2e5ff", + "color-background-accent-red": "#ffe0e0", + "color-background-accent-rose": "#ffe0e8", + "color-background-accent-teal": "#ccfffc", + "color-background-accent-violet": "#e8e5ff", + "color-background-accent-yellow": "#fffbbd", "color-background-action-card-active": "#d1f1ff", "color-background-action-card-default": "#ffffff", "color-background-action-card-disabled": "#ffffff", @@ -5089,6 +5545,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#ebebf0", "color-drag-placeholder-hover": "#d1f1ff", "color-dropzone-background-default": "#ffffff", @@ -5097,14 +5556,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-dropzone-border-hover": "#002b66", "color-dropzone-text-default": "#424650", "color-dropzone-text-hover": "#424650", + "color-error-100": "#ffe0e0", "color-error-1000": "#1f0000", "color-error-400": "#ff7a7a", "color-error-50": "#fff5f5", "color-error-600": "#db0000", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#ffffff", "color-foreground-control-disabled": "#ffffff", "color-foreground-control-read-only": "#656871", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#ebebf0", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -5118,12 +5583,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-icon-action-card-default": "#006ce0", "color-icon-action-card-disabled": "#b4b4bb", "color-icon-action-card-hover": "#002b66", + "color-info-100": "#d1f1ff", "color-info-1000": "#001129", "color-info-300": "#75cfff", "color-info-400": "#42b4ff", "color-info-50": "#f0fbff", "color-info-600": "#006ce0", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#006ce0", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#f9f9fa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -5144,6 +5622,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-neutral-850": "#161d26", "color-neutral-900": "#131920", "color-neutral-950": "#0f141a", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#001129", "color-primary-200": "#b8e7ff", @@ -5155,8 +5639,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-primary-700": "#004a9e", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#656871", "color-severity-orange": "#f89256", @@ -5166,11 +5656,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-shadow-side": "rgba(15, 20, 26, 0.12)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#8c8c94", + "color-success-100": "#d9ffd6", "color-success-1000": "#001401", + "color-success-400": "#00e500", "color-success-50": "#effff1", "color-success-500": "#2bb534", "color-success-600": "#00802f", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#006ce0", + "color-text-accent-amber": "#7a2b00", + "color-text-accent-blue": "#003b8f", + "color-text-accent-cyan": "#004761", + "color-text-accent-fuchsia": "#78008a", + "color-text-accent-green": "#005c26", + "color-text-accent-grey": "#1b232d", + "color-text-accent-indigo": "#003b8f", + "color-text-accent-lime": "#005700", + "color-text-accent-magenta": "#8f0072", + "color-text-accent-mint": "#005237", + "color-text-accent-orange": "#8a2000", + "color-text-accent-pink": "#8f0047", + "color-text-accent-purple": "#5900b2", + "color-text-accent-red": "#990000", + "color-text-accent-rose": "#940025", + "color-text-accent-teal": "#00524c", + "color-text-accent-violet": "#4200db", + "color-text-accent-yellow": "#855900", "color-text-action-card-disabled": "#8c8c94", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#f9f9fa", @@ -5302,11 +5817,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-text-tutorial-hotspot-hover": "#002b66", "color-transparent": "transparent", "color-tree-view-connector-line": "#8c8c94", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#855900", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.005em", "font-chart-detail-size": "12px", @@ -5640,7 +6162,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "border-width-item-selected": "2px", "border-width-popover": "2px", "border-width-token": "2px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "rgba(250, 111, 0, 0.2)", + "color-background-accent-blue": "rgba(0, 153, 255, 0.2)", + "color-background-accent-cyan": "rgba(0, 164, 189, 0.2)", + "color-background-accent-fuchsia": "rgba(228, 51, 255, 0.2)", + "color-background-accent-green": "rgba(43, 181, 52, 0.2)", + "color-background-accent-grey": "#333843", + "color-background-accent-indigo": "rgba(0, 153, 255, 0.2)", + "color-background-accent-lime": "rgba(49, 184, 0, 0.2)", + "color-background-accent-magenta": "rgba(255, 26, 224, 0.2)", + "color-background-accent-mint": "rgba(0, 189, 107, 0.2)", + "color-background-accent-orange": "rgba(255, 75, 20, 0.2)", + "color-background-accent-pink": "rgba(255, 51, 153, 0.2)", + "color-background-accent-purple": "rgba(173, 92, 255, 0.2)", + "color-background-accent-red": "rgba(255, 61, 61, 0.2)", + "color-background-accent-rose": "rgba(255, 56, 106, 0.2)", + "color-background-accent-teal": "rgba(0, 173, 162, 0.2)", + "color-background-accent-violet": "rgba(133, 117, 255, 0.2)", + "color-background-accent-yellow": "rgba(251, 211, 50, 0.2)", "color-background-action-card-active": "#333843", "color-background-action-card-default": "#161d26", "color-background-action-card-disabled": "#161d26", @@ -6016,6 +6559,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-charts-yellow-700": "#6f5504", "color-charts-yellow-800": "#654d03", "color-charts-yellow-900": "#5d4503", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#656871", "color-drag-placeholder-hover": "#006ce0", "color-dropzone-background-default": "#161d26", @@ -6024,14 +6570,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-dropzone-border-hover": "#75cfff", "color-dropzone-text-default": "#c6c6cd", "color-dropzone-text-hover": "#c6c6cd", + "color-error-100": "#ffe0e0", "color-error-1000": "#1f0000", "color-error-400": "#ff7a7a", "color-error-50": "#fff5f5", "color-error-600": "#db0000", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#0f141a", "color-foreground-control-disabled": "#161d26", "color-foreground-control-read-only": "#a4a4ad", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#0f141a", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -6045,12 +6597,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-icon-action-card-default": "#42b4ff", "color-icon-action-card-disabled": "#656871", "color-icon-action-card-hover": "#75cfff", + "color-info-100": "#d1f1ff", "color-info-1000": "#001129", "color-info-300": "#75cfff", "color-info-400": "#42b4ff", "color-info-50": "#f0fbff", "color-info-600": "#006ce0", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#42b4ff", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#f9f9fa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -6071,6 +6636,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-neutral-850": "#161d26", "color-neutral-900": "#131920", "color-neutral-950": "#0f141a", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#001129", "color-primary-200": "#b8e7ff", @@ -6082,8 +6653,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-primary-700": "#004a9e", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#870303", "color-severity-grey": "#656871", "color-severity-orange": "#f89256", @@ -6093,11 +6670,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-shadow-side": "rgba(15, 20, 26, 1)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#8c8c94", + "color-success-100": "#d9ffd6", "color-success-1000": "#001401", + "color-success-400": "#00e500", "color-success-50": "#effff1", "color-success-500": "#2bb534", "color-success-600": "#00802f", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#42b4ff", + "color-text-accent-amber": "#ff9900", + "color-text-accent-blue": "#42b4ff", + "color-text-accent-cyan": "#00d2e5", + "color-text-accent-fuchsia": "#ec70ff", + "color-text-accent-green": "#00e500", + "color-text-accent-grey": "#dedee3", + "color-text-accent-indigo": "#42b4ff", + "color-text-accent-lime": "#7ae500", + "color-text-accent-magenta": "#ff57e9", + "color-text-accent-mint": "#00e582", + "color-text-accent-orange": "#ff6a3d", + "color-text-accent-pink": "#ff66b2", + "color-text-accent-purple": "#bf80ff", + "color-text-accent-red": "#ff7a7a", + "color-text-accent-rose": "#ff5c85", + "color-text-accent-teal": "#00d6c8", + "color-text-accent-violet": "#978aff", + "color-text-accent-yellow": "#ffe347", "color-text-action-card-disabled": "#8c8c94", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#f9f9fa", @@ -6229,11 +6831,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-text-tutorial-hotspot-hover": "#75cfff", "color-transparent": "transparent", "color-tree-view-connector-line": "#dedee3", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#855900", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.005em", "font-chart-detail-size": "12px", @@ -6567,7 +7176,28 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "border-width-item-selected": "2px", "border-width-popover": "2px", "border-width-token": "2px", + "color-amber-100": "#ffe8bd", + "color-amber-400": "#ff9900", + "color-amber-800": "#7a2b00", "color-aws-squid-ink": "#232f3e", + "color-background-accent-amber": "rgba(250, 111, 0, 0.2)", + "color-background-accent-blue": "rgba(0, 153, 255, 0.2)", + "color-background-accent-cyan": "rgba(0, 164, 189, 0.2)", + "color-background-accent-fuchsia": "rgba(228, 51, 255, 0.2)", + "color-background-accent-green": "rgba(43, 181, 52, 0.2)", + "color-background-accent-grey": "#333843", + "color-background-accent-indigo": "rgba(0, 153, 255, 0.2)", + "color-background-accent-lime": "rgba(49, 184, 0, 0.2)", + "color-background-accent-magenta": "rgba(255, 26, 224, 0.2)", + "color-background-accent-mint": "rgba(0, 189, 107, 0.2)", + "color-background-accent-orange": "rgba(255, 75, 20, 0.2)", + "color-background-accent-pink": "rgba(255, 51, 153, 0.2)", + "color-background-accent-purple": "rgba(173, 92, 255, 0.2)", + "color-background-accent-red": "rgba(255, 61, 61, 0.2)", + "color-background-accent-rose": "rgba(255, 56, 106, 0.2)", + "color-background-accent-teal": "rgba(0, 173, 162, 0.2)", + "color-background-accent-violet": "rgba(133, 117, 255, 0.2)", + "color-background-accent-yellow": "rgba(251, 211, 50, 0.2)", "color-background-action-card-active": "#333843", "color-background-action-card-default": "#161d26", "color-background-action-card-disabled": "#161d26", @@ -6943,6 +7573,9 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-charts-yellow-700": "#dfb52c", "color-charts-yellow-800": "#eac33a", "color-charts-yellow-900": "#f1cf65", + "color-cyan-100": "#d1fbff", + "color-cyan-400": "#00d2e5", + "color-cyan-800": "#004761", "color-drag-placeholder-active": "#656871", "color-drag-placeholder-hover": "#006ce0", "color-dropzone-background-default": "#161d26", @@ -6951,14 +7584,20 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-dropzone-border-hover": "#75cfff", "color-dropzone-text-default": "#c6c6cd", "color-dropzone-text-hover": "#c6c6cd", + "color-error-100": "#ffe0e0", "color-error-1000": "#1f0000", "color-error-400": "#ff7a7a", "color-error-50": "#fff5f5", "color-error-600": "#db0000", + "color-error-800": "#990000", "color-error-900": "#700000", + "color-error-950": "#520000", "color-foreground-control-default": "#0f141a", "color-foreground-control-disabled": "#161d26", "color-foreground-control-read-only": "#a4a4ad", + "color-fuchsia-100": "#fce5ff", + "color-fuchsia-400": "#ec70ff", + "color-fuchsia-800": "#78008a", "color-gap-global-drawer": "#0f141a", "color-grey-opaque-10": "rgba(0, 0, 0, 0.1)", "color-grey-opaque-25": "rgba(255, 255, 255, 0.25)", @@ -6972,12 +7611,25 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-icon-action-card-default": "#42b4ff", "color-icon-action-card-disabled": "#656871", "color-icon-action-card-hover": "#75cfff", + "color-info-100": "#d1f1ff", "color-info-1000": "#001129", "color-info-300": "#75cfff", "color-info-400": "#42b4ff", "color-info-50": "#f0fbff", "color-info-600": "#006ce0", + "color-info-700": "#004a9e", + "color-info-800": "#003b8f", + "color-info-950": "#00204d", "color-item-selected": "#42b4ff", + "color-lime-100": "#ebffcc", + "color-lime-400": "#7ae500", + "color-lime-800": "#005700", + "color-magenta-100": "#ffe0fb", + "color-magenta-400": "#ff57e9", + "color-magenta-800": "#8f0072", + "color-mint-100": "#ccffe9", + "color-mint-400": "#00e582", + "color-mint-800": "#005237", "color-neutral-100": "#f9f9fa", "color-neutral-1000": "#06080a", "color-neutral-150": "#f6f6f9", @@ -6998,6 +7650,12 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-neutral-850": "#161d26", "color-neutral-900": "#131920", "color-neutral-950": "#0f141a", + "color-orange-100": "#ffe0d6", + "color-orange-400": "#ff6a3d", + "color-orange-800": "#8a2000", + "color-pink-100": "#ffe0f0", + "color-pink-400": "#ff66b2", + "color-pink-800": "#8f0047", "color-primary-100": "#d1f1ff", "color-primary-1000": "#001129", "color-primary-200": "#b8e7ff", @@ -7009,8 +7667,14 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-primary-700": "#004a9e", "color-primary-800": "#003b8f", "color-primary-900": "#002b66", + "color-primary-950": "#00204d", + "color-purple-100": "#f2e5ff", "color-purple-400": "#bf80ff", "color-purple-700": "#7300e5", + "color-purple-800": "#5900b2", + "color-rose-100": "#ffe0e8", + "color-rose-400": "#ff5c85", + "color-rose-800": "#940025", "color-severity-dark-red": "#d63f38", "color-severity-grey": "#656871", "color-severity-orange": "#f89256", @@ -7020,11 +7684,36 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-shadow-side": "rgba(15, 20, 26, 1)", "color-shadow-toggle-handle": "rgba(0, 0, 0, 0.25)", "color-stroke-chart-line": "#8c8c94", + "color-success-100": "#d9ffd6", "color-success-1000": "#001401", + "color-success-400": "#00e500", "color-success-50": "#effff1", "color-success-500": "#2bb534", "color-success-600": "#00802f", + "color-success-800": "#005c26", + "color-success-950": "#003311", + "color-teal-100": "#ccfffc", + "color-teal-400": "#00d6c8", + "color-teal-800": "#00524c", "color-text-accent": "#42b4ff", + "color-text-accent-amber": "#ff9900", + "color-text-accent-blue": "#42b4ff", + "color-text-accent-cyan": "#00d2e5", + "color-text-accent-fuchsia": "#ec70ff", + "color-text-accent-green": "#00e500", + "color-text-accent-grey": "#dedee3", + "color-text-accent-indigo": "#42b4ff", + "color-text-accent-lime": "#7ae500", + "color-text-accent-magenta": "#ff57e9", + "color-text-accent-mint": "#00e582", + "color-text-accent-orange": "#ff6a3d", + "color-text-accent-pink": "#ff66b2", + "color-text-accent-purple": "#bf80ff", + "color-text-accent-red": "#ff7a7a", + "color-text-accent-rose": "#ff5c85", + "color-text-accent-teal": "#00d6c8", + "color-text-accent-violet": "#978aff", + "color-text-accent-yellow": "#ffe347", "color-text-action-card-disabled": "#8c8c94", "color-text-avatar": "#ffffff", "color-text-badge-blue": "#f9f9fa", @@ -7156,11 +7845,18 @@ exports[`CSS Custom Properties match previous snapshot for mode "visual-refresh- "color-text-tutorial-hotspot-hover": "#75cfff", "color-transparent": "transparent", "color-tree-view-connector-line": "#dedee3", + "color-violet-100": "#e8e5ff", + "color-violet-400": "#978aff", + "color-violet-800": "#4200db", + "color-warning-100": "#fffbbd", "color-warning-1000": "#191100", "color-warning-400": "#ffe347", "color-warning-50": "#fffef0", "color-warning-500": "#fbd332", + "color-warning-600": "#f2b100", + "color-warning-800": "#9e6900", "color-warning-900": "#855900", + "color-warning-950": "#573a00", "color-white": "#ffffff", "font-button-letter-spacing": "0.005em", "font-chart-detail-size": "12px", diff --git a/src/__tests__/snapshot-tests/__snapshots__/design-tokens.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/design-tokens.test.ts.snap index 882cd94320..a65ec9cf11 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/design-tokens.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/design-tokens.test.ts.snap @@ -197,6 +197,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -2381,6 +2507,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -3801,6 +4053,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -5985,6 +6363,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -7405,6 +7909,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -9589,6 +10219,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -11009,6 +11765,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -13193,6 +14075,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -14613,6 +15621,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -16797,6 +17931,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -18217,6 +19477,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "rgba(250, 111, 0, 0.2)", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "rgba(0, 164, 189, 0.2)", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "rgba(228, 51, 255, 0.2)", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "rgba(43, 181, 52, 0.2)", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#414750", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "rgba(49, 184, 0, 0.2)", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "rgba(255, 26, 224, 0.2)", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "rgba(0, 189, 107, 0.2)", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "rgba(255, 75, 20, 0.2)", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "rgba(255, 51, 153, 0.2)", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "rgba(173, 92, 255, 0.2)", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "rgba(255, 61, 61, 0.2)", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "rgba(255, 56, 106, 0.2)", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "rgba(0, 173, 162, 0.2)", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "rgba(133, 117, 255, 0.2)", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "rgba(251, 211, 50, 0.2)", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -20401,6 +21787,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#44b9d6", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#ff9900", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#00a1c9", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#00d2e5", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#ec70ff", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#00e500", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#d5dbdb", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#00a1c9", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#7ae500", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#ff57e9", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#00e582", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#ff6a3d", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#ff66b2", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#bf80ff", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#ff5d64", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#ff5c85", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00d6c8", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#978aff", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#ffe347", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -21821,6 +23333,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "$description": "The border width of tokens.", "$value": "1px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#414750", + "light": "#eaeded", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -24005,6 +25643,132 @@ exports[`Design tokens artifacts Design tokens JSON for classic matches the snap "light": "#0073bb", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#d5dbdb", + "light": "#21252c", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00a1c9", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5d64", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#906806", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -25430,6 +27194,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -27614,6 +29504,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -29034,6 +31050,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "rgba(250, 111, 0, 0.2)", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "rgba(0, 164, 189, 0.2)", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "rgba(228, 51, 255, 0.2)", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "rgba(43, 181, 52, 0.2)", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#333843", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "rgba(49, 184, 0, 0.2)", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "rgba(255, 26, 224, 0.2)", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "rgba(0, 189, 107, 0.2)", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "rgba(255, 75, 20, 0.2)", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "rgba(255, 51, 153, 0.2)", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "rgba(173, 92, 255, 0.2)", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "rgba(255, 61, 61, 0.2)", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "rgba(255, 56, 106, 0.2)", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "rgba(0, 173, 162, 0.2)", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "rgba(133, 117, 255, 0.2)", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "rgba(251, 211, 50, 0.2)", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -31218,6 +33360,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#42b4ff", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#ff9900", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#00d2e5", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#ec70ff", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#00e500", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#dedee3", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#7ae500", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#ff57e9", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#00e582", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#ff6a3d", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#ff66b2", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#bf80ff", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#ff7a7a", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#ff5c85", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00d6c8", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#978aff", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#ffe347", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -32638,6 +34906,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -34822,6 +37216,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -36242,6 +38762,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -38426,6 +41072,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -39846,6 +42618,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -42030,6 +44928,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -43450,6 +46474,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -45634,6 +48784,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -47054,6 +50330,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "rgba(250, 111, 0, 0.2)", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "rgba(0, 164, 189, 0.2)", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "rgba(228, 51, 255, 0.2)", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "rgba(43, 181, 52, 0.2)", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#333843", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "rgba(49, 184, 0, 0.2)", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "rgba(255, 26, 224, 0.2)", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "rgba(0, 189, 107, 0.2)", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "rgba(255, 75, 20, 0.2)", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "rgba(255, 51, 153, 0.2)", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "rgba(173, 92, 255, 0.2)", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "rgba(255, 61, 61, 0.2)", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "rgba(255, 56, 106, 0.2)", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "rgba(0, 173, 162, 0.2)", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "rgba(133, 117, 255, 0.2)", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "rgba(251, 211, 50, 0.2)", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -49238,6 +52640,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#42b4ff", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#ff9900", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#00d2e5", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#ec70ff", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#00e500", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#dedee3", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#7ae500", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#ff57e9", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#00e582", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#ff6a3d", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#ff66b2", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#bf80ff", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#ff7a7a", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#ff5c85", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00d6c8", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#978aff", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#ffe347", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -50658,6 +54186,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "rgba(250, 111, 0, 0.2)", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "rgba(0, 164, 189, 0.2)", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "rgba(228, 51, 255, 0.2)", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "rgba(43, 181, 52, 0.2)", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#333843", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "rgba(0, 153, 255, 0.2)", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "rgba(49, 184, 0, 0.2)", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "rgba(255, 26, 224, 0.2)", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "rgba(0, 189, 107, 0.2)", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "rgba(255, 75, 20, 0.2)", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "rgba(255, 51, 153, 0.2)", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "rgba(173, 92, 255, 0.2)", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "rgba(255, 61, 61, 0.2)", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "rgba(255, 56, 106, 0.2)", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "rgba(0, 173, 162, 0.2)", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "rgba(133, 117, 255, 0.2)", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "rgba(251, 211, 50, 0.2)", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -52842,6 +56496,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#42b4ff", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#ff9900", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#00d2e5", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#ec70ff", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#00e500", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#dedee3", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#42b4ff", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#7ae500", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#ff57e9", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#00e582", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#ff6a3d", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#ff66b2", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#bf80ff", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#ff7a7a", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#ff5c85", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00d6c8", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#978aff", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#ffe347", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { @@ -54262,6 +58042,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "$description": "The border width of tokens.", "$value": "2px", }, + "color-background-accent-amber": { + "$description": "The background color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(250, 111, 0, 0.2)", + "light": "#ffe8bd", + }, + }, + "color-background-accent-blue": { + "$description": "The background color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-cyan": { + "$description": "The background color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 164, 189, 0.2)", + "light": "#d1fbff", + }, + }, + "color-background-accent-fuchsia": { + "$description": "The background color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(228, 51, 255, 0.2)", + "light": "#fce5ff", + }, + }, + "color-background-accent-green": { + "$description": "The background color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(43, 181, 52, 0.2)", + "light": "#d9ffd6", + }, + }, + "color-background-accent-grey": { + "$description": "The background color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#333843", + "light": "#ebebf0", + }, + }, + "color-background-accent-indigo": { + "$description": "The background color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 153, 255, 0.2)", + "light": "#d1f1ff", + }, + }, + "color-background-accent-lime": { + "$description": "The background color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(49, 184, 0, 0.2)", + "light": "#ebffcc", + }, + }, + "color-background-accent-magenta": { + "$description": "The background color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 26, 224, 0.2)", + "light": "#ffe0fb", + }, + }, + "color-background-accent-mint": { + "$description": "The background color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 189, 107, 0.2)", + "light": "#ccffe9", + }, + }, + "color-background-accent-orange": { + "$description": "The background color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 75, 20, 0.2)", + "light": "#ffe0d6", + }, + }, + "color-background-accent-pink": { + "$description": "The background color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 51, 153, 0.2)", + "light": "#ffe0f0", + }, + }, + "color-background-accent-purple": { + "$description": "The background color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(173, 92, 255, 0.2)", + "light": "#f2e5ff", + }, + }, + "color-background-accent-red": { + "$description": "The background color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 61, 61, 0.2)", + "light": "#ffe0e0", + }, + }, + "color-background-accent-rose": { + "$description": "The background color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(255, 56, 106, 0.2)", + "light": "#ffe0e8", + }, + }, + "color-background-accent-teal": { + "$description": "The background color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(0, 173, 162, 0.2)", + "light": "#ccfffc", + }, + }, + "color-background-accent-violet": { + "$description": "The background color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(133, 117, 255, 0.2)", + "light": "#e8e5ff", + }, + }, + "color-background-accent-yellow": { + "$description": "The background color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "rgba(251, 211, 50, 0.2)", + "light": "#fffbbd", + }, + }, "color-background-action-card-active": { "$description": "The background color of action cards in active state.", "$value": { @@ -56446,6 +60352,132 @@ exports[`Design tokens artifacts Design tokens JSON for visual-refresh matches t "light": "#006ce0", }, }, + "color-text-accent-amber": { + "$description": "The content color of the amber accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff9900", + "light": "#7a2b00", + }, + }, + "color-text-accent-blue": { + "$description": "The content color of the blue accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-cyan": { + "$description": "The content color of the cyan accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d2e5", + "light": "#004761", + }, + }, + "color-text-accent-fuchsia": { + "$description": "The content color of the fuchsia accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ec70ff", + "light": "#78008a", + }, + }, + "color-text-accent-green": { + "$description": "The content color of the green accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e500", + "light": "#005c26", + }, + }, + "color-text-accent-grey": { + "$description": "The content color of the grey accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#dedee3", + "light": "#1b232d", + }, + }, + "color-text-accent-indigo": { + "$description": "The content color of the indigo accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#42b4ff", + "light": "#003b8f", + }, + }, + "color-text-accent-lime": { + "$description": "The content color of the lime accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#7ae500", + "light": "#005700", + }, + }, + "color-text-accent-magenta": { + "$description": "The content color of the magenta accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff57e9", + "light": "#8f0072", + }, + }, + "color-text-accent-mint": { + "$description": "The content color of the mint accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00e582", + "light": "#005237", + }, + }, + "color-text-accent-orange": { + "$description": "The content color of the orange accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff6a3d", + "light": "#8a2000", + }, + }, + "color-text-accent-pink": { + "$description": "The content color of the pink accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff66b2", + "light": "#8f0047", + }, + }, + "color-text-accent-purple": { + "$description": "The content color of the purple accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#bf80ff", + "light": "#5900b2", + }, + }, + "color-text-accent-red": { + "$description": "The content color of the red accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff7a7a", + "light": "#990000", + }, + }, + "color-text-accent-rose": { + "$description": "The content color of the rose accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ff5c85", + "light": "#940025", + }, + }, + "color-text-accent-teal": { + "$description": "The content color of the teal accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#00d6c8", + "light": "#00524c", + }, + }, + "color-text-accent-violet": { + "$description": "The content color of the violet accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#978aff", + "light": "#4200db", + }, + }, + "color-text-accent-yellow": { + "$description": "The content color of the yellow accent in the Box \`awsui-accent\` variant.", + "$value": { + "dark": "#ffe347", + "light": "#855900", + }, + }, "color-text-action-card-disabled": { "$description": "The text color of action cards in disabled state.", "$value": { diff --git a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap index a6b649ff84..7efbe77a71 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -5017,6 +5017,100 @@ Override the HTML tag by using property \`tagOverride\`.", "optional": true, "type": "string", }, + { + "description": "Renders the box as a visual accent wrapper to emphasize its content. + +Setting this property activates the accent styling: the component renders a \`span\` +with a coordinated background and content color combination that works in both light +and dark modes. A \`variant\` is not required to activate the accent. + +The object accepts the following fields: +- \`color\` (required) — the coordinated background and foreground color pair. The foreground + color is applied as the wrapper's CSS \`color\`, so it only affects content that inherits + the current color (for example an \`Icon\`, or a nested \`Box\` with \`color="inherit"\`). + Content that sets its own color is not overridden. +- \`aspectRatio\` — \`auto\` (default) lets the wrapper's width follow its content; + \`equal\` forces equal width and height, suitable for wrapping icons. +- \`borderRadius\` — the corner rounding applied to the wrapper. Accepts a t-shirt size keyword + from the Box spacing scale (\`n\`, \`xxxs\`, \`xxs\`, \`xs\`, \`s\`, \`m\`, \`l\`, \`xl\`, \`xxl\`, \`xxxl\`) or + any valid CSS \`border-radius\` value such as \`'13px'\`. Set it to \`'50%'\` together with + \`aspectRatio: 'equal'\` to render a circle. + +Composes with existing Box props such as \`padding\` and \`margin\`.", + "inlineType": { + "name": "BoxProps.VisualAccent", + "properties": [ + { + "inlineType": { + "name": "BoxProps.VisualAccent.AspectRatio", + "type": "union", + "values": [ + "auto", + "equal", + ], + }, + "name": "aspectRatio", + "optional": true, + "type": "string", + }, + { + "inlineType": { + "name": "BoxProps.VisualAccent.BorderRadius", + "type": "union", + "values": [ + ""s"", + ""m"", + "string & {}", + ""n"", + ""xxxs"", + ""xxs"", + ""xs"", + ""l"", + ""xl"", + ""xxl"", + ""xxxl"", + ], + }, + "name": "borderRadius", + "optional": true, + "type": "BoxProps.VisualAccent.BorderRadius", + }, + { + "inlineType": { + "name": "BoxProps.VisualAccent.Color", + "type": "union", + "values": [ + "blue", + "cyan", + "fuchsia", + "green", + "grey", + "indigo", + "lime", + "magenta", + "orange", + "pink", + "purple", + "red", + "teal", + "violet", + "yellow", + "mint", + "rose", + "amber", + ], + }, + "name": "color", + "optional": false, + "type": "string", + }, + ], + "type": "object", + }, + "name": "visualAccent", + "optional": true, + "type": "BoxProps.VisualAccent", + }, ], "regions": [ { diff --git a/src/box/__tests__/box.test.tsx b/src/box/__tests__/box.test.tsx index 1db48d5d10..6c118fc543 100644 --- a/src/box/__tests__/box.test.tsx +++ b/src/box/__tests__/box.test.tsx @@ -4,6 +4,7 @@ import React from 'react'; import { render } from '@testing-library/react'; import Box, { BoxProps } from '../../../lib/components/box'; +import customCssProps from '../../../lib/components/internal/generated/custom-css-properties'; import BoxWrapper from '../../../lib/components/test-utils/dom/box'; import styles from '../../../lib/components/box/styles.css.js'; @@ -174,4 +175,102 @@ describe('Box', () => { expect(container.firstChild).toHaveClass('additional-class'); }); }); + + describe('visualAccent property', () => { + test('renders a span by default', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo' } }); + expect(boxWrapper.getElement().tagName).toBe('SPAN'); + }); + + test('applies the base visual-accent class', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo' } }); + expect(boxWrapper.getElement()).toHaveClass(styles['visual-accent']); + }); + + test('applies the correct color class', () => { + const colors: Array = [ + 'red', + 'yellow', + 'indigo', + 'green', + 'orange', + 'purple', + 'mint', + 'lime', + 'grey', + ]; + colors.forEach(color => { + const boxWrapper = renderBox({ visualAccent: { color } }); + expect(boxWrapper.getElement()).toHaveClass(styles[`visual-accent-${color}`]); + }); + }); + + test('does not apply any accent class when visualAccent is not set', () => { + const boxWrapper = renderBox({}); + const element = boxWrapper.getElement(); + expect(element.className).not.toMatch(/visual-accent/); + expect(element.tagName).toBe('DIV'); + }); + + test('defaults to the auto aspect ratio', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo' } }); + expect(boxWrapper.getElement()).toHaveClass(styles['visual-accent-aspect-auto']); + }); + + test('applies the correct aspect ratio class', () => { + const aspectRatios: Array = ['auto', 'equal']; + aspectRatios.forEach(aspectRatio => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo', aspectRatio } }); + expect(boxWrapper.getElement()).toHaveClass(styles[`visual-accent-aspect-${aspectRatio}`]); + }); + }); + + test('applies the correct class for each t-shirt size borderRadius keyword', () => { + const keywords: Array = [ + 'n', + 'xxxs', + 'xxs', + 'xs', + 's', + 'm', + 'l', + 'xl', + 'xxl', + 'xxxl', + ]; + keywords.forEach(borderRadius => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo', borderRadius } }); + const element = boxWrapper.getElement(); + expect(element).toHaveClass(styles[`visual-accent-radius-${borderRadius}`]); + // Keyword radii are applied via class, not the custom property. + expect(element.style.getPropertyValue(customCssProps.boxVisualAccentBorderRadius)).toBe(''); + }); + }); + + test('applies an arbitrary CSS borderRadius value through the custom property', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo', borderRadius: '13px' } }); + const element = boxWrapper.getElement(); + expect(element.style.getPropertyValue(customCssProps.boxVisualAccentBorderRadius)).toBe('13px'); + expect(element.className).not.toMatch(/visual-accent-radius-/); + }); + + test('does not set the borderRadius custom property or class when borderRadius is not set', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo' } }); + const element = boxWrapper.getElement(); + expect(element.style.getPropertyValue(customCssProps.boxVisualAccentBorderRadius)).toBe(''); + expect(element.className).not.toMatch(/visual-accent-radius-/); + }); + + test('renders a circle when combining equal aspect ratio and 50% borderRadius', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo', aspectRatio: 'equal', borderRadius: '50%' } }); + const element = boxWrapper.getElement(); + expect(element).toHaveClass(styles['visual-accent-aspect-equal']); + expect(element.style.getPropertyValue(customCssProps.boxVisualAccentBorderRadius)).toBe('50%'); + }); + + test('tagOverride works with visualAccent', () => { + const boxWrapper = renderBox({ visualAccent: { color: 'indigo' }, tagOverride: 'div' }); + expect(boxWrapper.getElement().tagName).toBe('DIV'); + }); + }); }); diff --git a/src/box/interfaces.ts b/src/box/interfaces.ts index a6acb96ee9..26fab89e05 100644 --- a/src/box/interfaces.ts +++ b/src/box/interfaces.ts @@ -23,6 +23,28 @@ export interface BoxProps extends BaseComponentProps { * Override the HTML tag by using property `tagOverride`. */ variant?: BoxProps.Variant; + /** + * Renders the box as a visual accent wrapper to emphasize its content. + * + * Setting this property activates the accent styling: the component renders a `span` + * with a coordinated background and content color combination that works in both light + * and dark modes. A `variant` is not required to activate the accent. + * + * The object accepts the following fields: + * - `color` (required) — the coordinated background and foreground color pair. The foreground + * color is applied as the wrapper's CSS `color`, so it only affects content that inherits + * the current color (for example an `Icon`, or a nested `Box` with `color="inherit"`). + * Content that sets its own color is not overridden. + * - `aspectRatio` — `auto` (default) lets the wrapper's width follow its content; + * `equal` forces equal width and height, suitable for wrapping icons. + * - `borderRadius` — the corner rounding applied to the wrapper. Accepts a t-shirt size keyword + * from the Box spacing scale (`n`, `xxxs`, `xxs`, `xs`, `s`, `m`, `l`, `xl`, `xxl`, `xxxl`) or + * any valid CSS `border-radius` value such as `'13px'`. Set it to `'50%'` together with + * `aspectRatio: 'equal'` to render a circle. + * + * Composes with existing Box props such as `padding` and `margin`. + */ + visualAccent?: BoxProps.VisualAccent; /** * Overrides the default HTML tag provided by the variant. */ @@ -156,6 +178,70 @@ export namespace BoxProps { | 'awsui-value-large' | 'awsui-inline-code'; + export interface VisualAccent { + /** + * The coordinated background and foreground color pair applied to the accent wrapper. + * Each color works in both light and dark modes. + * + * The background color is applied directly to the wrapper. The foreground color is applied + * as the wrapper's CSS `color` and is therefore only picked up by content that inherits the + * current color, such as an `Icon` or a nested `Box` with `color="inherit"`. Content that + * defines its own color (for example a `Box` with an explicit `color`, or a `Link`) keeps that + * color and is not recolored by the accent. + */ + color: BoxProps.VisualAccent.Color; + /** + * Controls the aspect ratio of the accent wrapper. + * + * - `auto` (default) — the wrapper's width follows its content. + * - `equal` — the wrapper has equal width and height, suitable for wrapping icons. + * + * Combine `aspectRatio: 'equal'` with `borderRadius: '50%'` to render a circle. + */ + aspectRatio?: BoxProps.VisualAccent.AspectRatio; + /** + * The corner rounding applied to the accent wrapper. + * + * You can use one of the curated t-shirt size keywords, which map to the same spacing scale + * used by `padding` and `margin`: `n` (none), `xxxs`, `xxs`, `xs`, `s`, `m`, `l`, `xl`, `xxl`, + * or `xxxl`. + * + * You can also pass any valid CSS `border-radius` value as a string (for example `'13px'`, + * `'0.5rem'`, or `'50%'`), which is applied as-is. Combine `borderRadius: '50%'` with + * `aspectRatio: 'equal'` to render a circle. + */ + borderRadius?: BoxProps.VisualAccent.BorderRadius; + } + + export namespace VisualAccent { + export type Color = + | 'red' + | 'yellow' + | 'indigo' + | 'green' + | 'orange' + | 'purple' + | 'mint' + | 'lime' + | 'grey' + | 'teal' + | 'cyan' + | 'blue' + | 'violet' + | 'fuchsia' + | 'magenta' + | 'pink' + | 'rose' + | 'amber'; + export type AspectRatio = 'auto' | 'equal'; + /** + * A curated t-shirt size keyword aligned to the Box spacing scale + * (`n`, `xxxs`, `xxs`, `xs`, `s`, `m`, `l`, `xl`, `xxl`, `xxxl`), or any valid CSS + * `border-radius` value. + */ + export type BorderRadius = 'n' | 'xxxs' | 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl' | (string & {}); + } + export type Display = 'block' | 'inline' | 'inline-block' | 'none'; export type TextAlign = 'left' | 'center' | 'right'; export type Float = 'left' | 'right'; diff --git a/src/box/internal.tsx b/src/box/internal.tsx index b8391b6eb3..426d87907d 100644 --- a/src/box/internal.tsx +++ b/src/box/internal.tsx @@ -4,6 +4,7 @@ import React from 'react'; import clsx from 'clsx'; import { getBaseProps } from '../internal/base-component'; +import customCssProps from '../internal/generated/custom-css-properties'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import WithNativeAttributes from '../internal/utils/with-native-attributes'; import { BoxProps } from './interfaces'; @@ -12,6 +13,11 @@ import styles from './styles.css.js'; type InternalBoxProps = BoxProps & InternalBaseComponentProps; +// Curated t-shirt size keywords mirror the Box spacing scale and are applied via CSS classes so +// they resolve to the corresponding space tokens. Any other value is treated as a raw CSS +// `border-radius` string and applied through a custom property. +const RADIUS_KEYWORDS: ReadonlyArray = ['n', 'xxxs', 'xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl', 'xxxl']; + export default function InternalBox({ variant = 'div', tagOverride, @@ -23,6 +29,7 @@ export default function InternalBox({ fontSize, fontWeight, color, + visualAccent, children, nativeAttributes, __internalRootRef, @@ -32,11 +39,26 @@ export default function InternalBox({ const marginsClassNamesSuffices = getClassNamesSuffixes(margin); const paddingsClassNamesSuffices = getClassNamesSuffixes(padding); + const accentAspectRatio = visualAccent?.aspectRatio ?? 'auto'; + const accentBorderRadius = visualAccent?.borderRadius; + const isRadiusKeyword = accentBorderRadius !== undefined && RADIUS_KEYWORDS.includes(accentBorderRadius); + // Arbitrary (non-keyword) values are applied through a custom CSS property, which the base + // `.visual-accent` rule reads. This keeps custom rounding CSP-safe. Keyword values are handled + // by dedicated classes that map to the spacing tokens. + const accentStyle = + accentBorderRadius !== undefined && !isRadiusKeyword + ? { [customCssProps.boxVisualAccentBorderRadius]: accentBorderRadius } + : undefined; + const className = clsx( baseProps.className, styles.root, styles.box, styles[`${variant.replace(/^awsui-/, '')}-variant`], + visualAccent && styles['visual-accent'], + visualAccent && styles[`visual-accent-${visualAccent.color}`], + visualAccent && styles[`visual-accent-aspect-${accentAspectRatio}`], + visualAccent && isRadiusKeyword && styles[`visual-accent-radius-${accentBorderRadius}`], marginsClassNamesSuffices.map(suffix => styles[`m-${suffix}`]), paddingsClassNamesSuffices.map(suffix => styles[`p-${suffix}`]), styles[`d-${display}`], @@ -53,11 +75,12 @@ export default function InternalBox({ return ( {children} @@ -73,11 +96,15 @@ const getClassNamesSuffixes = (value: BoxProps.SpacingSize | BoxProps.Spacing) = return sides.filter(side => !!value[side]).map(side => `${side}-${value[side]}`); }; -const getTag = (variant: BoxProps.Variant, tagOverride: BoxProps['tagOverride']) => { +const getTag = (variant: BoxProps.Variant, tagOverride: BoxProps['tagOverride'], hasVisualAccent: boolean) => { if (tagOverride) { return tagOverride; } + if (hasVisualAccent) { + return 'span'; + } + if (variant === 'awsui-value-large') { return 'span'; } diff --git a/src/box/styles.scss b/src/box/styles.scss index 02596c3049..789004f659 100644 --- a/src/box/styles.scss +++ b/src/box/styles.scss @@ -6,6 +6,7 @@ @use '../internal/styles' as styles; @use './text'; @use './layout'; +@use './visual-accent'; .root { @include styles.default-text-style; diff --git a/src/box/visual-accent.scss b/src/box/visual-accent.scss new file mode 100644 index 0000000000..c88c76aa8a --- /dev/null +++ b/src/box/visual-accent.scss @@ -0,0 +1,179 @@ +/* + Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + SPDX-License-Identifier: Apache-2.0 +*/ + +@use 'sass:map'; +@use '../internal/styles/tokens' as awsui; +@use '../internal/styles/utils/theming' as theming; +@use '../internal/generated/custom-css-properties/index.scss' as custom-props; + +// T-shirt size keywords mirror the Box spacing scale (see spacing.scss). +$accent-radii: ( + 'n': awsui.$space-none, + 'xxxs': awsui.$space-xxxs, + 'xxs': awsui.$space-xxs, + 'xs': awsui.$space-xs, + 's': awsui.$space-s, + 'm': awsui.$space-m, + 'l': awsui.$space-l, + 'xl': awsui.$space-xl, + 'xxl': awsui.$space-xxl, + 'xxxl': awsui.$space-xxxl, +); + +@mixin accent-radius($value) { + border-start-start-radius: $value; + border-start-end-radius: $value; + border-end-start-radius: $value; + border-end-end-radius: $value; +} + +// ─── Base visual accent container ───────────────────────────────────────────── +// Applied whenever the `visualAccent` prop is set. Provides the container layout and default +// corner rounding. Corner rounding falls back to the `boxVisualAccentBorderRadius` custom +// property (set by the component for arbitrary CSS `borderRadius` values), or a small default +// when `borderRadius` is not set. Curated t-shirt size keywords are handled by the +// `.visual-accent-radius-*` classes below, which override this value. +.visual-accent { + display: inline-flex; + align-items: center; + justify-content: center; + padding-block: awsui.$space-xxs; + padding-inline: awsui.$space-xs; + box-sizing: border-box; + @include accent-radius(var(#{custom-props.$boxVisualAccentBorderRadius}, 2px)); +} + +// ─── Accent border radius (t-shirt size keywords) ───────────────────────────── +// Mirror the Box spacing scale so `borderRadius` keywords align with `padding` / `margin`. +@each $name, $value in $accent-radii { + .visual-accent-radius-#{$name} { + @include accent-radius($value); + } +} + +// ─── Accent aspect ratio ────────────────────────────────────────────────────── +// `auto` — default; the container's width follows its content. +// `equal` — equal width and height, suitable for icon wrapping. Combine with +// `borderRadius: '50%'` to render a circle. + +.visual-accent-aspect-auto { + // Reset any square constraints so content can size the container naturally. + aspect-ratio: auto; + inline-size: auto; +} + +.visual-accent-aspect-equal { + // Equal padding on all sides. + padding-block: awsui.$space-xs; + padding-inline: awsui.$space-xs; + // Force the element to be a square regardless of content dimensions. + // The width is constrained to match the height (content + padding). + aspect-ratio: 1 / 1; + // Prevent content from stretching the box wider than tall. + overflow: hidden; + // Let the box shrink-wrap to its height, width follows via aspect-ratio. + inline-size: fit-content; +} + +// ─── Accent colors ────────────────────────────────────────────────────────────── +// Light/dark values are resolved by the design tokens, so no explicit dark-mode +// overrides are needed here. +// +// The selectors chain the `.visual-accent` base class with the `.visual-accent-{color}` +// modifier (both are always applied together whenever `visualAccent` is set) to reach a +// specificity of (0,3,0). This intentionally beats the `color` prop's `.box.color-*` +// selector (0,2,0) so the accent's coordinated foreground color always wins, regardless of +// stylesheet source order. Winning here preserves the guaranteed background/foreground color +// contrast of the accent pair. Descendants (nested Box, Icon) inherit this color. + +.box.visual-accent.visual-accent-red { + background-color: awsui.$color-background-accent-red; + color: awsui.$color-text-accent-red; +} + +.box.visual-accent.visual-accent-yellow { + background-color: awsui.$color-background-accent-yellow; + color: awsui.$color-text-accent-yellow; +} + +.box.visual-accent.visual-accent-indigo { + background-color: awsui.$color-background-accent-indigo; + color: awsui.$color-text-accent-indigo; +} + +.box.visual-accent.visual-accent-green { + background-color: awsui.$color-background-accent-green; + color: awsui.$color-text-accent-green; +} + +.box.visual-accent.visual-accent-orange { + background-color: awsui.$color-background-accent-orange; + color: awsui.$color-text-accent-orange; +} + +.box.visual-accent.visual-accent-purple { + background-color: awsui.$color-background-accent-purple; + color: awsui.$color-text-accent-purple; +} + +.box.visual-accent.visual-accent-mint { + background-color: awsui.$color-background-accent-mint; + color: awsui.$color-text-accent-mint; +} + +.box.visual-accent.visual-accent-lime { + background-color: awsui.$color-background-accent-lime; + color: awsui.$color-text-accent-lime; +} + +.box.visual-accent.visual-accent-grey { + background-color: awsui.$color-background-accent-grey; + color: awsui.$color-text-accent-grey; +} + +.box.visual-accent.visual-accent-teal { + background-color: awsui.$color-background-accent-teal; + color: awsui.$color-text-accent-teal; +} + +.box.visual-accent.visual-accent-cyan { + background-color: awsui.$color-background-accent-cyan; + color: awsui.$color-text-accent-cyan; +} + +.box.visual-accent.visual-accent-blue { + background-color: awsui.$color-background-accent-blue; + color: awsui.$color-text-accent-blue; +} + +.box.visual-accent.visual-accent-violet { + background-color: awsui.$color-background-accent-violet; + color: awsui.$color-text-accent-violet; +} + +.box.visual-accent.visual-accent-fuchsia { + background-color: awsui.$color-background-accent-fuchsia; + color: awsui.$color-text-accent-fuchsia; +} + +.box.visual-accent.visual-accent-magenta { + background-color: awsui.$color-background-accent-magenta; + color: awsui.$color-text-accent-magenta; +} + +.box.visual-accent.visual-accent-pink { + background-color: awsui.$color-background-accent-pink; + color: awsui.$color-text-accent-pink; +} + +.box.visual-accent.visual-accent-rose { + background-color: awsui.$color-background-accent-rose; + color: awsui.$color-text-accent-rose; +} + +.box.visual-accent.visual-accent-amber { + background-color: awsui.$color-background-accent-amber; + color: awsui.$color-text-accent-amber; +} diff --git a/src/dropdown/__tests__/__snapshots__/styles.test.tsx.snap b/src/dropdown/__tests__/__snapshots__/styles.test.tsx.snap index e365408648..9c001baa70 100644 --- a/src/dropdown/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/dropdown/__tests__/__snapshots__/styles.test.tsx.snap @@ -6,9 +6,9 @@ exports[`getDropdownStyles handles all possible style configurations 2`] = `unde exports[`getDropdownStyles handles all possible style configurations 3`] = ` { - "--awsui-dropdown-content-border-color-6b9ypa": "rgb(0, 0, 0)", - "--awsui-dropdown-content-border-radius-6b9ypa": "8px", - "--awsui-dropdown-content-border-width-6b9ypa": "2px", + "--awsui-dropdown-content-border-color-alpv7o": "rgb(0, 0, 0)", + "--awsui-dropdown-content-border-radius-alpv7o": "8px", + "--awsui-dropdown-content-border-width-alpv7o": "2px", "background": "rgb(255, 255, 255)", } `; diff --git a/src/input/__tests__/__snapshots__/styles.test.tsx.snap b/src/input/__tests__/__snapshots__/styles.test.tsx.snap index 85c1053781..1c933681d0 100644 --- a/src/input/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/input/__tests__/__snapshots__/styles.test.tsx.snap @@ -2,30 +2,30 @@ exports[`getInputStyles handles all possible style configurations 1`] = ` { - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-focus-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-background-readonly-6b9ypa": undefined, - "--awsui-style-border-color-default-6b9ypa": undefined, - "--awsui-style-border-color-disabled-6b9ypa": undefined, - "--awsui-style-border-color-focus-6b9ypa": undefined, - "--awsui-style-border-color-hover-6b9ypa": undefined, - "--awsui-style-border-color-readonly-6b9ypa": undefined, - "--awsui-style-box-shadow-default-6b9ypa": undefined, - "--awsui-style-box-shadow-disabled-6b9ypa": undefined, - "--awsui-style-box-shadow-focus-6b9ypa": undefined, - "--awsui-style-box-shadow-hover-6b9ypa": undefined, - "--awsui-style-box-shadow-readonly-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-focus-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-color-readonly-6b9ypa": undefined, - "--awsui-style-placeholder-color-6b9ypa": undefined, - "--awsui-style-placeholder-font-size-6b9ypa": undefined, - "--awsui-style-placeholder-font-style-6b9ypa": undefined, - "--awsui-style-placeholder-font-weight-6b9ypa": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-focus-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-background-readonly-alpv7o": undefined, + "--awsui-style-border-color-default-alpv7o": undefined, + "--awsui-style-border-color-disabled-alpv7o": undefined, + "--awsui-style-border-color-focus-alpv7o": undefined, + "--awsui-style-border-color-hover-alpv7o": undefined, + "--awsui-style-border-color-readonly-alpv7o": undefined, + "--awsui-style-box-shadow-default-alpv7o": undefined, + "--awsui-style-box-shadow-disabled-alpv7o": undefined, + "--awsui-style-box-shadow-focus-alpv7o": undefined, + "--awsui-style-box-shadow-hover-alpv7o": undefined, + "--awsui-style-box-shadow-readonly-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-focus-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-color-readonly-alpv7o": undefined, + "--awsui-style-placeholder-color-alpv7o": undefined, + "--awsui-style-placeholder-font-size-alpv7o": undefined, + "--awsui-style-placeholder-font-style-alpv7o": undefined, + "--awsui-style-placeholder-font-weight-alpv7o": undefined, "borderRadius": undefined, "borderWidth": undefined, "fontSize": undefined, @@ -37,30 +37,30 @@ exports[`getInputStyles handles all possible style configurations 1`] = ` exports[`getInputStyles handles all possible style configurations 2`] = ` { - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-focus-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-background-readonly-6b9ypa": undefined, - "--awsui-style-border-color-default-6b9ypa": undefined, - "--awsui-style-border-color-disabled-6b9ypa": undefined, - "--awsui-style-border-color-focus-6b9ypa": undefined, - "--awsui-style-border-color-hover-6b9ypa": undefined, - "--awsui-style-border-color-readonly-6b9ypa": undefined, - "--awsui-style-box-shadow-default-6b9ypa": undefined, - "--awsui-style-box-shadow-disabled-6b9ypa": undefined, - "--awsui-style-box-shadow-focus-6b9ypa": undefined, - "--awsui-style-box-shadow-hover-6b9ypa": undefined, - "--awsui-style-box-shadow-readonly-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-focus-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-color-readonly-6b9ypa": undefined, - "--awsui-style-placeholder-color-6b9ypa": undefined, - "--awsui-style-placeholder-font-size-6b9ypa": undefined, - "--awsui-style-placeholder-font-style-6b9ypa": undefined, - "--awsui-style-placeholder-font-weight-6b9ypa": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-focus-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-background-readonly-alpv7o": undefined, + "--awsui-style-border-color-default-alpv7o": undefined, + "--awsui-style-border-color-disabled-alpv7o": undefined, + "--awsui-style-border-color-focus-alpv7o": undefined, + "--awsui-style-border-color-hover-alpv7o": undefined, + "--awsui-style-border-color-readonly-alpv7o": undefined, + "--awsui-style-box-shadow-default-alpv7o": undefined, + "--awsui-style-box-shadow-disabled-alpv7o": undefined, + "--awsui-style-box-shadow-focus-alpv7o": undefined, + "--awsui-style-box-shadow-hover-alpv7o": undefined, + "--awsui-style-box-shadow-readonly-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-focus-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-color-readonly-alpv7o": undefined, + "--awsui-style-placeholder-color-alpv7o": undefined, + "--awsui-style-placeholder-font-size-alpv7o": undefined, + "--awsui-style-placeholder-font-style-alpv7o": undefined, + "--awsui-style-placeholder-font-weight-alpv7o": undefined, "borderRadius": undefined, "borderWidth": undefined, "fontSize": undefined, @@ -72,30 +72,30 @@ exports[`getInputStyles handles all possible style configurations 2`] = ` exports[`getInputStyles handles all possible style configurations 3`] = ` { - "--awsui-style-background-default-6b9ypa": "#ffffff", - "--awsui-style-background-disabled-6b9ypa": "#f0f0f0", - "--awsui-style-background-focus-6b9ypa": "#ffffff", - "--awsui-style-background-hover-6b9ypa": "#fafafa", - "--awsui-style-background-readonly-6b9ypa": "#ffffff", - "--awsui-style-border-color-default-6b9ypa": "#cccccc", - "--awsui-style-border-color-disabled-6b9ypa": "#e0e0e0", - "--awsui-style-border-color-focus-6b9ypa": "#0073bb", - "--awsui-style-border-color-hover-6b9ypa": "#999999", - "--awsui-style-border-color-readonly-6b9ypa": "#e0e0e0", - "--awsui-style-box-shadow-default-6b9ypa": "none", - "--awsui-style-box-shadow-disabled-6b9ypa": "none", - "--awsui-style-box-shadow-focus-6b9ypa": "0 0 0 2px #0073bb", - "--awsui-style-box-shadow-hover-6b9ypa": "0 1px 2px rgba(0,0,0,0.1)", - "--awsui-style-box-shadow-readonly-6b9ypa": "none", - "--awsui-style-color-default-6b9ypa": "#000000", - "--awsui-style-color-disabled-6b9ypa": "#999999", - "--awsui-style-color-focus-6b9ypa": "#000000", - "--awsui-style-color-hover-6b9ypa": "#000000", - "--awsui-style-color-readonly-6b9ypa": "#000000", - "--awsui-style-placeholder-color-6b9ypa": "#999999", - "--awsui-style-placeholder-font-size-6b9ypa": "14px", - "--awsui-style-placeholder-font-style-6b9ypa": "italic", - "--awsui-style-placeholder-font-weight-6b9ypa": "400", + "--awsui-style-background-default-alpv7o": "#ffffff", + "--awsui-style-background-disabled-alpv7o": "#f0f0f0", + "--awsui-style-background-focus-alpv7o": "#ffffff", + "--awsui-style-background-hover-alpv7o": "#fafafa", + "--awsui-style-background-readonly-alpv7o": "#ffffff", + "--awsui-style-border-color-default-alpv7o": "#cccccc", + "--awsui-style-border-color-disabled-alpv7o": "#e0e0e0", + "--awsui-style-border-color-focus-alpv7o": "#0073bb", + "--awsui-style-border-color-hover-alpv7o": "#999999", + "--awsui-style-border-color-readonly-alpv7o": "#e0e0e0", + "--awsui-style-box-shadow-default-alpv7o": "none", + "--awsui-style-box-shadow-disabled-alpv7o": "none", + "--awsui-style-box-shadow-focus-alpv7o": "0 0 0 2px #0073bb", + "--awsui-style-box-shadow-hover-alpv7o": "0 1px 2px rgba(0,0,0,0.1)", + "--awsui-style-box-shadow-readonly-alpv7o": "none", + "--awsui-style-color-default-alpv7o": "#000000", + "--awsui-style-color-disabled-alpv7o": "#999999", + "--awsui-style-color-focus-alpv7o": "#000000", + "--awsui-style-color-hover-alpv7o": "#000000", + "--awsui-style-color-readonly-alpv7o": "#000000", + "--awsui-style-placeholder-color-alpv7o": "#999999", + "--awsui-style-placeholder-font-size-alpv7o": "14px", + "--awsui-style-placeholder-font-style-alpv7o": "italic", + "--awsui-style-placeholder-font-weight-alpv7o": "400", "borderRadius": "4px", "borderWidth": "1px", "fontSize": "14px", diff --git a/src/item-card/__tests__/__snapshots__/styles.test.tsx.snap b/src/item-card/__tests__/__snapshots__/styles.test.tsx.snap index ecc1b65139..1c53ea3fae 100644 --- a/src/item-card/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/item-card/__tests__/__snapshots__/styles.test.tsx.snap @@ -42,11 +42,11 @@ exports[`getRootStyles handles all possible style configurations 2`] = `{}`; exports[`getRootStyles handles all possible style configurations 3`] = ` { - "--awsui-style-item-card-background-default-6b9ypa": "#ffffff", - "--awsui-style-item-card-border-color-default-6b9ypa": "#e0e0e0", - "--awsui-style-item-card-border-radius-6b9ypa": "8px", - "--awsui-style-item-card-border-width-default-6b9ypa": "1px", - "--awsui-style-item-card-box-shadow-default-6b9ypa": "0 1px 3px rgba(0,0,0,0.1)", + "--awsui-style-item-card-background-default-alpv7o": "#ffffff", + "--awsui-style-item-card-border-color-default-alpv7o": "#e0e0e0", + "--awsui-style-item-card-border-radius-alpv7o": "8px", + "--awsui-style-item-card-border-width-default-alpv7o": "1px", + "--awsui-style-item-card-box-shadow-default-alpv7o": "0 1px 3px rgba(0,0,0,0.1)", "borderRadius": "8px", } `; diff --git a/src/segmented-control/__tests__/__snapshots__/styles.test.tsx.snap b/src/segmented-control/__tests__/__snapshots__/styles.test.tsx.snap index 9cfed12417..9c9c7ca8fc 100644 --- a/src/segmented-control/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/segmented-control/__tests__/__snapshots__/styles.test.tsx.snap @@ -20,17 +20,17 @@ exports[`getSegmentedControlRootStyles handles all possible style configurations exports[`getSegmentedControlSegmentStyles handles all possible style configurations 1`] = ` { - "--awsui-style-background-active-6b9ypa": undefined, - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-color-active-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-focus-ring-border-color-6b9ypa": undefined, - "--awsui-style-focus-ring-border-radius-6b9ypa": undefined, - "--awsui-style-focus-ring-border-width-6b9ypa": undefined, + "--awsui-style-background-active-alpv7o": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-color-active-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-focus-ring-border-color-alpv7o": undefined, + "--awsui-style-focus-ring-border-radius-alpv7o": undefined, + "--awsui-style-focus-ring-border-width-alpv7o": undefined, "borderRadius": undefined, "fontSize": undefined, "paddingBlock": undefined, @@ -40,17 +40,17 @@ exports[`getSegmentedControlSegmentStyles handles all possible style configurati exports[`getSegmentedControlSegmentStyles handles all possible style configurations 2`] = ` { - "--awsui-style-background-active-6b9ypa": undefined, - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-color-active-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-focus-ring-border-color-6b9ypa": undefined, - "--awsui-style-focus-ring-border-radius-6b9ypa": undefined, - "--awsui-style-focus-ring-border-width-6b9ypa": undefined, + "--awsui-style-background-active-alpv7o": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-color-active-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-focus-ring-border-color-alpv7o": undefined, + "--awsui-style-focus-ring-border-radius-alpv7o": undefined, + "--awsui-style-focus-ring-border-width-alpv7o": undefined, "borderRadius": undefined, "fontSize": undefined, "paddingBlock": undefined, @@ -60,17 +60,17 @@ exports[`getSegmentedControlSegmentStyles handles all possible style configurati exports[`getSegmentedControlSegmentStyles handles all possible style configurations 3`] = ` { - "--awsui-style-background-active-6b9ypa": "#0073bb", - "--awsui-style-background-default-6b9ypa": "#ffffff", - "--awsui-style-background-disabled-6b9ypa": "#f0f0f0", - "--awsui-style-background-hover-6b9ypa": "#fafafa", - "--awsui-style-color-active-6b9ypa": "#ffffff", - "--awsui-style-color-default-6b9ypa": "#000000", - "--awsui-style-color-disabled-6b9ypa": "#999999", - "--awsui-style-color-hover-6b9ypa": "#000000", - "--awsui-style-focus-ring-border-color-6b9ypa": "#0073bb", - "--awsui-style-focus-ring-border-radius-6b9ypa": "8px", - "--awsui-style-focus-ring-border-width-6b9ypa": "2px", + "--awsui-style-background-active-alpv7o": "#0073bb", + "--awsui-style-background-default-alpv7o": "#ffffff", + "--awsui-style-background-disabled-alpv7o": "#f0f0f0", + "--awsui-style-background-hover-alpv7o": "#fafafa", + "--awsui-style-color-active-alpv7o": "#ffffff", + "--awsui-style-color-default-alpv7o": "#000000", + "--awsui-style-color-disabled-alpv7o": "#999999", + "--awsui-style-color-hover-alpv7o": "#000000", + "--awsui-style-focus-ring-border-color-alpv7o": "#0073bb", + "--awsui-style-focus-ring-border-radius-alpv7o": "8px", + "--awsui-style-focus-ring-border-width-alpv7o": "2px", "borderRadius": "6px", "fontSize": "14px", "paddingBlock": "8px", diff --git a/src/slider/__tests__/__snapshots__/styles.test.tsx.snap b/src/slider/__tests__/__snapshots__/styles.test.tsx.snap index 2ee8224105..41ac800738 100644 --- a/src/slider/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/slider/__tests__/__snapshots__/styles.test.tsx.snap @@ -2,36 +2,36 @@ exports[`getSliderStyles handles all possible style configurations 1`] = ` { - "--awsui-style-slider-handle-background-active-6b9ypa": undefined, - "--awsui-style-slider-handle-background-default-6b9ypa": undefined, - "--awsui-style-slider-handle-background-hover-6b9ypa": undefined, - "--awsui-style-slider-handle-border-radius-6b9ypa": undefined, - "--awsui-style-slider-range-background-active-6b9ypa": undefined, - "--awsui-style-slider-range-background-default-6b9ypa": undefined, - "--awsui-style-slider-track-background-color-6b9ypa": undefined, + "--awsui-style-slider-handle-background-active-alpv7o": undefined, + "--awsui-style-slider-handle-background-default-alpv7o": undefined, + "--awsui-style-slider-handle-background-hover-alpv7o": undefined, + "--awsui-style-slider-handle-border-radius-alpv7o": undefined, + "--awsui-style-slider-range-background-active-alpv7o": undefined, + "--awsui-style-slider-range-background-default-alpv7o": undefined, + "--awsui-style-slider-track-background-color-alpv7o": undefined, } `; exports[`getSliderStyles handles all possible style configurations 2`] = ` { - "--awsui-style-slider-handle-background-active-6b9ypa": undefined, - "--awsui-style-slider-handle-background-default-6b9ypa": undefined, - "--awsui-style-slider-handle-background-hover-6b9ypa": undefined, - "--awsui-style-slider-handle-border-radius-6b9ypa": undefined, - "--awsui-style-slider-range-background-active-6b9ypa": undefined, - "--awsui-style-slider-range-background-default-6b9ypa": undefined, - "--awsui-style-slider-track-background-color-6b9ypa": undefined, + "--awsui-style-slider-handle-background-active-alpv7o": undefined, + "--awsui-style-slider-handle-background-default-alpv7o": undefined, + "--awsui-style-slider-handle-background-hover-alpv7o": undefined, + "--awsui-style-slider-handle-border-radius-alpv7o": undefined, + "--awsui-style-slider-range-background-active-alpv7o": undefined, + "--awsui-style-slider-range-background-default-alpv7o": undefined, + "--awsui-style-slider-track-background-color-alpv7o": undefined, } `; exports[`getSliderStyles handles all possible style configurations 3`] = ` { - "--awsui-style-slider-handle-background-active-6b9ypa": "#1d4ed8", - "--awsui-style-slider-handle-background-default-6b9ypa": "#3b82f6", - "--awsui-style-slider-handle-background-hover-6b9ypa": "#2563eb", - "--awsui-style-slider-handle-border-radius-6b9ypa": "50%", - "--awsui-style-slider-range-background-active-6b9ypa": "#2563eb", - "--awsui-style-slider-range-background-default-6b9ypa": "#3b82f6", - "--awsui-style-slider-track-background-color-6b9ypa": "#dbeafe", + "--awsui-style-slider-handle-background-active-alpv7o": "#1d4ed8", + "--awsui-style-slider-handle-background-default-alpv7o": "#3b82f6", + "--awsui-style-slider-handle-background-hover-alpv7o": "#2563eb", + "--awsui-style-slider-handle-border-radius-alpv7o": "50%", + "--awsui-style-slider-range-background-active-alpv7o": "#2563eb", + "--awsui-style-slider-range-background-default-alpv7o": "#3b82f6", + "--awsui-style-slider-track-background-color-alpv7o": "#dbeafe", } `; diff --git a/src/tabs/__tests__/__snapshots__/styles.test.tsx.snap b/src/tabs/__tests__/__snapshots__/styles.test.tsx.snap index 369fed8a6e..d9bb4af343 100644 --- a/src/tabs/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/tabs/__tests__/__snapshots__/styles.test.tsx.snap @@ -2,21 +2,21 @@ exports[`getTabStyles transforms tab styles to CSS properties 1`] = ` { - "--awsui-style-background-active-6b9ypa": "#bfdbfe", - "--awsui-style-background-default-6b9ypa": "#dbeafe", - "--awsui-style-background-disabled-6b9ypa": "#f3f4f6", - "--awsui-style-background-hover-6b9ypa": "#eff6ff", - "--awsui-style-border-color-active-6b9ypa": "#1d4ed8", - "--awsui-style-border-color-default-6b9ypa": "#3b82f6", - "--awsui-style-border-color-disabled-6b9ypa": "#93c5fd", - "--awsui-style-border-color-hover-6b9ypa": "#2563eb", - "--awsui-style-color-active-6b9ypa": "#1e3a8a", - "--awsui-style-color-default-6b9ypa": "#1e40af", - "--awsui-style-color-disabled-6b9ypa": "#93c5fd", - "--awsui-style-color-hover-6b9ypa": "#1e40af", - "--awsui-style-focus-ring-border-color-6b9ypa": "#3b82f6", - "--awsui-style-focus-ring-border-radius-6b9ypa": "4px", - "--awsui-style-focus-ring-border-width-6b9ypa": "2px", + "--awsui-style-background-active-alpv7o": "#bfdbfe", + "--awsui-style-background-default-alpv7o": "#dbeafe", + "--awsui-style-background-disabled-alpv7o": "#f3f4f6", + "--awsui-style-background-hover-alpv7o": "#eff6ff", + "--awsui-style-border-color-active-alpv7o": "#1d4ed8", + "--awsui-style-border-color-default-alpv7o": "#3b82f6", + "--awsui-style-border-color-disabled-alpv7o": "#93c5fd", + "--awsui-style-border-color-hover-alpv7o": "#2563eb", + "--awsui-style-color-active-alpv7o": "#1e3a8a", + "--awsui-style-color-default-alpv7o": "#1e40af", + "--awsui-style-color-disabled-alpv7o": "#93c5fd", + "--awsui-style-color-hover-alpv7o": "#1e40af", + "--awsui-style-focus-ring-border-color-alpv7o": "#3b82f6", + "--awsui-style-focus-ring-border-radius-alpv7o": "4px", + "--awsui-style-focus-ring-border-width-alpv7o": "2px", "borderRadius": "4px", "borderWidth": "2px", "fontSize": "16px", @@ -28,10 +28,10 @@ exports[`getTabStyles transforms tab styles to CSS properties 1`] = ` exports[`getTabStyles transforms tab styles to CSS properties 2`] = ` { - "--awsui-style-tabs-active-indicator-border-radius-6b9ypa": "2px", - "--awsui-style-tabs-active-indicator-color-6b9ypa": "#1d4ed8", - "--awsui-style-tabs-active-indicator-width-6b9ypa": "3px", - "--awsui-style-tabs-separator-color-6b9ypa": "#cbd5e1", - "--awsui-style-tabs-separator-width-6b9ypa": "2px", + "--awsui-style-tabs-active-indicator-border-radius-alpv7o": "2px", + "--awsui-style-tabs-active-indicator-color-alpv7o": "#1d4ed8", + "--awsui-style-tabs-active-indicator-width-alpv7o": "3px", + "--awsui-style-tabs-separator-color-alpv7o": "#cbd5e1", + "--awsui-style-tabs-separator-width-alpv7o": "2px", } `; diff --git a/src/text-filter/__tests__/__snapshots__/styles.test.tsx.snap b/src/text-filter/__tests__/__snapshots__/styles.test.tsx.snap index daf5208fe6..4d682fb96b 100644 --- a/src/text-filter/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/text-filter/__tests__/__snapshots__/styles.test.tsx.snap @@ -2,30 +2,30 @@ exports[`getTextFilterStyles handles all possible style configurations 1`] = ` { - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-focus-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-background-readonly-6b9ypa": undefined, - "--awsui-style-border-color-default-6b9ypa": undefined, - "--awsui-style-border-color-disabled-6b9ypa": undefined, - "--awsui-style-border-color-focus-6b9ypa": undefined, - "--awsui-style-border-color-hover-6b9ypa": undefined, - "--awsui-style-border-color-readonly-6b9ypa": undefined, - "--awsui-style-box-shadow-default-6b9ypa": undefined, - "--awsui-style-box-shadow-disabled-6b9ypa": undefined, - "--awsui-style-box-shadow-focus-6b9ypa": undefined, - "--awsui-style-box-shadow-hover-6b9ypa": undefined, - "--awsui-style-box-shadow-readonly-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-focus-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-color-readonly-6b9ypa": undefined, - "--awsui-style-placeholder-color-6b9ypa": undefined, - "--awsui-style-placeholder-font-size-6b9ypa": undefined, - "--awsui-style-placeholder-font-style-6b9ypa": undefined, - "--awsui-style-placeholder-font-weight-6b9ypa": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-focus-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-background-readonly-alpv7o": undefined, + "--awsui-style-border-color-default-alpv7o": undefined, + "--awsui-style-border-color-disabled-alpv7o": undefined, + "--awsui-style-border-color-focus-alpv7o": undefined, + "--awsui-style-border-color-hover-alpv7o": undefined, + "--awsui-style-border-color-readonly-alpv7o": undefined, + "--awsui-style-box-shadow-default-alpv7o": undefined, + "--awsui-style-box-shadow-disabled-alpv7o": undefined, + "--awsui-style-box-shadow-focus-alpv7o": undefined, + "--awsui-style-box-shadow-hover-alpv7o": undefined, + "--awsui-style-box-shadow-readonly-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-focus-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-color-readonly-alpv7o": undefined, + "--awsui-style-placeholder-color-alpv7o": undefined, + "--awsui-style-placeholder-font-size-alpv7o": undefined, + "--awsui-style-placeholder-font-style-alpv7o": undefined, + "--awsui-style-placeholder-font-weight-alpv7o": undefined, "borderRadius": undefined, "borderWidth": undefined, "fontSize": undefined, @@ -37,30 +37,30 @@ exports[`getTextFilterStyles handles all possible style configurations 1`] = ` exports[`getTextFilterStyles handles all possible style configurations 2`] = ` { - "--awsui-style-background-default-6b9ypa": undefined, - "--awsui-style-background-disabled-6b9ypa": undefined, - "--awsui-style-background-focus-6b9ypa": undefined, - "--awsui-style-background-hover-6b9ypa": undefined, - "--awsui-style-background-readonly-6b9ypa": undefined, - "--awsui-style-border-color-default-6b9ypa": undefined, - "--awsui-style-border-color-disabled-6b9ypa": undefined, - "--awsui-style-border-color-focus-6b9ypa": undefined, - "--awsui-style-border-color-hover-6b9ypa": undefined, - "--awsui-style-border-color-readonly-6b9ypa": undefined, - "--awsui-style-box-shadow-default-6b9ypa": undefined, - "--awsui-style-box-shadow-disabled-6b9ypa": undefined, - "--awsui-style-box-shadow-focus-6b9ypa": undefined, - "--awsui-style-box-shadow-hover-6b9ypa": undefined, - "--awsui-style-box-shadow-readonly-6b9ypa": undefined, - "--awsui-style-color-default-6b9ypa": undefined, - "--awsui-style-color-disabled-6b9ypa": undefined, - "--awsui-style-color-focus-6b9ypa": undefined, - "--awsui-style-color-hover-6b9ypa": undefined, - "--awsui-style-color-readonly-6b9ypa": undefined, - "--awsui-style-placeholder-color-6b9ypa": undefined, - "--awsui-style-placeholder-font-size-6b9ypa": undefined, - "--awsui-style-placeholder-font-style-6b9ypa": undefined, - "--awsui-style-placeholder-font-weight-6b9ypa": undefined, + "--awsui-style-background-default-alpv7o": undefined, + "--awsui-style-background-disabled-alpv7o": undefined, + "--awsui-style-background-focus-alpv7o": undefined, + "--awsui-style-background-hover-alpv7o": undefined, + "--awsui-style-background-readonly-alpv7o": undefined, + "--awsui-style-border-color-default-alpv7o": undefined, + "--awsui-style-border-color-disabled-alpv7o": undefined, + "--awsui-style-border-color-focus-alpv7o": undefined, + "--awsui-style-border-color-hover-alpv7o": undefined, + "--awsui-style-border-color-readonly-alpv7o": undefined, + "--awsui-style-box-shadow-default-alpv7o": undefined, + "--awsui-style-box-shadow-disabled-alpv7o": undefined, + "--awsui-style-box-shadow-focus-alpv7o": undefined, + "--awsui-style-box-shadow-hover-alpv7o": undefined, + "--awsui-style-box-shadow-readonly-alpv7o": undefined, + "--awsui-style-color-default-alpv7o": undefined, + "--awsui-style-color-disabled-alpv7o": undefined, + "--awsui-style-color-focus-alpv7o": undefined, + "--awsui-style-color-hover-alpv7o": undefined, + "--awsui-style-color-readonly-alpv7o": undefined, + "--awsui-style-placeholder-color-alpv7o": undefined, + "--awsui-style-placeholder-font-size-alpv7o": undefined, + "--awsui-style-placeholder-font-style-alpv7o": undefined, + "--awsui-style-placeholder-font-weight-alpv7o": undefined, "borderRadius": undefined, "borderWidth": undefined, "fontSize": undefined, @@ -72,30 +72,30 @@ exports[`getTextFilterStyles handles all possible style configurations 2`] = ` exports[`getTextFilterStyles handles all possible style configurations 3`] = ` { - "--awsui-style-background-default-6b9ypa": "#ffffff", - "--awsui-style-background-disabled-6b9ypa": "#f0f0f0", - "--awsui-style-background-focus-6b9ypa": "#ffffff", - "--awsui-style-background-hover-6b9ypa": "#fafafa", - "--awsui-style-background-readonly-6b9ypa": "#ffffff", - "--awsui-style-border-color-default-6b9ypa": "#cccccc", - "--awsui-style-border-color-disabled-6b9ypa": "#e0e0e0", - "--awsui-style-border-color-focus-6b9ypa": "#0073bb", - "--awsui-style-border-color-hover-6b9ypa": "#999999", - "--awsui-style-border-color-readonly-6b9ypa": "#e0e0e0", - "--awsui-style-box-shadow-default-6b9ypa": "none", - "--awsui-style-box-shadow-disabled-6b9ypa": "none", - "--awsui-style-box-shadow-focus-6b9ypa": "0 0 0 2px #0073bb", - "--awsui-style-box-shadow-hover-6b9ypa": "0 1px 2px rgba(0,0,0,0.1)", - "--awsui-style-box-shadow-readonly-6b9ypa": "none", - "--awsui-style-color-default-6b9ypa": "#000000", - "--awsui-style-color-disabled-6b9ypa": "#999999", - "--awsui-style-color-focus-6b9ypa": "#000000", - "--awsui-style-color-hover-6b9ypa": "#000000", - "--awsui-style-color-readonly-6b9ypa": "#000000", - "--awsui-style-placeholder-color-6b9ypa": "#999999", - "--awsui-style-placeholder-font-size-6b9ypa": "14px", - "--awsui-style-placeholder-font-style-6b9ypa": "italic", - "--awsui-style-placeholder-font-weight-6b9ypa": "400", + "--awsui-style-background-default-alpv7o": "#ffffff", + "--awsui-style-background-disabled-alpv7o": "#f0f0f0", + "--awsui-style-background-focus-alpv7o": "#ffffff", + "--awsui-style-background-hover-alpv7o": "#fafafa", + "--awsui-style-background-readonly-alpv7o": "#ffffff", + "--awsui-style-border-color-default-alpv7o": "#cccccc", + "--awsui-style-border-color-disabled-alpv7o": "#e0e0e0", + "--awsui-style-border-color-focus-alpv7o": "#0073bb", + "--awsui-style-border-color-hover-alpv7o": "#999999", + "--awsui-style-border-color-readonly-alpv7o": "#e0e0e0", + "--awsui-style-box-shadow-default-alpv7o": "none", + "--awsui-style-box-shadow-disabled-alpv7o": "none", + "--awsui-style-box-shadow-focus-alpv7o": "0 0 0 2px #0073bb", + "--awsui-style-box-shadow-hover-alpv7o": "0 1px 2px rgba(0,0,0,0.1)", + "--awsui-style-box-shadow-readonly-alpv7o": "none", + "--awsui-style-color-default-alpv7o": "#000000", + "--awsui-style-color-disabled-alpv7o": "#999999", + "--awsui-style-color-focus-alpv7o": "#000000", + "--awsui-style-color-hover-alpv7o": "#000000", + "--awsui-style-color-readonly-alpv7o": "#000000", + "--awsui-style-placeholder-color-alpv7o": "#999999", + "--awsui-style-placeholder-font-size-alpv7o": "14px", + "--awsui-style-placeholder-font-style-alpv7o": "italic", + "--awsui-style-placeholder-font-weight-alpv7o": "400", "borderRadius": "4px", "borderWidth": "1px", "fontSize": "14px", diff --git a/src/token/__tests__/__snapshots__/styles.test.tsx.snap b/src/token/__tests__/__snapshots__/styles.test.tsx.snap index 6e76a3e401..c65c0f5df9 100644 --- a/src/token/__tests__/__snapshots__/styles.test.tsx.snap +++ b/src/token/__tests__/__snapshots__/styles.test.tsx.snap @@ -2,19 +2,19 @@ exports[`getTokenRootStyles handles all possible style configurations 1`] = ` { - "--awsui-style-focus-ring-border-color-6b9ypa": "#6366f1", - "--awsui-style-focus-ring-border-radius-6b9ypa": "12px", - "--awsui-style-focus-ring-border-width-6b9ypa": "2px", - "--awsui-token-style-background-default-6b9ypa": "#eef2ff", - "--awsui-token-style-background-disabled-6b9ypa": "#f1f5f9", - "--awsui-token-style-background-read-only-6b9ypa": "#f8fafc", - "--awsui-token-style-border-color-default-6b9ypa": "#c7d2fe", - "--awsui-token-style-border-color-disabled-6b9ypa": "#e2e8f0", - "--awsui-token-style-border-color-read-only-6b9ypa": "#cbd5e1", - "--awsui-token-style-dismiss-color-default-6b9ypa": "#6366f1", - "--awsui-token-style-dismiss-color-disabled-6b9ypa": "#cbd5e1", - "--awsui-token-style-dismiss-color-hover-6b9ypa": "#4338ca", - "--awsui-token-style-dismiss-color-read-only-6b9ypa": "#94a3b8", + "--awsui-style-focus-ring-border-color-alpv7o": "#6366f1", + "--awsui-style-focus-ring-border-radius-alpv7o": "12px", + "--awsui-style-focus-ring-border-width-alpv7o": "2px", + "--awsui-token-style-background-default-alpv7o": "#eef2ff", + "--awsui-token-style-background-disabled-alpv7o": "#f1f5f9", + "--awsui-token-style-background-read-only-alpv7o": "#f8fafc", + "--awsui-token-style-border-color-default-alpv7o": "#c7d2fe", + "--awsui-token-style-border-color-disabled-alpv7o": "#e2e8f0", + "--awsui-token-style-border-color-read-only-alpv7o": "#cbd5e1", + "--awsui-token-style-dismiss-color-default-alpv7o": "#6366f1", + "--awsui-token-style-dismiss-color-disabled-alpv7o": "#cbd5e1", + "--awsui-token-style-dismiss-color-hover-alpv7o": "#4338ca", + "--awsui-token-style-dismiss-color-read-only-alpv7o": "#94a3b8", "borderRadius": "24px", "borderWidth": "2px", "paddingBlock": "4px", diff --git a/style-dictionary/utils/token-names.ts b/style-dictionary/utils/token-names.ts index 5106958a6e..54c95afe42 100644 --- a/style-dictionary/utils/token-names.ts +++ b/style-dictionary/utils/token-names.ts @@ -608,6 +608,24 @@ export type ColorsTokenName = | 'colorBackgroundNotificationStackBar' | 'colorBackgroundNotificationStackBarActive' | 'colorBackgroundNotificationStackBarHover' + | 'colorBackgroundAccentRed' + | 'colorBackgroundAccentYellow' + | 'colorBackgroundAccentIndigo' + | 'colorBackgroundAccentGreen' + | 'colorBackgroundAccentOrange' + | 'colorBackgroundAccentPurple' + | 'colorBackgroundAccentMint' + | 'colorBackgroundAccentLime' + | 'colorBackgroundAccentGrey' + | 'colorBackgroundAccentTeal' + | 'colorBackgroundAccentCyan' + | 'colorBackgroundAccentBlue' + | 'colorBackgroundAccentViolet' + | 'colorBackgroundAccentFuchsia' + | 'colorBackgroundAccentMagenta' + | 'colorBackgroundAccentPink' + | 'colorBackgroundAccentRose' + | 'colorBackgroundAccentAmber' | 'colorBackgroundPopover' | 'colorBackgroundProgressBarValueDefault' | 'colorBackgroundProgressBarDefault' @@ -732,6 +750,24 @@ export type ColorsTokenName = | 'colorStrokeCodeEditorGutterActiveLineDefault' | 'colorStrokeCodeEditorGutterActiveLineHover' | 'colorTextAccent' + | 'colorTextAccentRed' + | 'colorTextAccentYellow' + | 'colorTextAccentIndigo' + | 'colorTextAccentGreen' + | 'colorTextAccentOrange' + | 'colorTextAccentPurple' + | 'colorTextAccentMint' + | 'colorTextAccentLime' + | 'colorTextAccentGrey' + | 'colorTextAccentTeal' + | 'colorTextAccentCyan' + | 'colorTextAccentBlue' + | 'colorTextAccentViolet' + | 'colorTextAccentFuchsia' + | 'colorTextAccentMagenta' + | 'colorTextAccentPink' + | 'colorTextAccentRose' + | 'colorTextAccentAmber' | 'colorTextBodyDefault' | 'colorTextBodySecondary' | 'colorTextBreadcrumbCurrent' diff --git a/style-dictionary/visual-refresh/color-palette.ts b/style-dictionary/visual-refresh/color-palette.ts index b9c75b7770..27c899c506 100644 --- a/style-dictionary/visual-refresh/color-palette.ts +++ b/style-dictionary/visual-refresh/color-palette.ts @@ -68,6 +68,91 @@ const tokens: StyleDictionary.ColorPaletteDictionary = { 'colorPurple700', 'colorAmber400', 'colorAmber500', + 'colorNeutralGrey50', + 'colorNeutralGrey400', + 'colorNeutralGrey600', + 'colorNeutralGrey950', + 'colorRed950', + 'colorOrange50', + 'colorOrange100', + 'colorOrange400', + 'colorOrange700', + 'colorOrange800', + 'colorOrange950', + 'colorYellow600', + 'colorYellow950', + 'colorLime50', + 'colorLime100', + 'colorLime400', + 'colorLime700', + 'colorLime800', + 'colorLime950', + 'colorGreen400', + 'colorGreen950', + 'colorMint50', + 'colorMint100', + 'colorMint400', + 'colorMint700', + 'colorMint800', + 'colorMint950', + 'colorIndigo50', + 'colorIndigo400', + 'colorIndigo600', + 'colorIndigo950', + 'colorPurple50', + 'colorPurple100', + 'colorPurple600', + 'colorPurple800', + 'colorPurple950', + // Additional visual accent hues (mirror base color primitives) + 'colorTeal50', + 'colorTeal100', + 'colorTeal400', + 'colorTeal700', + 'colorTeal800', + 'colorTeal950', + 'colorCyan50', + 'colorCyan100', + 'colorCyan400', + 'colorCyan700', + 'colorCyan800', + 'colorCyan950', + 'colorBlue950', + 'colorViolet50', + 'colorViolet100', + 'colorViolet400', + 'colorViolet700', + 'colorViolet800', + 'colorViolet950', + 'colorFuchsia50', + 'colorFuchsia100', + 'colorFuchsia400', + 'colorFuchsia700', + 'colorFuchsia800', + 'colorFuchsia950', + 'colorMagenta50', + 'colorMagenta100', + 'colorMagenta400', + 'colorMagenta700', + 'colorMagenta800', + 'colorMagenta950', + 'colorPink50', + 'colorPink100', + 'colorPink400', + 'colorPink700', + 'colorPink800', + 'colorPink950', + 'colorRose50', + 'colorRose100', + 'colorRose400', + 'colorRose700', + 'colorRose800', + 'colorRose950', + 'colorAmber50', + 'colorAmber100', + 'colorAmber700', + 'colorAmber800', + 'colorAmber950', 'colorAwsSquidInk', 'colorTransparent', 'colorBlack', @@ -89,6 +174,7 @@ const referenceTokens: ReferenceTokens = { 700: brand.colorBlue700, 800: brand.colorBlue800, 900: brand.colorBlue900, + 950: brand.colorBlue950, 1000: brand.colorBlue1000, }, neutral: { @@ -115,29 +201,44 @@ const referenceTokens: ReferenceTokens = { }, error: { 50: brand.colorRed50, + 100: brand.colorRed100, 400: brand.colorRed400, 600: brand.colorRed600, + 800: brand.colorRed800, 900: brand.colorRed900, + 950: brand.colorRed950, 1000: brand.colorRed1000, }, success: { 50: brand.colorGreen50, + 100: brand.colorGreen100, + 400: brand.colorGreen400, 500: brand.colorGreen500, 600: brand.colorGreen600, + 800: brand.colorGreen800, + 950: brand.colorGreen950, 1000: brand.colorGreen1000, }, warning: { 50: brand.colorYellow50, + 100: brand.colorYellow100, 400: brand.colorYellow400, 500: brand.colorYellow500, + 600: brand.colorYellow600, + 800: brand.colorYellow800, 900: brand.colorYellow900, + 950: brand.colorYellow950, 1000: brand.colorYellow1000, }, info: { 50: brand.colorBlue50, + 100: brand.colorBlue100, 300: brand.colorBlue300, 400: brand.colorBlue400, 600: brand.colorBlue600, + 700: brand.colorBlue700, + 800: brand.colorBlue800, + 950: brand.colorBlue950, 1000: brand.colorBlue1000, }, }, diff --git a/style-dictionary/visual-refresh/colors.ts b/style-dictionary/visual-refresh/colors.ts index 927657bff9..3ac0267871 100644 --- a/style-dictionary/visual-refresh/colors.ts +++ b/style-dictionary/visual-refresh/colors.ts @@ -370,6 +370,44 @@ const tokens: StyleDictionary.ColorsDictionary = { colorTextBadgeBlue: '{colorTextNotificationDefault}', colorTextBadgeRed: '{colorTextNotificationDefault}', colorBackgroundCodeView: { light: '#f8f8f8', dark: '#282c34' }, + + // ── Visual accent ─────────────────────────────────── + colorBackgroundAccentRed: { light: '{colorError100}', dark: 'rgba(255, 61, 61, 0.2)' }, + colorBackgroundAccentYellow: { light: '{colorWarning100}', dark: 'rgba(251, 211, 50, 0.2)' }, + colorBackgroundAccentIndigo: { light: '{colorInfo100}', dark: 'rgba(0, 153, 255, 0.2)' }, + colorBackgroundAccentGreen: { light: '{colorSuccess100}', dark: 'rgba(43, 181, 52, 0.2)' }, + colorBackgroundAccentOrange: { light: '{colorOrange100}', dark: 'rgba(255, 75, 20, 0.2)' }, + colorBackgroundAccentPurple: { light: '{colorPurple100}', dark: 'rgba(173, 92, 255, 0.2)' }, + colorBackgroundAccentMint: { light: '{colorMint100}', dark: 'rgba(0, 189, 107, 0.2)' }, + colorBackgroundAccentLime: { light: '{colorLime100}', dark: 'rgba(49, 184, 0, 0.2)' }, + colorBackgroundAccentGrey: { light: '{colorNeutral250}', dark: '{colorNeutral700}' }, + colorBackgroundAccentTeal: { light: '{colorTeal100}', dark: 'rgba(0, 173, 162, 0.2)' }, + colorBackgroundAccentCyan: { light: '{colorCyan100}', dark: 'rgba(0, 164, 189, 0.2)' }, + colorBackgroundAccentBlue: { light: '{colorInfo100}', dark: 'rgba(0, 153, 255, 0.2)' }, + colorBackgroundAccentViolet: { light: '{colorViolet100}', dark: 'rgba(133, 117, 255, 0.2)' }, + colorBackgroundAccentFuchsia: { light: '{colorFuchsia100}', dark: 'rgba(228, 51, 255, 0.2)' }, + colorBackgroundAccentMagenta: { light: '{colorMagenta100}', dark: 'rgba(255, 26, 224, 0.2)' }, + colorBackgroundAccentPink: { light: '{colorPink100}', dark: 'rgba(255, 51, 153, 0.2)' }, + colorBackgroundAccentRose: { light: '{colorRose100}', dark: 'rgba(255, 56, 106, 0.2)' }, + colorBackgroundAccentAmber: { light: '{colorAmber100}', dark: 'rgba(250, 111, 0, 0.2)' }, + colorTextAccentRed: { light: '{colorError800}', dark: '{colorError400}' }, + colorTextAccentYellow: { light: '{colorWarning900}', dark: '{colorWarning400}' }, + colorTextAccentIndigo: { light: '{colorInfo800}', dark: '{colorInfo400}' }, + colorTextAccentGreen: { light: '{colorSuccess800}', dark: '{colorSuccess400}' }, + colorTextAccentOrange: { light: '{colorOrange800}', dark: '{colorOrange400}' }, + colorTextAccentPurple: { light: '{colorPurple800}', dark: '{colorPurple400}' }, + colorTextAccentMint: { light: '{colorMint800}', dark: '{colorMint400}' }, + colorTextAccentLime: { light: '{colorLime800}', dark: '{colorLime400}' }, + colorTextAccentGrey: { light: '{colorNeutral800}', dark: '{colorNeutral300}' }, + colorTextAccentTeal: { light: '{colorTeal800}', dark: '{colorTeal400}' }, + colorTextAccentCyan: { light: '{colorCyan800}', dark: '{colorCyan400}' }, + colorTextAccentBlue: { light: '{colorInfo800}', dark: '{colorInfo400}' }, + colorTextAccentViolet: { light: '{colorViolet800}', dark: '{colorViolet400}' }, + colorTextAccentFuchsia: { light: '{colorFuchsia800}', dark: '{colorFuchsia400}' }, + colorTextAccentMagenta: { light: '{colorMagenta800}', dark: '{colorMagenta400}' }, + colorTextAccentPink: { light: '{colorPink800}', dark: '{colorPink400}' }, + colorTextAccentRose: { light: '{colorRose800}', dark: '{colorRose400}' }, + colorTextAccentAmber: { light: '{colorAmber800}', dark: '{colorAmber400}' }, }; const expandedTokens: StyleDictionary.ExpandedColorScopeDictionary = expandColorDictionary(tokens); diff --git a/style-dictionary/visual-refresh/metadata/colors.ts b/style-dictionary/visual-refresh/metadata/colors.ts index 35e79814da..15e5e8f8bc 100644 --- a/style-dictionary/visual-refresh/metadata/colors.ts +++ b/style-dictionary/visual-refresh/metadata/colors.ts @@ -276,6 +276,186 @@ const metadata: StyleDictionary.MetadataIndex = { public: true, themeable: true, }, + colorBackgroundAccentRed: { + description: 'The background color of the red accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentYellow: { + description: 'The background color of the yellow accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentIndigo: { + description: 'The background color of the indigo accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentGreen: { + description: 'The background color of the green accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentOrange: { + description: 'The background color of the orange accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentPurple: { + description: 'The background color of the purple accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentMint: { + description: 'The background color of the mint accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentLime: { + description: 'The background color of the lime accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentGrey: { + description: 'The background color of the grey accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentTeal: { + description: 'The background color of the teal accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentCyan: { + description: 'The background color of the cyan accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentBlue: { + description: 'The background color of the blue accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentViolet: { + description: 'The background color of the violet accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentFuchsia: { + description: 'The background color of the fuchsia accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentMagenta: { + description: 'The background color of the magenta accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentPink: { + description: 'The background color of the pink accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentRose: { + description: 'The background color of the rose accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorBackgroundAccentAmber: { + description: 'The background color of the amber accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentRed: { + description: 'The content color of the red accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentYellow: { + description: 'The content color of the yellow accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentIndigo: { + description: 'The content color of the indigo accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentGreen: { + description: 'The content color of the green accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentOrange: { + description: 'The content color of the orange accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentPurple: { + description: 'The content color of the purple accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentMint: { + description: 'The content color of the mint accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentLime: { + description: 'The content color of the lime accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentGrey: { + description: 'The content color of the grey accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentTeal: { + description: 'The content color of the teal accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentCyan: { + description: 'The content color of the cyan accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentBlue: { + description: 'The content color of the blue accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentViolet: { + description: 'The content color of the violet accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentFuchsia: { + description: 'The content color of the fuchsia accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentMagenta: { + description: 'The content color of the magenta accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentPink: { + description: 'The content color of the pink accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentRose: { + description: 'The content color of the rose accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, + colorTextAccentAmber: { + description: 'The content color of the amber accent in the Box `awsui-accent` variant.', + public: true, + themeable: true, + }, colorBackgroundPopover: { description: 'Background color for the popover container.', public: true,