Metadata-Version: 2.4
Name: textual-nerv
Version: 0.1.2
Summary: NERV theme for Textual applications - Evangelion-inspired aesthetic
Project-URL: Homepage, https://github.com/willemt/textual-nerv
Project-URL: Repository, https://github.com/willemt/textual-nerv
Author: Willem
License-Expression: MIT
License-File: LICENSE
Keywords: evangelion,nerv,terminal,textual,theme,tui
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Terminals
Requires-Python: >=3.8
Requires-Dist: textual>=0.40.0
Description-Content-Type: text/markdown

![Example](example.png)

# textual-nerv

NERV theme for Textual applications - an Evangelion-inspired orange/black military aesthetic.

## Installation

```bash
pip install textual-nerv
```

## Usage

```python
from textual.app import App
from textual_nerv import nerv

class MyApp(App):
    def on_mount(self) -> None:
        self.register_theme(nerv)
        self.theme = "nerv"
```

## License

MIT
