ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
11 lines (10 loc) • 563 B
TypeScript
/**
* Theme Module
*
* Modul ini menyediakan sistem theming yang fleksibel untuk Smart UI.
* Anda dapat mengcustomize color, typography, spacing, dan lainnya.
*/
export { ThemeProvider, useTheme } from './ThemeProvider';
export { defaultTheme } from './defaultTheme';
export { applyTheme, removeTheme, deepMerge, hexToRgb, generateGradient, generateColorPalette, } from './utils';
export type { ThemeConfig, ThemeContextValue, ColorPalette, SpecialColors, GradientColors, Spacing, Typography as ThemeTypography, BorderConfig, ShadowConfig, } from './types';