https://github.com/mtmeyer/artizan
https://github.com/mtmeyer/artizan
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mtmeyer/artizan
- Owner: mtmeyer
- Created: 2022-04-13T14:12:20.000Z (about 4 years ago)
- Default Branch: release
- Last Pushed: 2022-04-17T04:42:01.000Z (about 4 years ago)
- Last Synced: 2025-02-16T13:27:44.659Z (over 1 year 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;
```