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: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mtmeyer/artizan
- Owner: mtmeyer
- Created: 2022-04-13T14:12:20.000Z (almost 3 years ago)
- Default Branch: release
- Last Pushed: 2022-04-17T04:42:01.000Z (almost 3 years ago)
- Last Synced: 2024-12-14T17:40:34.369Z (2 months 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;
```