UNPKG

@artsy/palette-tokens

Version:

The design tokens for Artsy's palette

18 lines (17 loc) 705 B
import { Color, ColorValue, SpacingUnit } from "./index"; /** * A helper to easily access space values when not in a styled-components or * styled-systems context. * * @deprecated use component spacing props, or `themeGet('space.n')` */ export declare const space: (spaceKey: SpacingUnit) => number; /** * A helper to easily access colors when not in a styled-components or * styled-systems context. * * @deprecated use component `color` or `borderColor` props, or `themeGet('colors.colorName')` */ export declare function color(colorKey: undefined): undefined; export declare function color(colorKey: Color): ColorValue; export declare function color(colorKey?: Color): ColorValue | undefined;