UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

8 lines (7 loc) 247 B
import { ThemeValues } from '.'; type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]> | T[P]; }; export declare const colorsDark: ThemeValues['colors']; export declare const darkTheme: RecursivePartial<ThemeValues>; export {};