File tree Expand file tree Collapse file tree 6 files changed +50
-0
lines changed
Expand file tree Collapse file tree 6 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ import { darkTheme as baseDarkTheme } from '../base/dark.tokens' ;
2+ import type { DarkTheme } from '../themes.interfaces' ;
3+
4+ export const darkTheme : DarkTheme = {
5+ ...baseDarkTheme
6+ } ;
Original file line number Diff line number Diff line change 1+ import { defaultTheme as baseDefaultTheme } from '../base/default.tokens' ;
2+ import type { DefaultTheme } from '../themes.interfaces' ;
3+
4+ import { darkTheme } from './dark.tokens' ;
5+ import { lightTheme } from './light.tokens' ;
6+
7+ export const defaultTheme : DefaultTheme = {
8+ ...baseDefaultTheme ,
9+
10+ name : 'ios' ,
11+
12+ palette : {
13+ light : lightTheme ,
14+ dark : darkTheme ,
15+ } ,
16+ } ;
Original file line number Diff line number Diff line change 1+ import type { LightTheme } from '../themes.interfaces' ;
2+
3+ export const lightTheme : LightTheme = { } ;
Original file line number Diff line number Diff line change 1+ import { darkTheme as baseDarkTheme } from '../base/dark.tokens' ;
2+ import type { DarkTheme } from '../themes.interfaces' ;
3+
4+ export const darkTheme : DarkTheme = {
5+ ...baseDarkTheme ,
6+ } ;
Original file line number Diff line number Diff line change 1+ import { defaultTheme as baseDefaultTheme } from '../base/default.tokens' ;
2+ import type { DefaultTheme } from '../themes.interfaces' ;
3+
4+ import { darkTheme } from './dark.tokens.js' ;
5+ import { lightTheme } from './light.tokens.js' ;
6+
7+ export const defaultTheme : DefaultTheme = {
8+ ...baseDefaultTheme ,
9+
10+ name : 'md' ,
11+
12+ palette : {
13+ light : lightTheme ,
14+ dark : darkTheme ,
15+ } ,
16+ } ;
Original file line number Diff line number Diff line change 1+ import type { LightTheme } from '../themes.interfaces' ;
2+
3+ export const lightTheme : LightTheme = { } ;
You can’t perform that action at this time.
0 commit comments