12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
import base from './base';
|
|
import { IThemes } from './utils';
|
|
|
|
/**
|
|
* The default theme to load
|
|
*/
|
|
export const DEFAULT_THEME: string = 'base';
|
|
|
|
export const themes: IThemes = {
|
|
base,
|
|
};
|