d14bb2ea11
* feat: configure eslint rules by replicating those in the twenty-front package and introduce scripts for linting, formatting code and removing build output * fix: ensure each file of the extension package satisfies linting rules and disable some rules where necessary * fix: update relative imports to absolute imports throughout extension code with the defined tilde and at symbols * fix: import the updated ui module from the front package to the chrome extension package to prevent eslint rules from breaking subject to the recent merged changes into main * fix: commit the case change for files that were missed by Git in the earlier commits due to default configuration
27 lines
1.0 KiB
TypeScript
27 lines
1.0 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.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%)`,
|
|
};
|