UNPKG

392 BTypeScriptView Raw
1export type IColorValue = 'light' | 'dark';
2export type IPrefersColorValue = IColorValue | 'auto';
3/**
4 * hook for get/set prefers-color-schema, use to control color mode for theme package
5 * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
6 */
7export declare const usePrefersColor: () => [IColorValue, IPrefersColorValue, (val: IPrefersColorValue) => void];