maycoon_theme/lib.rs
1#![warn(missing_docs)]
2
3//! Theme/Styling library for Maycoon => See `maycoon` crate.
4//!
5//! Contains themes and widget styles.
6
7/// Contains the [`globals::Globals`] struct.
8pub mod globals;
9/// Contains the [`id::WidgetId`] struct.
10pub mod id;
11/// Contains styling structures.
12pub mod style;
13/// Contains the [`theme::Theme`] trait and built-in themes.
14pub mod theme;