> For the complete documentation index, see [llms.txt](https://front-of-house.gitbook.io/svbstrate/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://front-of-house.gitbook.io/svbstrate/css.md).

# CSS

```javascript
import { create } from '@svbstrate/css'

const svbstrate = create({ ...theme })

svbstrate.css({ color: 'red' })
svbstrate.injectGlobal({
    'html, body': {
        padding: 0,
    },
})

const sheet = svbstrate.flush()
// => ._abc123 { color: 'red' } html, body { padding: 0 }
```
