sdxc

Type to search, or start from one of these:

general

vars

Sets custom properties on the host element, with the leading -- omitted from each key so call sites read as plain option names.

import { vars } from "@sdxc/u/general";

Quick reference

Every documented call, beside the CSS it emits.

CallCSS
u.vars({ "sidebar-width": "18rem" })css({ "--sidebar-width": "18rem" })

Using a custom value

Every scale argument also takes a raw CSS value, which passes through untouched.

u.vars({ "sidebar-width": "18rem" })

Applying on a state

Wrap the call in a state utility to scope it to one selector.

u.hover(u.vars({ "sidebar-width": "18rem" }))

Responsive design

Wrap the call in a container query to scope it to one width.

u.at("md", u.vars({ "sidebar-width": "18rem" }))

Signature

u.vars(values: Record<string, string | number>)