Crate fltk_theme[][src]

Expand description

fltk-theme

A theming crate for fltk-rs, based on work by Greg Ercolano.

Usage

[dependencies]
fltk = "1.1.3"
fltk-theme = "0.1"

Example

use fltk::{prelude::*, *};
use fltk_theme::{ColorTheme, color_themes};

let a = app::App::default().with_scheme(app::Scheme::Gtk);
let theme = ColorTheme::from_colormap(color_themes::BLACK_THEME);
theme.apply();
let mut win = window::Window::default().with_size(400, 300);
let mut btn = button::Button::new(160, 200, 80, 40, "Hello");
btn.set_color(btn.color().lighter());
win.end();
win.show();
a.run().unwrap();

Modules

Macros

Structs

Color map struct. (index, r, g, b)

A theme is just a Vec of colormaps