jxnblk / css-var

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

css-var

CSS custom properties helper utility

npm i css-var
import cv from 'css-var'

// Set a custom property
cv({ blue: '#07c' })

const style = {
  // Use custom property
  color: cv('blue') // 'var(--blue)'
}

Currently only works client-side

MIT License

About


Languages

Language:JavaScript 100.0%