Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mtmeyer/artizan
https://github.com/mtmeyer/artizan
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mtmeyer/artizan
- Owner: mtmeyer
- Created: 2022-04-13T14:12:20.000Z (over 2 years ago)
- Default Branch: release
- Last Pushed: 2022-04-17T04:42:01.000Z (over 2 years ago)
- Last Synced: 2024-11-11T01:49:56.323Z (10 days ago)
- Language: TypeScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```