UNPKG

@mtec-solutions-org/design-system

Version:

A React Native Web design system library with theme and components

21 lines (20 loc) 534 B
import { makeTheme } from '@dripsy/core'; import { baseTheme } from './baseTheme'; export const darkTheme = makeTheme({ ...baseTheme, colors: { primary: '#4A90E2', secondary: '#2C3E50', secondaryDark: '#1A252F', success: '#27AE60', warning: '#F39C12', error: '#E74C3C', text: '#FFFFFF', textSecondary: '#B0B0B0', background: '#121212', disabled: '#666666', white: '#FFFFFF', black: '#000000', }, }); export default darkTheme;