UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

5 lines (4 loc) 279 B
import { theme } from "../tokens"; export type ColorsType = keyof typeof theme | "transparent" | "current"; export declare const getCSSVariableThemeColor: (colorThemeName: ColorsType) => string; export declare const getComputedThemeColor: (colorThemeName: ColorsType) => string;