Files
twenty/packages/twenty-website/src/app/_components/ui/theme/background.ts
Félix Malfait 5de1c2c31d New folder structure for website (#4159)
New folder structure
2024-02-23 17:42:13 +01:00

14 lines
323 B
TypeScript

import { Color, rgba } from './colors';
export const Background = {
primary: Color.white,
secondary: Color.gray10,
tertiary: Color.gray20,
transparent: {
strong: rgba(Color.gray60, 0.16),
medium: rgba(Color.gray60, 0.08),
light: rgba(Color.gray60, 0.06),
lighter: rgba(Color.gray60, 0.04),
},
};