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 | |
---|
1 | import { palette } from '../palette';
|
---|
2 | import { shadows } from '../shadows';
|
---|
3 | import { customShadows } from '../custom-shadows';
|
---|
4 |
|
---|
5 | // ----------------------------------------------------------------------
|
---|
6 |
|
---|
7 | export 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.