Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,24 @@ Mirrow is a playground and production tooling for vector animators working with
- Animation, state, and styling live together.
- Output slots into your applications for a seemless adoption.

## How it flows 🌀

1. Sketch intent with Mirrow's domain-specific language.
2. Let the compiler translate it into production-ready components.
3. Drop the results into your production UI.

Whether it’s a logo that shifts on hover or a quick motion prototype, Mirrow keeps you focused on creating, not wiring up glue code.
```css
svg {
size: (150, 150)

rect {
at: (20, 20)
size: (100px, 100px) // px string now validated
radius: (8, 8)
stroke: #333
strokeWidth: 2
id: "box"
}

@hover {
#box { stroke: #0070f3; strokeWidth: 3 }
}
}
```

## Getting started 🚀

Expand Down