Files
cinny/src/app/styles/Patterns.css.ts
T

10 lines
318 B
TypeScript
Raw Normal View History

2024-01-21 23:50:56 +11:00
import { style } from '@vanilla-extract/css';
import { color, toRem } from 'folds';
export const BackgroundDotPattern = style({
backgroundImage: `radial-gradient(${color.Background.ContainerActive} ${toRem(2)}, ${
color.Background.Container
} ${toRem(2)})`,
backgroundSize: `${toRem(40)} ${toRem(40)}`,
});