pub(super) mod default;
pub(super) mod gruvbox;
pub(super) mod nord;
macro_rules! color {
($value:expr) => {
tui::style::Style::new().fg($value)
};
}
macro_rules! hex {
($value:literal) => {
tui::style::Style::new().fg(crate::options::config::style::utils::try_hex_to_colour(
$value.into(),
)
.expect("valid hex"))
};
}
macro_rules! hex_colour {
($value:literal) => {
crate::options::config::style::utils::try_hex_to_colour($value.into()).expect("valid hex")
};
}
pub(super) use color;
pub(super) use hex;
pub(super) use hex_colour;