freechat/tui/src/common.rs
shockrah 43e3f93aad + Handful of useful macros/functions that are used basically everywhere
! There's no real order to these as they are mostly miscellaneous
2021-04-04 14:15:06 -07:00

14 lines
235 B
Rust

#[macro_export]
macro_rules! bold {
($text:expr) => {
Span::styled($text, Style::default().add_modifier(Modifier::BOLD))
}
}
#[macro_export]
macro_rules! normal {
($text:expr) => {
Span::raw($text)
}
}