/* 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%)`, };