#[derive(Clone, Copy)]
pub struct Theme {
pub name: &'static str,
pub hour: &'static str,
pub minute: &'static str,
pub second: &'static str,
pub clock_face: &'static str,
}
pub const THEMES: [Theme; 7] = [
Theme {
name: "nord-frost",
hour: "#5E81AC",
minute: "#81A1C1",
second: "#88C0D0",
clock_face: "#8FBCBB",
},
Theme {
name: "nord-aurora",
hour: "#BF616A",
minute: "#D08770",
second: "#EBCB8B",
clock_face: "#B48EAD",
},
Theme {
name: "gruvbox-light",
hour: "#928374",
minute: "#a89984",
second: "#bdae93",
clock_face: "#d5c4a1",
},
Theme {
name: "gruvbox-dark",
hour: "#d5c4a1",
minute: "#bdae93",
second: "#a89984",
clock_face: "#928374",
},
Theme {
name: "monokai",
hour: "#66d9ef",
minute: "#ae81ff",
second: "#f92672",
clock_face: "#a6e22e",
},
Theme {
name: "lime-light",
hour: "#8da729",
minute: "#99b436",
second: "#a6c043",
clock_face: "#b3cd4f",
},
Theme {
name: "lime-dark",
hour: "#dbf474",
minute: "#cde768",
second: "#c0da5b",
clock_face: "#b3cd4f",
},
];