fixes - #5201 https://github.com/twentyhq/twenty/assets/13139771/871019c6-6456-46b4-95dd-07ffb33eb4fd --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
/* eslint-disable @nx/workspace-no-hardcoded-colors */
|
|
import LightNoise from '@/ui/theme/assets/light-noise.png';
|
|
import { COLOR } from '@/ui/theme/constants/Colors';
|
|
import { GRAY_SCALE } from '@/ui/theme/constants/GrayScale';
|
|
import { RGBA } from '@/ui/theme/constants/Rgba';
|
|
|
|
export const BACKGROUND_LIGHT = {
|
|
noisy: `url(${LightNoise.toString()});`,
|
|
primary: GRAY_SCALE.gray0,
|
|
secondary: GRAY_SCALE.gray10,
|
|
tertiary: GRAY_SCALE.gray15,
|
|
quaternary: GRAY_SCALE.gray20,
|
|
danger: COLOR.red10,
|
|
transparent: {
|
|
primary: RGBA(GRAY_SCALE.gray0, 0.5),
|
|
secondary: RGBA(GRAY_SCALE.gray10, 0.5),
|
|
strong: RGBA(GRAY_SCALE.gray100, 0.16),
|
|
medium: RGBA(GRAY_SCALE.gray100, 0.08),
|
|
light: RGBA(GRAY_SCALE.gray100, 0.04),
|
|
lighter: RGBA(GRAY_SCALE.gray100, 0.02),
|
|
danger: RGBA(COLOR.red, 0.08),
|
|
},
|
|
overlay: RGBA(GRAY_SCALE.gray80, 0.8),
|
|
radialGradient: `radial-gradient(50% 62.62% at 50% 0%, #505050 0%, ${GRAY_SCALE.gray60} 100%)`,
|
|
radialGradientHover: `radial-gradient(76.32% 95.59% at 50% 0%, #505050 0%, ${GRAY_SCALE.gray60} 100%)`,
|
|
primaryInverted: GRAY_SCALE.gray60,
|
|
primaryInvertedHover: GRAY_SCALE.gray55,
|
|
};
|