@mtec-solutions-org/design-system
Version:
A React Native Web design system library with theme and components
21 lines (20 loc) • 536 B
JavaScript
import { makeTheme } from '@dripsy/core';
import { baseTheme } from './baseTheme';
export const lightTheme = makeTheme({
...baseTheme,
colors: {
primary: '#3578d1',
secondary: '#EFF3F8',
secondaryDark: '#D6DFEA',
success: '#34C759',
warning: '#FF9500',
error: '#FF3B30',
text: '#1F1F1F',
textSecondary: '#707070',
background: '#F9F9FA',
disabled: '#8E8E93',
white: '#FFFFFF',
black: '#000000',
},
});
export default lightTheme;