From 4d1784f2de104b88e998216addaae96ab018f44f Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Sat, 4 May 2024 14:22:51 -0700 Subject: [PATCH] feat: re-export ParseColorError as style::ParseColorError (#1086) Fixes: https://github.com/ratatui-org/ratatui/issues/1085 --- src/style.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.rs b/src/style.rs index 0177f1e7..cfa740a7 100644 --- a/src/style.rs +++ b/src/style.rs @@ -75,7 +75,7 @@ use bitflags::bitflags; mod color; mod stylize; -pub use color::Color; +pub use color::{Color, ParseColorError}; pub use stylize::{Styled, Stylize}; pub mod palette;