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">
22 lines
548 B
TypeScript
22 lines
548 B
TypeScript
import { MAIN_COLORS } from '@ui/theme/constants/MainColors';
|
|
import { RGBA } from '@ui/theme/constants/Rgba';
|
|
|
|
export const SNACK_BAR_COMMON = {
|
|
success: {
|
|
color: MAIN_COLORS.turquoise,
|
|
backgroundColor: RGBA(MAIN_COLORS.turquoise, 0.04),
|
|
},
|
|
error: {
|
|
color: MAIN_COLORS.red,
|
|
backgroundColor: RGBA(MAIN_COLORS.red, 0.04),
|
|
},
|
|
warning: {
|
|
color: MAIN_COLORS.orange,
|
|
backgroundColor: RGBA(MAIN_COLORS.orange, 0.04),
|
|
},
|
|
info: {
|
|
color: MAIN_COLORS.blue,
|
|
backgroundColor: RGBA(MAIN_COLORS.blue, 0.04),
|
|
},
|
|
};
|