cursive/src/theme/effect.rs

16 lines
348 B
Rust
Raw Normal View History

2018-01-08 15:11:12 +00:00
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,
}
}