1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! Egui framework integration.
//!
//! Provides [`From<Color>`](crate::Color) for [`egui::Color32`] and a
//! convenience method on [`Theme`](crate::Theme).
//!
//! # Enable
//!
//! ```toml
//! [dependencies]
//! chromata = { version = "1", features = ["egui-integration"] }
//! ```
//!
//! # Example
//!
//! ```rust,ignore
//! use chromata::popular::gruvbox;
//!
//! let theme = gruvbox::DARK_HARD;
//! let bg: egui::Color32 = theme.bg.into();
//! let fg: egui::Color32 = theme.fg.into();
//! ```
//!
//! # Convenience
//!
//! ```rust,ignore
//! theme.apply_to_egui_visuals(&mut visuals);
//! // visuals.dark_mode, bg_fill, fg_stroke set from theme
//! ```
use crate::;
/// Convert a chromata Color to an egui Color32.