small software-rendered rust tty
Diffstat (limited to 'src/term/cells.rs')
| -rw-r--r-- | src/term/cells.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/term/cells.rs b/src/term/cells.rs index 033bd52..45d9048 100644 --- a/src/term/cells.rs +++ b/src/term/cells.rs @@ -33,7 +33,8 @@ impl Debug for Cells { } pub const DSTYLE: Style = Style { bg: crate::colors::BACKGROUND, - color: crate::colors::FOREGROUND, + fg: crate::colors::FOREGROUND, + secondary_color: crate::colors::FOREGROUND, flags: 0, }; pub const DCELL: Cell = Cell { style: DSTYLE, letter: None }; |