26 lines
754 B
TypeScript
26 lines
754 B
TypeScript
import { BLUR_LIGHT } from '@ui/theme/constants/BlurLight';
|
|
import { SNACK_BAR_LIGHT } from '@ui/theme/constants/SnackBarLight';
|
|
|
|
import { ACCENT_LIGHT } from './AccentLight';
|
|
import { BACKGROUND_LIGHT } from './BackgroundLight';
|
|
import { BORDER_LIGHT } from './BorderLight';
|
|
import { BOX_SHADOW_LIGHT } from './BoxShadowLight';
|
|
import { FONT_LIGHT } from './FontLight';
|
|
import { TAG_LIGHT } from './TagLight';
|
|
import { THEME_COMMON } from './ThemeCommon';
|
|
|
|
export const THEME_LIGHT = {
|
|
...THEME_COMMON,
|
|
...{
|
|
accent: ACCENT_LIGHT,
|
|
background: BACKGROUND_LIGHT,
|
|
blur: BLUR_LIGHT,
|
|
border: BORDER_LIGHT,
|
|
boxShadow: BOX_SHADOW_LIGHT,
|
|
font: FONT_LIGHT,
|
|
name: 'light',
|
|
snackBar: SNACK_BAR_LIGHT,
|
|
tag: TAG_LIGHT,
|
|
},
|
|
};
|