Implement inverting colors

This commit is contained in:
itsjunetime
2025-02-19 15:24:27 -07:00
parent 8c10a3c4bc
commit 9d2a730e40
5 changed files with 50 additions and 2 deletions
+1
View File
@@ -191,6 +191,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
to_converter.send(ConverterMsg::GoToPage(page))?;
},
InputAction::Search(term) => tui_tx.send(RenderNotif::Search(term))?,
InputAction::Invert => tui_tx.send(RenderNotif::Invert)?
}
}
},