Function fltk::app::set_inactive_color

source ·
pub fn set_inactive_color(r: u8, g: u8, b: u8)
Expand description

Sets the app’s default selection color

Examples found in repository?
examples/temp_converter2.rs (line 79)
73
74
75
76
77
78
79
80
81
    fn init_styles() {
        app::set_scheme(app::Scheme::Gleam);
        app::set_background_color(170, 189, 206);
        app::set_background2_color(255, 255, 255);
        app::set_foreground_color(0, 0, 0);
        app::set_selection_color(255, 160, 63);
        app::set_inactive_color(130, 149, 166);
        app::set_font_size(16);
    }