UNPKG

@raminy/css-config

Version:

Tailwind CSS v4 configuration with predefined themes, semantic color tokens, and SCSS utilities for theme customization and generation.

15 lines (14 loc) 421 B
import { Theme } from './themes.types'; export type CustomTheme<T extends string> = Theme | T; export declare const variablePrefix: string; export declare const tailwindVariablePrefix: string; export declare const defaultTheme: string; export declare const themes: { name: Theme; color: string; details: Record<string, { dark: string; light: string; description?: string; }>; }[];