Closes #5383 ## Light theme <img width="905" alt="image" src="https://github.com/twentyhq/twenty/assets/3098428/ab0683c5-ded3-420c-ace6-684d38794a2d"> ## Dark theme <img width="903" alt="image" src="https://github.com/twentyhq/twenty/assets/3098428/4e43ca35-438d-4ba0-8388-1f061c6ccfb0">
24 lines
672 B
TypeScript
24 lines
672 B
TypeScript
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,
|
|
border: BORDER_LIGHT,
|
|
boxShadow: BOX_SHADOW_LIGHT,
|
|
font: FONT_LIGHT,
|
|
name: 'light',
|
|
snackBar: SNACK_BAR_LIGHT,
|
|
tag: TAG_LIGHT,
|
|
},
|
|
};
|