pub fn set_background2_color(r: u8, g: u8, b: u8)
Expand description

Set the background color for input and text widgets

Examples found in repository?
examples/temp_converter2.rs (line 76)
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);
    }