cursive/src/theme/effect.rs
2018-01-08 16:11:12 +01:00

16 lines
348 B
Rust

enum_set_type! {
/// Text effect
pub enum Effect {
/// No effect
Simple,
/// Reverses foreground and background colors
Reverse,
/// Prints foreground in bold
Bold,
/// Prints foreground in italic
Italic,
/// Prints foreground with underline
Underline,
}
}