Web Components
We've compiled a list of every breaking change below. Since the migration process will vary on an application-by-application basis, we've broken down changes per component based on the likelihood of impact.
-
High Impact If you're using this component, this change is required. -
Medium Impact Evaluate your application's usage. -
Low Impact You will most likely not be impacted by this change.
Steps:
-
Update your package.json
-
For React:
"@astrouxds/react": "^7.0.0"
-
For Angular:
"@astrouxds/angular": "^7.0.0"
-
For Web Components:
"@astrouxds/astro-web-components": "^7.0.0"
-
For React:
- Audit your code to find which Astro components you're currently using.
- Review each component below and make the necessary changes.
Remove Custom Elements Bundle
Our dist/custom-elements
build has been removed in favor
of a more lightweight and better tree-shakeable dist/components
build. Search your project for any reference to dist/custom-elements
and replace it with
dist/components
.
Drop Support for v11
Our Angular wrapper has dropped support for Angular versions <= 11. This aligns with Angular's own support policy.
Resolution: Upgrade your application to Angular v12+.
Roboto Mono Removed
Roboto Mono has been removed from our font stack in favor of Roboto's tabular figures when displaying numbers within components such as Clock.
Resolution: Remove any import of Roboto Mono from your application.
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400&family=Roboto:wght@300;400;500;700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--button-active-background-color
--button-active-border-color
--button-background-color
--button-border-color
--button-borderless-hover-color
--button-borderless-text-color
-
--button-secondary-background-color
--button-secondary-border-color
-
--button-secondary-hover-background-color
-
--button-secondary-hover-border-color
-
--button-secondary-hover-text-color
--button-secondary-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--clock-background-color
--clock-border-color
--clock-label-color
--clock-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the color
by targeting
the rux-clock
element instead of using the available
CSS Shadow Parts. These styles have now been properly moved to the
shadow dom and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-clock
directly and replace with the appropriate
CSS Shadow Part.
rux-clock { color: red; }
rux-clock::part(container) { color: red; }
Host Display Default Changed
Clock's default display
property has been changed
from
flex
to inline-block
.
Resolution:
If you were relying on the element to be display: flex
, you can change the display
yourself on the root.
rux-clock { display: flex; }
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--checkbox-label-color
--checkbox-background-color
--checkbox-border-color
--checkbox-checked-color
--checkbox-hover-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--checkboxgroup-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-checkbox-group
element
instead of using the available CSS Shadow Parts:
color
, font-family
, font-size
, font-weight
, line-height
, letter-spacing
.
These styles have now been properly moved to the shadow dom and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-checkbox-group
directly and replace with the appropriate
CSS Shadow Part.
rux-checkbox-group {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
rux-checkbox-group::part(container) {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--color-classification-text-light
--color-classification-text-dark
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated Part
The deprecated footer-banner
CSS Shadow Part has been
removed
Resolution:
Search your application's CSS for anything targeting ::part(footer-banner)
and replace with ::part(footer)
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-global-status-bar
element
instead of using the available CSS Shadow Parts: font-family
, line-height
, letter-spacing
. These
styles have now been properly moved to the shadow dom and
require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-global-status-bar
directly and replace with the
appropriate CSS Shadow Part.
rux-global-status-bar {
font-family: Arial;
line-height: 1;
letter-spacing: 0.3em;
}
rux-global-status-bar::part(container) {
font-family: Arial;
line-height: 1;
letter-spacing: 0.3em;
}
Text Case
The app-domain
and app-name
properties
are no longer uppercase by default.
Resolution:
Add your own style via the container
CSS Shadow Part
rux-global-status-bar::part(container) {
text-transform: uppercase;
}
Remove Deprecated CSS Custom Properties
-
The deprecated
--icon-default-color
CSS Custom Property has been removed.
Resolution: View the CSS Custom Properties Migration document for more details.
Label Removal
The label
attribute has been removed and the title
for our icons no longer defaults to the icon name. This was causing
confusion because the browser would display the title as a tooltip
when an icon was used inside a button. Because accessibility for
svgs can be complicated and heavily dependent on context, we've
decided to remove this feature for now.
Resolution:
If you need more control over the title
and aria attributes
of our icons, it is recommended that you instead import and use our svg assets directly.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--input-background-color
--input-text-color
--input-focus-border-color
--input-selection-background-color
--input-invalid-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--log-header-background-color
--log-filter-background-color
--log-filter-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Component Renamed
Modal has been renamed to Dialog. Additionally, there have been a few other breaking changes to the API.
Resolution:
Search your application for any instances of <rux-modal>
and replace them with <rux-dialog>
.
Prop Rename
The dialog-title
(modal-title
)
property has been renamed to header
.
The dialog-message
(modal-message
)
property has been renamed to message
.
Click To Close
Dialog will no longer close when clicking outside by default to align with Astro UXDS compliance requirements 4.3.3: "Dialog Boxes shall be closed only with confirm or cancel Buttons."
Resolution:
If you need to restore this functionality, you may use the new click-to-close
property.
<rux-dialog click-to-close></rux-dialog>
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--modal-title-color
--modal-background-color
--modal-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the color
CSS properties
by targeting the
rux-monitoring-progress-icon
element instead of using
the available CSS Shadow Parts. These styles have now been properly
moved to the shadow dom and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-monitoring-progress-icon
directly and replace with
the appropriate CSS Shadow Part.
rux-monitoring-progress-icon {
color: red;
}
rux-monitoring-progress-icon::part(container) {
color: red;
}
Remove Parent Styling
Notifications no longer require a parent element with
position: relative
and
overflow: hidden
applied.
Resolution:
Check your implementation of rux-notification
and remove
the position: relative
and overflow: hidden
styles.
Multiple Notification Stacking
Multiple sibling notifications will no longer stack by default. Previously, you could have multiple notifications and they would stack on top of each other. Because only one notification should be visible at a time, you should only need one element in the DOM.
Resolution: You'll need to add some of your own custom logic to manage which notification should be presented. Consult the documentation for more details
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--notification-icon-color
--notification-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-notification
element
instead of using the available CSS Shadow Parts: color
, font-family
, font-size
, font-weight
, line-height
, letter-spacing
, padding
. These styles have now been properly moved to the shadow dom
and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-notification
directly and replace with the appropriate
CSS Shadow Part.
rux-notification {
color: red;
padding: 1rem;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
rux-notification::part(container) {
color: red;
padding: 1rem;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
Component Renamed
Pop Up Menu has been removed and has been split into separate Pop Up and Menu components.
Rewrite
Pop Up Menu has been rewritten entirely and now uses Floating UI under the hood to provide greater flexibility for positioning.
<rux-icon icon="apps" aria-controls="popup-menu-1"></rux-icon>
<rux-pop-up-menu id="popup-menu-1">
<rux-menu-item>
Item 1
</rux-menu-item>
<rux-menu-item-divider></rux-menu-item-divider>
<rux-menu-item value="2">
Item 2
</rux-menu-item>
<rux-menu-item disabled>
Item 3 is disabled
</rux-menu-item>
<rux-menu-item value="Item 4">
Item 4 has a string value
</rux-menu-item>
<rux-menu-item href="https://www.astrouxds.com">
Item 5 is an anchor/action item...
</rux-menu-item>
</rux-pop-up-menu>
<rux-pop-up open placement="right">
<rux-icon icon="apps" slot="trigger"></rux-icon>
<rux-menu>
<rux-menu-item value="1">Menu Item 1</rux-menu-item>
<rux-menu-item value="2">Menu Item 2</rux-menu-item>
<rux-menu-item value="3">Menu Item 3</rux-menu-item>
</rux-menu>
</rux-pop-up>
Event Changes
-
The following events have been removed:
ruxmenuwillclose
ruxmenuwillopen
-
The
ruxmenudidclose
event has been renamed toruxpopupclosed
. -
The
ruxmenudidopen
event has been renamed toruxpopupopened
.
Method Changes
-
The
close
method has been removed. Usehide
instead. -
The
isOpen
method has been removed. Use theopen
property to check if the menu is open. -
The
toggle
method has been removed. Use theshow
orhide
methods where appropriate.
Slot Removal
The menu-end
slot has been removed. Use a regular rux-menu-item
and style it accordingly.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--popup-menu-background-color
--popup-menu-border-color
-
--popup-menu-caret-background-color
--popup-menu-caret-left
--menu-item-divider-border-color
--popup-menu-caret-size
--popup-menu-transition-speed
Resolution: View the CSS Custom Properties Migration document for more details.
Indeterminate Progress Component
The indeterminate spinner functionality of rux-progress
has been removed and is now it's own separate
<rux-indeterminate-progress>
component.
Resolution:
Search your application for any usage of <rux-progress>
in it's indeterminate state.
rux-progress
is considered indeterminate if no value
property is present. Replace <rux-progress>
with <rux-indeterminate-progress>
.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--progress-padding
--progress-radius
--progress-height
--progress-width
-
--progress-determinate-bar-background-color
-
--progress-determinate-track-background-color
-
--progress-determinate-track-border-color
--progress-label-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-progress
element instead
of using the available CSS Shadow Parts: color
, font-family
, font-size
, font-weight
, line-height
, letter-spacing
. These styles have now been
properly moved to the shadow dom and require the use of CSS
Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-progress
directly and replace with the appropriate
CSS Shadow Part.
rux-progress {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
rux-progress::part(output),
rux-progress::part(progress) {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--pushbutton-background-color
--pushbutton-border-color
--pushbutton-text-color
-
--pushbutton-selected-background-color
--pushbutton-selected-border-color
--pushbutton-selected-text-color
-
--pushbutton-selected-hover-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Part Rename
The label
CSS Shadow Part has been renamed to container
to be more consistent with other components.
Resolution:
Search your application for any usage of rux-push-button::part(label)
and replace it with rux-push-button::part(container)
.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--radio-hover-border-color
--radio-border-color
--radio-label-color
--radio-background-color
--radio-selected-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The deprecated
--radiogroup-border-color
CSS Custom Property has been removed.
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
-
--segmented-button-background-color
--segmented-button-text-color
--segmented-button-border-color
-
--segmented-button-hover-background-color
-
--segmented-button-hover-text-color
-
--segmented-button-hover-border-color
-
--segmented-button-selected-background-color
-
Resolution: View the CSS Custom Properties Migration document for more details.
Medium Default Size
The default size
property is now medium
instead of small
.
Resolution:
Search your app for rux-segmented-button
and manually
add set the size
property to small
where
desired.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--select-menu-border-radius
--select-menu-border-hover-color
--select-menu-border-focus-color
--select-menu-invalid-border-color
--select-menu-text-color
--select-menu-label-color
--select-menu-border-color
-
--select-menu-option-text-hover-color
-
--select-menu-option-selected-background-color
-
--select-menu-option-selected-text-color
--select-menu-inactive-caret
--select-menu-active-caret
--select-menu-background-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--slider-thumb-background-color
--slider-thumb-border-color
-
--slider-hover-thumb-background-color
--slider-hover-thumb-border-color
--slider-track-background-color
-
--slider-selected-thumb-border-color
--slider-thumb-size
--slider-thumb-border-size
--slider-tick-padding-top
-
--slider-selected-track-background-color
--slider-value-percent
--slider-top
--slider-track-height
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--switch-background-color
--switch-hover-on-color
--switch-hover-off-color
--switch-on-color
--switch-off-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changs
Previously it was possible to change the following CSS
properties by targeting the rux-switch
element instead
of using the available CSS Shadow Parts:
color
, font-family
, font-size
, font-weight
, line-height
, letter-spacing
. These styles have now been properly moved to the shadow dom
and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-switch
directly and replace with the appropriate
CSS Shadow Part.
rux-switch {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
rux-switch::part(label),
rux-switch::part(switch) {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--tab-text-color
--tab-border-color
--tab-hover-text-color
--tab-selected-text-color
Resolution: View the CSS Custom Properties Migration document for more details.
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-tab
element instead
of using the available CSS Shadow Parts:
border-color
, border-bottom
, min-width
, padding
,font-family
, font-size
, font-weight
, letter-spacing
. These
styles have now been properly moved to the shadow dom and
require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-tab
directly and replace with the appropriate CSS
Shadow Part.
rux-tab {
color: red;
min-width: 3rem;
padding: 1rem;
border-bottom: 2px solid red;
border-color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
letter-spacing: 0.3em;
}
rux-tab::part(container) {
color: red;
min-width: 3rem;
padding: 1rem;
border-bottom: 2px solid red;
border-color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
letter-spacing: 0.3em;
}
Borders Removed
The right and left borders have been removed by default to make them easier to use within Cards and Containers.
Resolution: You can manually reapply the left and right borders by targeting the host element itself:
rux-table {
border: 1px solid var(--color-background-base-default);
}
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--textarea-border-color
--textarea-text-color
--textarea-focus-border-color
-
--textarea-selection-background-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--table-border-color
--table-row-hover-text-color
--table-row-hover-background-color
--table-row-border-color
--table-row-text-color
--table-row-background-color
--table-header-border-color
--table-header-background-color
--table-header-text-color
--table-header-box-shadow
-
--table-row-selected-background-color
--table-row-selected-border-color
Resolution: View the CSS Custom Properties Migration document for more details.
Remove Deprecated CSS Custom Properties
-
The following deprecated CSS Custom Properties have been
removed:
--tree-text-color
--tree-border-color
--tree-accent-color
--tree-hover-background-color
--tree-hover-text-color
--tree-selected-border-color
--tree-selected-accent-color
--tree-expanded-border-color
--tree-background-color
Resolution: View the CSS Custom Properties Migration document for more details.
Icons Prefix Slot
The default display for content inside Tree Nodes has changed and may break your application if you are using the Tree Node with icons or status symbols.
Resolution:
Add slot="prefix"
to any icons or status symbols.
<rux-tree-node>
<rux-status status="critical"></rux-status>
Tree Node 1.1
</rux-tree-node>
<rux-tree-node>
<rux-status slot="prefix" status="critical"></rux-status>
Tree Node 1.1
</rux-tree-node>
Host Style Changes
Previously it was possible to change the following CSS
properties by targeting the rux-tree-node
element instead
of using the available CSS Shadow Parts:
color
, font-family
, font-size
, font-weight
, line-height
, letter-spacing
. These styles have now been properly moved to the shadow dom
and require the use of CSS Shadow Parts.
Resolution:
Search your application's CSS for anything that may be targeting
rux-tree-node
directly and replace with the appropriate
CSS Shadow Part.
rux-tree-node {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
rux-tree-node::part(node) {
color: red;
font-family: Arial;
font-size: 2rem;
font-weight: 800;
line-height: 1;
letter-spacing: 0.3em;
}
Design
Astro 7 brought a significant change to our color palettes. While most values have been renamed, some have been removed entirely. Review the following migration tables:
Primary Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
|
--colorPrimaryLighten4 |
--color-palette-darkblue-100 |
|
--colorPrimaryLighten3 |
--color-palette-darkblue-200 |
||
--colorPrimaryLighten2 |
--color-palette-darkblue-300 |
||
--colorPrimaryLighten1 |
--color-palette-darkblue-400 |
||
--colorPrimary |
--color-palette-darkblue-500 |
||
--colorPrimaryDarken1 |
--color-palette-darkblue-600 |
||
--colorPrimaryDarken2 |
--color-palette-darkblue-700 |
||
--colorPrimaryDarken3 |
--color-palette-darkblue-800 |
||
--colorPrimaryDarken4 |
--color-palette-darkblue-900 |
||
n/a | n/a | --color-palette-darkblue-950 |
Secondary Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorSecondaryLighten4 |
--color-palette-brightblue-100 |
||
--colorSecondaryLighten3 |
--color-palette-brightblue-200 |
||
--colorsSecondaryLighten2 |
--color-palette-brightblue-300 |
||
--colorSecondaryLighten1 |
--color-palette-brightblue-400 |
||
--colorSecondary |
--color-palette-brightblue-500 |
||
--colorSecondaryDarken1 |
--color-palette-brightblue-600 |
||
--colorSecondaryDarken2 |
--color-palette-brightblue-700 |
||
--colorSecondaryDarken3 |
--color-palette-brightblue-800 |
||
--colorSecondaryDarken4 |
--color-palette-brightblue-850 |
||
n/a | n/a | --color-palette-brightblue-900 |
Tertiary Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorTertiaryLighten4 |
--color-palette-grey-100 |
||
--colorTertiaryLighten3 |
--color-palette-grey-200 |
||
--colorsTertiaryLighten2 |
--color-palette-grey-250 |
||
--colorTertiaryLighten1 |
--color-palette-grey-300 |
||
--colorSecondary |
--color-palette-grey-400 |
||
--colorTertiaryDarken1 |
--color-palette-grey-500 |
||
--colorTertiaryDarken2 |
--color-palette-grey-600 |
||
--colorTertiaryDarken3 |
--color-palette-grey-700 |
||
--colorTertiaryDarken4 |
--color-palette-grey-800 |
||
n/a | n/a | --color-palette-grey-900 |
Quaternary Palette
The Quaternary Palette has been removed entirely.
Tag 1 Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorTag1Lighten4 |
--color-palette-teal-100 |
||
--colorTag1Lighten3 |
--color-palette-teal-200 |
||
--colorTag1Lighten2 |
--color-palette-teal-300 |
||
--colorTag1Lighten1 |
--color-palette-teal-400 |
||
--colorTag1 |
--color-palette-teal-500 |
||
--colorTag1Darken1 |
--color-palette-teal-600 |
||
--colorTag1Darken2 |
--color-palette-teal-700 |
||
--colorTag1Darken3 |
--color-palette-teal-800 |
||
--colorTag1Darken4 |
--color-palette-teal-900 |
Tag 2 Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorTag2Lighten4 |
--color-palette-purple-100 |
||
--colorTag2Lighten3 |
--color-palette-purple-200 |
||
--colorTag2Lighten2 |
--color-palette-purple-300 |
||
--colorTag2Lighten1 |
--color-palette-purple-400 |
||
--colorTag2 |
--color-palette-purple-500 |
||
--colorTag2Darken1 |
--color-palette-purple-600 |
||
--colorTag2Darken2 |
--color-palette-purple-700 |
||
--colorTag2Darken3 |
--color-palette-purple-800 |
||
--colorTag2Darken4 |
--color-palette-purple-900 |
Tag 3 Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorTag3Lighten4 |
--color-palette-pink-100 |
||
--colorTag3Lighten3 |
--color-palette-pink-200 |
||
--colorTag3Lighten2 |
--color-palette-pink-300 |
||
--colorTag3Lighten1 |
--color-palette-pink-400 |
||
--colorTag3 |
--color-palette-pink-500 |
||
--colorTag3Darken1 |
--color-palette-pink-600 |
||
--colorTag3Darken2 |
--color-palette-pink-700 |
||
--colorTag3Darken3 |
--color-palette-pink-800 |
||
--colorTag3Darken4 |
--color-palette-pink-900 |
Tag 4 Palette
6.0 Hex Code | 6.0 CSS Name | 7.0 Hex Code | 7.0 Design Token |
---|---|---|---|
--colorTag4Lighten4 |
--color-palette-hotorange-100 |
||
--colorTag4Lighten3 |
--color-palette-hotorange-200 |
||
--colorTag4Lighten2 |
--color-palette-hotorange-300 |
||
--colorTag4Lighten1 |
--color-palette-hotorange-400 |
||
--colorTag4 |
--color-palette-hotorange-500 |
||
--colorTag4Darken1 |
--color-palette-hotorange-600 |
||
--colorTag4Darken2 |
--color-palette-hotorange-700 |
||
--colorTag4Darken3 |
--color-palette-hotorange-800 |
||
--colorTag4Darken4 |
--color-palette-hotorange-900 |