1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]

//! Cosmic theme library.
//!
//! Provides utilities for creating custom cosmic themes.
//!

pub use model::*;

mod model;

#[cfg(feature = "export")]
mod output;

/// composite colors in srgb
pub mod composite;
/// get color steps
pub mod steps;

/// name of cosmic theme
pub const NAME: &'static str = "com.system76.CosmicTheme";

pub use palette;