UNPKG

673 BJavaScriptView Raw
1import color from 'color';
2import { black, white, pinkA400 } from './colors';
3import configureFonts from './fonts';
4const DefaultTheme = {
5 dark: false,
6 roundness: 4,
7 colors: {
8 primary: '#6200ee',
9 accent: '#03dac4',
10 background: '#f6f6f6',
11 surface: white,
12 error: '#B00020',
13 text: black,
14 onSurface: '#000000',
15 disabled: color(black).alpha(0.26).rgb().string(),
16 placeholder: color(black).alpha(0.54).rgb().string(),
17 backdrop: color(black).alpha(0.5).rgb().string(),
18 notification: pinkA400
19 },
20 fonts: configureFonts(),
21 animation: {
22 scale: 1.0
23 }
24};
25export default DefaultTheme;
26//# sourceMappingURL=DefaultTheme.js.map
\No newline at end of file