* ESLint rule: const naming Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> * Refactor according to review Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> * refactor: Reverts changes on `twenty-server` Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev> Co-authored-by: v1b3m <vibenjamin6@gmail.com> --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: KlingerMatheus <klinger.matheus@gitstart.dev>
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
/* eslint-disable @nx/workspace-no-hardcoded-colors */
|
|
import { COLOR } from '@/ui/theme/constants/Colors';
|
|
import { GRAY_SCALE } from '@/ui/theme/constants/GrayScale';
|
|
import { RGBA } from '@/ui/theme/constants/Rgba';
|
|
|
|
import LightNoise from '../assets/light-noise.png';
|
|
|
|
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.8),
|
|
secondary: RGBA(GRAY_SCALE.gray10, 0.8),
|
|
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%)`,
|
|
};
|