aboutsummaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cell.rs b/src/cell.rs
index baa99bb..240ddf9 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -118,13 +118,13 @@ impl Cell {
/// Returns the foreground color of the cell.
#[must_use]
- pub fn fgcolor(&self) -> crate::attrs::Color {
+ pub fn fgcolor(&self) -> crate::Color {
self.attrs.fgcolor
}
/// Returns the background color of the cell.
#[must_use]
- pub fn bgcolor(&self) -> crate::attrs::Color {
+ pub fn bgcolor(&self) -> crate::Color {
self.attrs.bgcolor
}