SCION Toolkit | Projects Overview | Changelog | Contributing | Sponsoring |
---|
SCION Toolkit > @scion/components > SCION Design Tokens
SCION provides a set of design tokens to enable consistent design of components of the SCION libraries. Design tokens are provided by the @scion/components
SCSS module.
An application can define a custom theme to change the default look of the SCION components. Multiple themes are supported. A theme is a collection of design tokens, defining specific design aspects such as colors, spacings, etc. A design token can have a different value per theme.
An application typically loads the SCSS module @scion/components
in the styles.scss
file.
@use '@scion/components';
SCION provides a light and a dark theme, scion-light
and scion-dark
. Custom themes can be passed to the module under the $themes
map entry, replacing the built-in themes. A custom theme can define only a subset of the available design tokens, with unspecified tokens inherited from the built-in theme of the same color scheme. The color scheme of a theme is determined by the color-scheme
token.
@use '@scion/components' with (
$themes: (
dark: (
color-scheme: dark,
--sci-color-gray-50: #1D1D1D,
--sci-color-gray-75: #262626,
--sci-color-gray-100: #323232,
--sci-color-gray-200: #3F3F3F,
--sci-color-gray-300: #545454,
--sci-color-gray-400: #707070,
--sci-color-gray-500: #909090,
--sci-color-gray-600: #B2B2B2,
--sci-color-gray-700: #D1D1D1,
--sci-color-gray-800: #EBEBEB,
--sci-color-gray-900: #FFFFFF,
--sci-color-accent: blueviolet,
),
light: (
color-scheme: light,
--sci-color-gray-50: #FFFFFF,
--sci-color-gray-75: #FDFDFD,
--sci-color-gray-100: #F8F8F8,
--sci-color-gray-200: #E6E6E6,
--sci-color-gray-300: #D5D5D5,
--sci-color-gray-400: #B1B1B1,
--sci-color-gray-500: #909090,
--sci-color-gray-600: #6D6D6D,
--sci-color-gray-700: #464646,
--sci-color-gray-800: #222222,
--sci-color-gray-900: #000000,
--sci-color-accent: blueviolet,
),
)
);
A theme is selected based on the user's OS color scheme preference. To select a theme manually, add the sci-theme
attribute to the root HTML element and set its value to the name of the theme.
<html sci-theme="scion-dark">
SCION supports the following design tokens:
Named Color Tokens
Predefined set of named colors as palette of tints and shades.
Named Color Tokens (light theme), Named Color Tokens (dark theme)
Semantic Tokens
Tokens for a particular usage.