@primer/primitives
Version:
Typography, spacing, and color primitives for Primer design system
15 lines (14 loc) • 317 B
TypeScript
/**
* Type definition for w3c shadow composite token value
* @link https://design-tokens.github.io/community-group/format/#shadow
*/
export type ShadowTokenValue = {
color: string
offsetX: string
offsetY: string
blur: string
spread: string
// custom non w3c values
inset?: boolean
alpha?: number
}