Metadata-Version: 2.4
Name: grandlight
Version: 0.1.1
Summary: A modern GUI library featuring glassmorphism design aesthetics
Author-email: Rheehose <contact@rheecreative.com>
Maintainer-email: Rhee Creative <contact@rheecreative.com>
License: MIT
Project-URL: Homepage, https://github.com/hslcrb/grandlight
Project-URL: Documentation, https://github.com/hslcrb/grandlight#readme
Project-URL: Repository, https://github.com/hslcrb/grandlight
Project-URL: Bug Tracker, https://github.com/hslcrb/grandlight/issues
Keywords: gui,glassmorphism,ui,modern,design,graphics
Classifier: Development Status :: 3 - Alpha
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow>=9.0.0
Requires-Dist: numpy>=1.20.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=4.0.0; extra == "dev"
Requires-Dist: mypy>=0.950; extra == "dev"
Dynamic: license-file

# GrandLight ✨

> A modern Python GUI library featuring glassmorphism design aesthetics

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Python Version](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)

## Overview

**GrandLight** is a revolutionary GUI library that brings the elegant glassmorphism design trend to Python applications. With its frosted glass effects, transparency layers, and modern aesthetics, GrandLight enables developers to create stunning user interfaces that feel premium and contemporary.

## ✨ Features

- **🎨 Glassmorphism Design**: Built-in components with frosted glass aesthetics
- **🌈 Transparency Effects**: Beautiful blur and transparency layers
- **🎭 Modern UI Components**: Buttons, panels, windows, and more with glassmorphic styling
- **🚀 Easy to Use**: Simple, intuitive API for rapid development
- **🎯 Customizable**: Full control over colors, blur intensity, and transparency
- **⚡ Performance Optimized**: Efficient rendering for smooth animations
- **🔧 Extensible**: Build your own custom glassmorphic components

## 🚀 Quick Start

### Installation

```bash
pip install grandlight
```

### Basic Usage

```python
from grandlight import Window, GlassPanel, GlassButton

# Create a glassmorphic window
window = Window(title="My Glassmorphic App", size=(800, 600))

# Add a glass panel
panel = GlassPanel(
    blur=20,
    opacity=0.7,
    background_color=(255, 255, 255, 100)
)
window.add(panel)

# Add a glass button
button = GlassButton(
    text="Click Me",
    blur=15,
    opacity=0.8
)
panel.add(button)

# Run the application
window.run()
```

## 📚 Core Concepts

### Glassmorphism Properties

GrandLight components support the following glassmorphism properties:

- **`blur`**: Intensity of the backdrop blur effect (0-100)
- **`opacity`**: Transparency level (0.0-1.0)
- **`background_color`**: RGBA color tuple for the glass effect
- **`border_color`**: Optional border color for enhanced depth
- **`shadow`**: Soft shadow for floating effect

### Component Hierarchy

```
Window
  ├── GlassPanel
  │     ├── GlassButton
  │     ├── GlassLabel
  │     └── GlassInput
  ├── GlassNavBar
  └── GlassDialog
```

## 🎨 Styling Tips

For the best glassmorphism effects:

1. **Use subtle backgrounds**: Light gradients or blurred images work best
2. **Layer transparencies**: Stack multiple glass panels for depth
3. **Consistent blur values**: Keep blur intensity similar across components
4. **Soft colors**: Pastel or muted tones enhance the glass aesthetic
5. **Minimal borders**: Thin, light borders complement the frosted look

## 📖 Documentation

For comprehensive documentation, visit our [GitHub repository](https://github.com/hslcrb/grandlight).

## 🛠️ Requirements

- Python 3.8 or higher
- Pillow (PIL) for image processing
- NumPy for efficient array operations

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 👨‍💻 Author

**Rheehose (Rhee Creative)**  
Copyright © 2008-2026

## 🌟 Acknowledgments

Special thanks to the design community for inspiring the glassmorphism trend and making GUI development more beautiful.

## 📮 Contact

- GitHub: [@hslcrb](https://github.com/hslcrb)
- Issues: [Report a bug](https://github.com/hslcrb/grandlight/issues)

---

**Made with ❤️ by Rhee Creative**
