zeus-theme 0.4.0

Themes for egui
Documentation
# zeus-theme

# Theme color styling for egui

Available themes:
- Dark
- Tokyo Night

## This crate is still being actively developed, there will be breaking changes either to some apis or to the theme specs.

# Usage:

``` rust
use egui::Context;
use zeus_theme::{Theme, ThemeKind};

let theme = Theme::new(ThemeKind::Dark);
egui_ctx.set_style(theme.style.clone());

```

# Feature Flags

`serde` enables serialization.