mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-04-20 03:00:24 -04:00
11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
import { PurpleTheme } from './themes/PurpleTheme';
|
|
// To change the theme, CSS theme file has to import and assign it to Theme in line no 6
|
|
|
|
export const Theme = PurpleTheme;
|
|
|
|
type SpacingXY = [number, number];
|
|
type SpacingFull = [number, number, number, number];
|
|
export type Spacing = SpacingXY | SpacingFull | string;
|
|
|
|
export type ElevationLevel = 0 | 1 | 2 | 3 | 4 | 5;
|