Files
inji-wallet/components/ui/styleUtils.ts

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;