source: src/theme/options/dark-mode.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 392 bytes
Line 
1import { palette } from '../palette';
2import { shadows } from '../shadows';
3import { customShadows } from '../custom-shadows';
4
5// ----------------------------------------------------------------------
6
7export function darkMode(mode: 'light' | 'dark') {
8 const theme = {
9 palette: palette(mode),
10 shadows: shadows(mode),
11 customShadows: customShadows(mode),
12 };
13
14 return theme;
15}
Note: See TracBrowser for help on using the repository browser.