Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mtmeyer/artizan


https://github.com/mtmeyer/artizan

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

# Artizan

### Tiny CSS in JS library focusing on CSS custom properties for theming

```javascript
import { css } from "artizan";

const buttonStyles = css`
background-color: red;
border-radius: 4px;
cursor: pointer

&:hover {
background-color: aqua;
}
`;

return A button;
```