UNPKG

655 BJavaScriptView Raw
1import color from 'color';
2import DefaultTheme from './DefaultTheme';
3import { black, white, pinkA100 } from './colors';
4const DarkTheme = { ...DefaultTheme,
5 dark: true,
6 mode: 'adaptive',
7 colors: { ...DefaultTheme.colors,
8 primary: '#BB86FC',
9 accent: '#03dac6',
10 background: '#121212',
11 surface: '#121212',
12 error: '#CF6679',
13 onSurface: '#FFFFFF',
14 text: white,
15 disabled: color(white).alpha(0.38).rgb().string(),
16 placeholder: color(white).alpha(0.54).rgb().string(),
17 backdrop: color(black).alpha(0.5).rgb().string(),
18 notification: pinkA100
19 }
20};
21export default DarkTheme;
22//# sourceMappingURL=DarkTheme.js.map
\No newline at end of file