Tokens

Design tokens are a tech-agnostic way to store variables. We use tokens instead of hard coded values to ensure a better UI consistency across different platforms.

border-radius

Sample Description Token
The quick brown fox jumps over the lazy dog

calc(4 / var(--w-base-rem) * 1rem)

(--w-border-radius-2)

Use for elements that are smaller than 24px in size i.e. checkbox.

--w-border-radius-s
The quick brown fox jumps over the lazy dog

calc(8 / var(--w-base-rem) * 1rem)

(--w-border-radius-3)

Default border-radius. Use it for small individual elements such as buttons, form elements.

--w-border-radius-m
The quick brown fox jumps over the lazy dog

calc(16 / var(--w-base-rem) * 1rem)

(--w-border-radius-4)

Large border-radius. Use it for containers that hold other elements, i.e. modals, cards, popovers.

--w-border-radius-l
The quick brown fox jumps over the lazy dog

calc(24 / var(--w-base-rem) * 1rem)

(--w-border-radius-5)
--w-border-radius-xl
The quick brown fox jumps over the lazy dog

999px

Border-radius for pill-shaped elements such as tags.

--w-border-radius-pill
The quick brown fox jumps over the lazy dog

50%

Border-radius for circles.

--w-border-radius-circle
Back to top

box-shadow

Sample Description Token
The quick brown fox jumps over the lazy dog

inset 0px -1px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1.5px -1px rgba(0, 0, 0, 0.04), 0px 1px 3px 0px rgba(0, 0, 0, 0.02);

(--w-box-shadow-s)

Use for static elements on the page that need more emphasis.

--w-box-shadow-emphasis
The quick brown fox jumps over the lazy dog

0px 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.08), 0px 2px 4px 0px rgba(0, 0, 0, 0.06), 0px 4px 8px 0px rgba(0, 0, 0, 0.04), 0px 6px 12px 0px rgba(0, 0, 0, 0.02);

(--w-box-shadow-m)

Use for all pop out elements such as tooltips, popovers, toasts, dropdowns.

--w-box-shadow-popout
The quick brown fox jumps over the lazy dog

0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.02), 0px 4px 8px 0px rgba(0, 0, 0, 0.04) , 0px 8px 16px 0px rgba(0, 0, 0, 0.04), 0px 12px 24px 0px rgba(0, 0, 0, 0.06), 0px 16px 32px 0px rgba(0, 0, 0, 0.06);

(--w-box-shadow-l)

Use for big elements that affect the whole view and need focus such as dialogs, modals.

--w-box-shadow-dialog
Back to top

breakpoint

Sample Description Token
The quick brown fox jumps over the lazy dog

320px

(--w-breakpoint-viewport-1)
--w-breakpoint-viewport-xs
The quick brown fox jumps over the lazy dog

544px

(--w-breakpoint-viewport-2)
--w-breakpoint-viewport-s
The quick brown fox jumps over the lazy dog

768px

(--w-breakpoint-viewport-3)
--w-breakpoint-viewport-m
The quick brown fox jumps over the lazy dog

992px

(--w-breakpoint-viewport-4)
--w-breakpoint-viewport-l
The quick brown fox jumps over the lazy dog

1280px

(--w-breakpoint-viewport-5)
--w-breakpoint-viewport-xl
The quick brown fox jumps over the lazy dog

1440px

(--w-breakpoint-viewport-6)
--w-breakpoint-viewport-xxl
Back to top

color

Sample Description Token
The quick brown fox jumps over the lazy dog

#D8DADA

(--w-color-gray-200)

Use to frame your content. Default borders are critical to understanding a page layout.

--w-color-border-primary
The quick brown fox jumps over the lazy dog

#AFB4B4

(--w-color-gray-300)

Use it to highlight the hover state on the primary border color.

--w-color-border-primary-hover
The quick brown fox jumps over the lazy dog

#E8EAEA

(--w-color-gray-100)

Use it for dividers to suggest a separation among components, like table rows.

--w-color-border-secondary
The quick brown fox jumps over the lazy dog

#888F8F

(--w-color-gray-400)

Use it for small interactive elements that need to be highlighted on the interface, like checkboxes or radio buttons

--w-color-border-highlight
The quick brown fox jumps over the lazy dog

#00a085

(--w-color-teal-400)

Use for interactive text or icons like links or buttons.

