Skip to content

Commit cb86b44

Browse files
committed
LOL, swapped colors
1 parent 833e6e0 commit cb86b44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/list/state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ impl<'a> ListState<'a> {
178178
}
179179

180180
if exercise.done {
181-
stdout.queue(SetForegroundColor(Color::Yellow))?;
181+
stdout.queue(SetForegroundColor(Color::Green))?;
182182
stdout.write_all(b"DONE ")?;
183183
} else {
184-
stdout.queue(SetForegroundColor(Color::Green))?;
184+
stdout.queue(SetForegroundColor(Color::Yellow))?;
185185
stdout.write_all(b"PENDING ")?;
186186
}
187187

0 commit comments

Comments
 (0)