UNPKG

@codegouvfr/react-dsfr

Version:

French State Design System React integration library

9 lines (8 loc) 322 B
import type { ColorOptions } from "./generatedFromCss/getColorOptions"; import type { ColorDecisions } from "./generatedFromCss/getColorDecisions"; export type ColorTheme = { isDark: boolean; decisions: ColorDecisions; options: ColorOptions; }; export declare const getColors: (isDark: boolean) => ColorTheme;