--w-color-border-accent
The quick brown fox jumps over the lazy dog

#38a203

(--w-color-green-400)

Use for positive or successful messages. For example, task completion or changes saved.

--w-color-border-success
The quick brown fox jumps over the lazy dog

#E3AA00

(--w-color-yellow-300)

Use to highlight messages that require the user’s attention or pending statuses.

--w-color-border-warning
The quick brown fox jumps over the lazy dog

#f35a47

(--w-color-red-400)

Use to emphasize a negative or dangerous situation where an action is required.

--w-color-border-danger
The quick brown fox jumps over the lazy dog

#4e8de9

(--w-color-blue-400)

Use for informative or neutral messages.

--w-color-border-info
The quick brown fox jumps over the lazy dog

#F7F8F8

(--w-color-gray-50)

Primary background color for the entire user interface.

--w-color-background-primary
The quick brown fox jumps over the lazy dog

#fff

(--w-color-white)

Use it to level up content across the page, like in a card.

--w-color-background-raised
The quick brown fox jumps over the lazy dog

#F3F5F5

(--w-color-gray-75)

Use it to create a higher contrast when you stack multiple surfaces, like forms inside cards for example.

--w-color-background-inset
The quick brown fox jumps over the lazy dog

hsla(180, 5%, 91%, .6)

(--w-color-gray-100-60)

Use it for a hover state on all neutral backgrounds.

--w-color-background-hover
The quick brown fox jumps over the lazy dog

hsla(180, 3%, 85%, .6)

(--w-color-gray-200-60)

Use it for an active state on all neutral backgrounds.

--w-color-background-active
The quick brown fox jumps over the lazy dog

hsla(180, 4%, 15%, .5)

The default color for backdrops. Use it for modal windows to distinguish them from the layer underneath.

--w-color-background-backdrop
The quick brown fox jumps over the lazy dog

#D8DADA

(--w-color-gray-200)

Use it as the default background color to represent placeholders.

--w-color-background-placeholder
The quick brown fox jumps over the lazy dog

#E8EAEA

(--w-color-gray-100)

Use as the default background for components that need to be placed over all surfaces, like badges.

--w-color-background-neutral
The quick brown fox jumps over the lazy dog

#888F8F

(--w-color-gray-400)

Use for elements that need to stand out against the interface, but don’t require immediate action i.e. control elements like checkboxes or radio buttons

--w-color-background-highlight
The quick brown fox jumps over the lazy dog

#3D4343

(--w-color-gray-800)

Use when you need to highlight surfaces and bring the contrast up, like with tooltips.

--w-color-background-inverted
The quick brown fox jumps over the lazy dog

#4A5151

(--w-color-gray-700)

Use it for a hover state on the inverted background.

--w-color-background-inverted-hover
The quick brown fox jumps over the lazy dog

#565F5F

(--w-color-gray-600)

Use it for an active state on the inverted background.

--w-color-background-inverted-active
The quick brown fox jumps over the lazy dog

#DFF9F2

(--w-color-teal-75)

Use for interactive text or icons like links or buttons.

--w-color-background-accent
The quick brown fox jumps over the lazy dog

#C1F5E7

(--w-color-teal-100)

Use it for a hover state on the accent background.

--w-color-background-accent-hover
The quick brown fox jumps over the lazy dog

#8febd5

(--w-color-teal-200)

Use it for an active state on the accent background.

--w-color-background-accent-active
The quick brown fox jumps over the lazy dog

#007C68

(--w-color-teal-500)

Pair with "foreground-accent-inverted" to highlight icons, buttons or interactive parts of the interface.

--w-color-background-accent-inverted
The quick brown fox jumps over the lazy dog

#006a59

(--w-color-teal-600)

Use it for a hover state on the "accent-inverted" background.

--w-color-background-accent-inverted-hover
The quick brown fox jumps over the lazy dog

#025b4c

(--w-color-teal-700)

Use it for an active state on the "accent-inverted" background.

--w-color-background-accent-inverted-active
The quick brown fox jumps over the lazy dog

#DBF0CE

(--w-color-green-100)

Use for positive or successful messages. For example, task completion or changes saved.

--w-color-background-success
The quick brown fox jumps over the lazy dog

#bde5a7

(--w-color-green-200)

Use it for a hover state on the success background.

--w-color-background-success-hover
The quick brown fox jumps over the lazy dog

