maycoon_theme/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]

//! Theme/Styling library for Maycoon => See `maycoon` crate.
//!
//! Contains themes and widget styles.

/// Contains the [globals::Globals] struct.
pub mod globals;
/// Contains the [id::WidgetId] struct.
pub mod id;
/// Contains styling structures.
pub mod style;
/// Contains the [theme::Theme] trait and built-in themes.
pub mod theme;