@nousantx/tenoxui-preset
Version:
Ready to use tenoxui preset with minimal setup.
40 lines (30 loc) • 829 B
Markdown
This is a minimal configuration template for your TenoxUI.
```bash
npm i @tenoxui/static @nousantx/tenoxui-preset
```
```javascript
import { TenoxUI } from '@tenoxui/static'
import { createConfig } from '@nousantx/tenoxui-preset'
const ui = new TenoxUI(
createConfig({
sizing: 0.25
})
)
console.log(
ui.generate([
'bg-red-500',
'hover:bg-blue-500',
'flex',
'grid',
'p-8',
'text-center',
'text-lime-500/30'
// other class names ...
])
)
```
This library is inspired by [Tailwind CSS](https://tailwindcss.com). While no code has been copied, it follows Tailwind's utility-first naming convention and adopts similar theme values, such as colors and box-shadow values. Tailwind CSS is a trademark of Tailwind Labs Inc.