@flexnative/theme-context
Version:
React ThemeContext
18 lines (17 loc) • 551 B
TypeScript
import { BaseColors } from './props';
/**
* Defines the default dark color palette for the theme.
* This object implements the `BaseColors` interface and provides specific color values
* suitable for dark mode interfaces.
*
* @type {BaseColors}
*/
export declare const dark: BaseColors;
/**
* Defines the default light color palette for the theme.
* This object implements the `BaseColors` interface and provides specific color values
* suitable for light mode interfaces.
*
* @type {BaseColors}
*/
export declare const light: BaseColors;