15 lines
284 B
Rust

use egui::Color32;
pub mod onedark;
//struct to store the colours used in a theme;
pub struct Theme {
pub bg: Color32,
pub fg: Color32,
pub opt1: Color32,
pub opt2: Color32,
pub opt3: Color32,
pub opt4: Color32,
pub opt5: Color32,
pub opt6: Color32
}