diff options
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index 34048b8d..817c6e1a 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -383,10 +383,10 @@ pub enum NamedColor { Foreground = 256, /// The background color Background, - /// The cursor foreground color - CursorForeground, - /// The cursor background color - CursorBackground, + /// Color for the text under the cursor + CursorText, + /// Color for the cursor itself + Cursor, } impl NamedColor { |