Metadata-Version: 2.4
Name: omniblack-css
Version: 0.1.1
Summary: Add your description here
License-File: LICENSE
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# omniblack-css

A simple css generator using context managers.

## Example


```python

from omniblack.css import Sheet

with Sheet('./out.css') as sheet:
    with sheet.rule('.css-class'):
        sheet.property('color', 'purple')
```
