@furystack/shades-common-components
Version:
35 lines (33 loc) • 592 B
text/typescript
import type { Palette } from './theme-provider-service.js'
export const defaultPalette: Palette = {
primary: {
light: '#6573c3',
main: '#3f51b5',
dark: '#2c387e',
},
secondary: {
light: '#4aedc4',
main: '#1de9b6',
dark: '#14a37f',
},
error: {
light: '#e57373',
main: '#f44336',
dark: '#a31f1f',
},
warning: {
light: '#ffb74d',
main: '#ff9800',
dark: '#f57c00',
},
info: {
light: '#64b5f6',
main: '#2196f3',
dark: '#1976d2',
},
success: {
light: '#81c784',
main: '#4caf50',
dark: '#388e3c',
},
}