Stoop

GitHub
/Scales

Theme Token Scales

#

All available theme scales in Stoop

Approved Scales

#

Stoop supports 13 approved theme scales:

colors

#

Color values (strings)

colors: {
  primary: "#0070f3",
  background: "#ffffff",
  text: "#000000",
}

opacities

#

Opacity values (strings or numbers)

opacities: {
  disabled: "0.5",
  hover: "0.8",
}

space

#

Spacing values (strings)

space: {
  small: "8px",
  medium: "16px",
  large: "24px",
}

radii

#

Border radius values (strings)

radii: {
  small: "4px",
  default: "6px",
  large: "8px",
}

sizes

#

Size values (strings)

sizes: {
  small: "100px",
  medium: "200px",
  large: "300px",
}

fonts

#

Font family values (strings)

fonts: {
  body: "system-ui, sans-serif",
  heading: "Georgia, serif",
}

fontWeights

#

Font weight values (strings or numbers)

fontWeights: {
  normal: "400",
  bold: "500",
}

fontSizes

#

Font size values (strings)

fontSizes: {
  small: "14px",
  medium: "16px",
  large: "20px",
}

lineHeights

#

Line height values (strings or numbers)

lineHeights: {
  normal: "1.5",
  tight: "1.2",
}

letterSpacings

#

Letter spacing values (strings)

letterSpacings: {
  normal: "0",
  wide: "0.1em",
}

shadows

#

Shadow values (strings)

shadows: {
  subtle: "0 1px 2px rgba(0,0,0,0.05)",
  medium: "0 4px 6px rgba(0,0,0,0.1)",
}

zIndices

#

Z-index values (strings or numbers)

zIndices: {
  dropdown: "1000",
  modal: "2000",
}

transitions

#

Transition/animation values (strings)

transitions: {
  fast: "all 0.1s ease",
  default: "all 0.2s ease",
}