10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
|
|
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)}`,
|
||
|
|
});
|