pub fn make_purpose_mad_skin(skin: &StyleMap) -> MadSkin
Expand description

build a MadSkin which will be used to display the status when there’s no error

Examples found in repository?
src/skin/panel_skin.rs (line 21)
20
21
22
23
24
25
26
27
28
29
30
    pub fn new(styles: StyleMap) -> Self {
        let purpose_skin = make_purpose_mad_skin(&styles);
        let status_skin = StatusMadSkinSet::from_skin(&styles);
        let help_skin = make_help_mad_skin(&styles);
        Self {
            styles,
            purpose_skin,
            status_skin,
            help_skin,
        }
    }