wireman-theme 0.3.5

Theme for wireman
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use wireman_theme::{Config, Theme};

fn main() {
    let file = String::from("assets/default.toml");
    Theme::init(&Config::new(Some(file)));

    let theme = Theme::global();
    println!("Theme base: {:?}", theme.base);
    println!(
        "Border type focused: {:?}",
        theme.border.border_type_focused
    );
    println!(
        "Border type unfocused: {:?}",
        theme.border.border_type_unfocused
    );
}