#76c651

(--w-color-green-300)

Use it for an active state on the success background.

--w-color-background-success-active
The quick brown fox jumps over the lazy dog

#1C7F00

(--w-color-green-500)

Pair with "foreground-success-inverted" to highlight a positive or successful message.

--w-color-background-success-inverted
The quick brown fox jumps over the lazy dog

#FFF6BA

(--w-color-yellow-75)

Pair with "foreground-warning" to highlight messages that require the user’s attention or pending statuses.

--w-color-background-warning
The quick brown fox jumps over the lazy dog

#FFEC73

(--w-color-yellow-100)

Use it for a hover state on the warning background.

--w-color-background-warning-hover
The quick brown fox jumps over the lazy dog

#FFD728

(--w-color-yellow-200)

Use it for an active state on the warning background.

--w-color-background-warning-active
The quick brown fox jumps over the lazy dog

#FFD728

(--w-color-yellow-200)

Pair with "foreground-warning" to highlight messages that require the user’s attention or pending statuses.

--w-color-background-warning-inverted
The quick brown fox jumps over the lazy dog

#FFE5DE

(--w-color-red-100)

Pair with "foreground-danger" to highlight a negative or dangerous situation where an action is required.

--w-color-background-danger
The quick brown fox jumps over the lazy dog

#ffcfc3

(--w-color-red-200)

Use it for a hover state on the danger background.

--w-color-background-danger-hover
The quick brown fox jumps over the lazy dog

#ff9681

(--w-color-red-300)

Use it for an active state on the danger background.

--w-color-background-danger-active
The quick brown fox jumps over the lazy dog

#C9392D

(--w-color-red-500)

Pair with "foreground-danger-inverted" to highlight a negative or dangerous situation where an action is required.

--w-color-background-danger-inverted
The quick brown fox jumps over the lazy dog

#ae2f25

(--w-color-red-600)

Use it for a hover state on the "danger-inverted" background.

--w-color-background-danger-inverted-hover
The quick brown fox jumps over the lazy dog

#96281f

(--w-color-red-700)

Use it for an active state on the "danger-inverted" background.

--w-color-background-danger-inverted-active
The quick brown fox jumps over the lazy dog

#E2E9FF

(--w-color-blue-100)

Use for informative or neutral messages.

--w-color-background-info
The quick brown fox jumps over the lazy dog

#cbd9ff

(--w-color-blue-200)

Use it for a hover state on the info background.

--w-color-background-info-hover
The quick brown fox jumps over the lazy dog

#8eb2fd

(--w-color-blue-300)

Use it for an active state on the info background.

--w-color-background-info-active
The quick brown fox jumps over the lazy dog

#256EC3

(--w-color-blue-500)

Pair with "foreground-info-inverted" to highlight an informative message.

--w-color-background-info-inverted
The quick brown fox jumps over the lazy dog

#242727

(--w-color-gray-900)

The main color for content throughout the interface. Can be used on body or titles.

--w-color-foreground-primary
The quick brown fox jumps over the lazy dog

#565F5F

(--w-color-gray-600)

Use for secondary content that is not critical to understanding the flow of the interface.

--w-color-foreground-secondary
The quick brown fox jumps over the lazy dog

#888F8F

(--w-color-gray-400)

Use it for placeholder text or as the default color for icons.

--w-color-foreground-muted
The quick brown fox jumps over the lazy dog

#F7F8F8

(--w-color-gray-50)

Use it on elements with "background-inverted", like toasts or tooltips.

--w-color-foreground-inverted
The quick brown fox jumps over the lazy dog

#006a59

(--w-color-teal-600)

Use for interactive text or icons like links or buttons.

--w-color-foreground-accent
The quick brown fox jumps over the lazy dog

#F2FCF8

(--w-color-teal-50)

Pair with "background-accent-inverted" to highlight icons, buttons or interactive parts of the interface.

--w-color-foreground-accent-inverted
The quick brown fox jumps over the lazy dog

#176d00

(--w-color-green-600)

Use for positive or successful messages. For example, task completion.

--w-color-foreground-success
The quick brown fox jumps over the lazy dog

#F8FBF5

(--w-color-green-50)

Pair with "background-success-inverted" to highlight a positive or successful message.

--w-color-foreground-success-inverted
The quick brown fox jumps over the lazy dog

#865200

(--w-color-yellow-600)

Use for messages that require the user’s attention or pending statuses.

--w-color-foreground-warning
The quick brown fox jumps over the lazy dog

#ae2f25

(--w-color-red-600)

Use for a negative or dangerous situation where an action is required.

--w-color-foreground-danger
The quick brown fox jumps over the lazy dog

#FEFAF8

(--w-color-red-50)

Pair with "background-danger-inverted" to highlight a negative or dangerous situation.

--w-color-foreground-danger-inverted
The quick brown fox jumps over the lazy dog

#1b5ea9

(--w-color-blue-600)

Use it for an informative state on the info background.

--w-color-foreground-info
The quick brown fox jumps over the lazy dog

#F8FAFE

(--w-color-blue-50)

Pair with "background-info-inverted" to highlight an informative situation.

--w-color-foreground-info-inverted
The quick brown fox jumps over the lazy dog

#c6c6c6

(--w-color-tag-gray-300)

Use to create a subtle representation of the color. Pair with tag-foreground-gray

--w-color-tag-background-gray
The quick brown fox jumps over the lazy dog

#898989

(--w-color-tag-gray-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-gray-decorative
The quick brown fox jumps over the lazy dog

#6f6f6f

(--w-color-tag-gray-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-gray-inverted

--w-color-tag-background-gray-inverted
The quick brown fox jumps over the lazy dog

#c6c6cd

(--w-color-tag-slategray-300)

Use to create a subtle representation of the color. Pair with tag-foreground-slategray

--w-color-tag-background-slategray
The quick brown fox jumps over the lazy dog

#878895

(--w-color-tag-slategray-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-slategray-decorative
The quick brown fox jumps over the lazy dog

#6e6e7f

(--w-color-tag-slategray-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-slategray-inverted

--w-color-tag-background-slategray-inverted
The quick brown fox jumps over the lazy dog

#e5bbca

(--w-color-tag-pink-300)

Use to create a subtle representation of the color. Pair with tag-foreground-pink

--w-color-tag-background-pink
The quick brown fox jumps over the lazy dog

#c76c8f

(--w-color-tag-pink-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-pink-decorative
The quick brown fox jumps over the lazy dog

#b84772

(--w-color-tag-pink-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-pink-inverted

--w-color-tag-background-pink-inverted
The quick brown fox jumps over the lazy dog

#feb3b3

(--w-color-tag-red-300)

Use to create a subtle representation of the color. Pair with tag-foreground-red

--w-color-tag-background-red
The quick brown fox jumps over the lazy dog

#f54b4b

(--w-color-tag-red-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-red-decorative
The quick brown fox jumps over the lazy dog

#c83e3e

(--w-color-tag-red-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-red-inverted

--w-color-tag-background-red-inverted
The quick brown fox jumps over the lazy dog

#e6bfa5

(--w-color-tag-orange-300)

Use to create a subtle representation of the color. Pair with tag-foreground-orange

--w-color-tag-background-orange
The quick brown fox jumps over the lazy dog

#c9733a

(--w-color-tag-orange-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-orange-decorative
The quick brown fox jumps over the lazy dog

#ba4e06

(--w-color-tag-orange-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-orange-inverted

--w-color-tag-background-orange-inverted
The quick brown fox jumps over the lazy dog

#feecd3

(--w-color-tag-yellow-200)

Use to create a subtle representation of the color. Pair with tag-foreground-yellow

--w-color-tag-background-yellow
The quick brown fox jumps over the lazy dog

#fdb95b

(--w-color-tag-yellow-300)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-yellow-decorative
The quick brown fox jumps over the lazy dog

#e2a24a

(--w-color-tag-yellow-400)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-yellow-inverted

--w-color-tag-background-yellow-inverted
The quick brown fox jumps over the lazy dog

#c6cb90

(--w-color-tag-olive-300)

Use to create a subtle representation of the color. Pair with tag-foreground-olive

--w-color-tag-background-olive
The quick brown fox jumps over the lazy dog

#859019

(--w-color-tag-olive-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-olive-decorative
The quick brown fox jumps over the lazy dog

#6c7515

(--w-color-tag-olive-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-olive-inverted

--w-color-tag-background-olive-inverted
The quick brown fox jumps over the lazy dog

#2edebe

(--w-color-tag-teal-300)

Use to create a subtle representation of the color. Pair with tag-foreground-teal

--w-color-tag-background-teal
The quick brown fox jumps over the lazy dog

#1b9a83

(--w-color-tag-teal-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-teal-decorative
The quick brown fox jumps over the lazy dog

#167d6b

(--w-color-tag-teal-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-teal-inverted

--w-color-tag-background-teal-inverted
The quick brown fox jumps over the lazy dog

#8fd1dd

(--w-color-tag-tealblue-300)

Use to create a subtle representation of the color. Pair with tag-foreground-tealblue

--w-color-tag-background-tealblue
The quick brown fox jumps over the lazy dog

#1a95ad

(--w-color-tag-tealblue-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-tealblue-decorative
The quick brown fox jumps over the lazy dog

#157a8d

(--w-color-tag-tealblue-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-tealblue-inverted

--w-color-tag-background-tealblue-inverted
The quick brown fox jumps over the lazy dog

#83cffb

(--w-color-tag-skyblue-300)

Use to create a subtle representation of the color. Pair with tag-foreground-skyblue

--w-color-tag-background-skyblue
The quick brown fox jumps over the lazy dog

#2591ce

(--w-color-tag-skyblue-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-skyblue-decorative
The quick brown fox jumps over the lazy dog

#1e75a7

(--w-color-tag-skyblue-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-skyblue-inverted

--w-color-tag-background-skyblue-inverted
The quick brown fox jumps over the lazy dog

#bac4f7

(--w-color-tag-blue-300)

Use to create a subtle representation of the color. Pair with tag-foreground-blue

--w-color-tag-background-blue
The quick brown fox jumps over the lazy dog

#6b81ee

(--w-color-tag-blue-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-blue-decorative
The quick brown fox jumps over the lazy dog

#5668c5

(--w-color-tag-blue-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-blue-inverted

--w-color-tag-background-blue-inverted
The quick brown fox jumps over the lazy dog

#d3bbfc

(--w-color-tag-lavender-300)

Use to create a subtle representation of the color. Pair with tag-foreground-lavender

--w-color-tag-background-lavender
The quick brown fox jumps over the lazy dog

#9979cf

(--w-color-tag-lavender-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-lavender-decorative
The quick brown fox jumps over the lazy dog

#7c62a8

(--w-color-tag-lavender-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-lavender-inverted

--w-color-tag-background-lavender-inverted
The quick brown fox jumps over the lazy dog

#debce0

(--w-color-tag-purple-300)

Use to create a subtle representation of the color. Pair with tag-foreground-purple

--w-color-tag-background-purple
The quick brown fox jumps over the lazy dog

#b76ebc

(--w-color-tag-purple-500)

Use when color is purely decorative and doesn’t contain any text.

--w-color-tag-background-purple-decorative
The quick brown fox jumps over the lazy dog

#a54bab

(--w-color-tag-purple-600)

Use to create a highly visible representation of a color and when element using it includes text. Pair with tag-foreground-purple-inverted

--w-color-tag-background-purple-inverted
The quick brown fox jumps over the lazy dog

#424242

(--w-color-tag-gray-900)

Use for texts and icons. Pair with tag-background-gray

--w-color-tag-foreground-gray
The quick brown fox jumps over the lazy dog

#f7f7f7

(--w-color-tag-gray-100)

Use for texts and icons. Pair with tag-background-gray-inverted

--w-color-tag-foreground-gray-inverted
The quick brown fox jumps over the lazy dog

#404154

(--w-color-tag-slategray-900)

Use for texts and icons. Pair with tag-background-slategray

--w-color-tag-foreground-slategray
The quick brown fox jumps over the lazy dog

#f8f8f8

(--w-color-tag-slategray-100)

Use for texts and icons. Pair with tag-background-slategray-inverted

--w-color-tag-foreground-slategray-inverted
The quick brown fox jumps over the lazy dog

#6f2a44

(--w-color-tag-pink-900)

Use for texts and icons. Pair with tag-background-pink

--w-color-tag-foreground-pink
The quick brown fox jumps over the lazy dog

#fbf6f8

(--w-color-tag-pink-100)

Use for texts and icons. Pair with tag-background-pink-inverted

--w-color-tag-foreground-pink-inverted
The quick brown fox jumps over the lazy dog

#782525

(--w-color-tag-red-900)

Use for texts and icons. Pair with tag-background-red

--w-color-tag-foreground-red
The quick brown fox jumps over the lazy dog

#fff6f6

(--w-color-tag-red-100)

Use for texts and icons. Pair with tag-background-red-inverted

--w-color-tag-foreground-red-inverted
The quick brown fox jumps over the lazy dog

#722e01

(--w-color-tag-orange-900)

Use for texts and icons. Pair with tag-background-orange

--w-color-tag-foreground-orange
The quick brown fox jumps over the lazy dog

#fbf6f2

(--w-color-tag-orange-100)

Use for texts and icons. Pair with tag-background-orange-inverted

--w-color-tag-foreground-orange-inverted
The quick brown fox jumps over the lazy dog

#563e1c

(--w-color-tag-yellow-900)

Use for texts and icons. Pair with tag-background-yellow

--w-color-tag-foreground-yellow
The quick brown fox jumps over the lazy dog

#fff6ea

(--w-color-tag-yellow-100)

Use for texts and icons. Pair with tag-background-yellow-inverted

--w-color-tag-foreground-yellow-inverted
The quick brown fox jumps over the lazy dog

#40460d

(--w-color-tag-olive-900)

Use for texts and icons. Pair with tag-background-olive

--w-color-tag-foreground-olive
The quick brown fox jumps over the lazy dog

#f8f9f1

(--w-color-tag-olive-100)

Use for texts and icons. Pair with tag-background-olive-inverted

--w-color-tag-foreground-olive-inverted
The quick brown fox jumps over the lazy dog

#40460d

(--w-color-tag-olive-900)

Use for texts and icons. Pair with tag-background-teal

--w-color-tag-foreground-teal
The quick brown fox jumps over the lazy dog

#f8f9f1

(--w-color-tag-olive-100)

Use for texts and icons. Pair with tag-background-teal-inverted

--w-color-tag-foreground-teal-inverted
The quick brown fox jumps over the lazy dog

#0d4954

(--w-color-tag-tealblue-900)

Use for texts and icons. Pair with tag-background-tealblue

--w-color-tag-foreground-tealblue
The quick brown fox jumps over the lazy dog

#f1f9fb

(--w-color-tag-tealblue-100)

Use for texts and icons. Pair with tag-background-tealblue-inverted

--w-color-tag-foreground-tealblue-inverted
The quick brown fox jumps over the lazy dog

#124664

(--w-color-tag-skyblue-900)

Use for texts and icons. Pair with tag-background-skyblue

--w-color-tag-foreground-skyblue
The quick brown fox jumps over the lazy dog

#f0f9fe

(--w-color-tag-skyblue-100)

Use for texts and icons. Pair with tag-background-skyblue-inverted

--w-color-tag-foreground-skyblue-inverted
The quick brown fox jumps over the lazy dog

#343f76

(--w-color-tag-blue-900)

Use for texts and icons. Pair with tag-background-blue

--w-color-tag-foreground-blue
The quick brown fox jumps over the lazy dog

#f6f8fe

(--w-color-tag-blue-100)

Use for texts and icons. Pair with tag-background-blue-inverted

--w-color-tag-foreground-blue-inverted
The quick brown fox jumps over the lazy dog

#4a3b64

(--w-color-tag-lavender-900)

Use for texts and icons. Pair with tag-background-lavender

--w-color-tag-foreground-lavender
The quick brown fox jumps over the lazy dog

#faf7ff

(--w-color-tag-lavender-100)

Use for texts and icons. Pair with tag-background-lavender-inverted

--w-color-tag-foreground-lavender-inverted
The quick brown fox jumps over the lazy dog

#652b68

(--w-color-tag-purple-900)

Use for texts and icons. Pair with tag-background-purple

--w-color-tag-foreground-purple
The quick brown fox jumps over the lazy dog

#faf6fb

(--w-color-tag-purple-100)

Use for texts and icons. Pair with tag-background-purple-inverted

--w-color-tag-foreground-purple-inverted
Back to top

font-family

Sample Description Token
The quick brown fox jumps over the lazy dog

InterVariable, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif

Inter is the default UI font family utilized by all our applications.

--w-font-family-body
Back to top

font-size

Sample Description Token
The quick brown fox jumps over the lazy dog

calc(12 / var(--w-base-rem) * 1rem)

(--w-font-size-xs)

Caption

--w-font-size-caption
The quick brown fox jumps over the lazy dog

calc(14 / var(--w-base-rem) * 1rem)

(--w-font-size-s)

Body

--w-font-size-body
The quick brown fox jumps over the lazy dog

calc(14 / var(--w-base-rem) * 1rem)

(--w-font-size-s)

Sub-Section Heading

--w-font-size-sub-section-heading
The quick brown fox jumps over the lazy dog

calc(16 / var(--w-base-rem) * 1rem)

(--w-font-size-m)

Section Heading

--w-font-size-section-heading
The quick brown fox jumps over the lazy dog

calc(24 / var(--w-base-rem) * 1rem)

(--w-font-size-xl)

Display Heading

--w-font-size-display-heading
The quick brown fox jumps over the lazy dog

calc(14 / var(--w-base-rem) * 1rem)

(--w-font-size-s)

Caption

--w-font-size-caption-mobile
The quick brown fox jumps over the lazy dog

calc(16 / var(--w-base-rem) * 1rem)

(--w-font-size-m)

Body

--w-font-size-body-mobile
The quick brown fox jumps over the lazy dog

calc(16 / var(--w-base-rem) * 1rem)

(--w-font-size-m)

Sub-Section Heading

--w-font-size-sub-section-heading-mobile
The quick brown fox jumps over the lazy dog

calc(18 / var(--w-base-rem) * 1rem)

(--w-font-size-l)

Section Heading

--w-font-size-section-heading-mobile
The quick brown fox jumps over the lazy dog

calc(28 / var(--w-base-rem) * 1rem)

(--w-font-size-xxl)

Display Heading

--w-font-size-display-heading-mobile
Back to top

font-weight

Sample Description Token
The quick brown fox jumps over the lazy dog

450

(--w-font-weight-regular)

Body

Default font weight for body and captions

--w-font-weight-body
The quick brown fox jumps over the lazy dog

600

(--w-font-weight-bold)

Heading

Default font weight for headings

--w-font-weight-heading
The quick brown fox jumps over the lazy dog

550

(--w-font-weight-medium)

Emphasis

It will serve as an emphasis style that can be used to drive attention or priority to certain text elements. Perfect use for button states and active tabs.

--w-font-weight-emphasis
Back to top

line-height

Sample Description Token
The quick brown fox jumps over the lazy dog

1.5

(--w-line-height-l)

Body

Default line height for body and captions

--w-line-height-body
The quick brown fox jumps over the lazy dog

1.25

(--w-line-height-m)

Heading

Default line height for headings

--w-line-height-heading
The quick brown fox jumps over the lazy dog

1.15

(--w-line-height-s)

Condensed

Use this line height if you need text to take less space. Avoid using with multi-line paragraphs

--w-line-height-condensed
Back to top

space

Sample Description Token
The quick brown fox jumps over the lazy dog

calc(8 / var(--w-base-rem) * 1rem)

(--w-space-8)

Space S

Use it to space out small components in the UI

--w-space-s
The quick brown fox jumps over the lazy dog

calc(16 / var(--w-base-rem) * 1rem)

(--w-space-16)

Space M

Use it to space out small components in the UI

--w-space-m
The quick brown fox jumps over the lazy dog

calc(32 / var(--w-base-rem) * 1rem)

(--w-space-32)

Space L

Use it to separate articles and sections in every view.

--w-space-l
The quick brown fox jumps over the lazy dog

calc(64 / var(--w-base-rem) * 1rem)

(--w-space-64)

Space XL

Use it to separate articles and sections in every view.

--w-space-xl
Back to top

z-index

Sample Description Token
The quick brown fox jumps over the lazy dog

300

(--w-z-index-300)

It is meant for elements that should stick to the page's viewport.

--w-z-index-sticky
The quick brown fox jumps over the lazy dog

600

(--w-z-index-600)

Use it for elements that pop out on the screen and cover other elements, e.g. dropdown menu, popover, tooltip.

--w-z-index-popout
The quick brown fox jumps over the lazy dog

900

(--w-z-index-900)

Use it for elements that open a new modality for the user and completely cover the initial window, e.g. modal dialog.

--w-z-index-modal
The quick brown fox jumps over the lazy dog

1000

(--w-z-index-1000)

It is meant for system notifications that should provide feedback to users, e.g toast messages.

--w-z-index-notification
Back to top