summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/Sensor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Sensor.hs b/app/Sensor.hs
index 7371c31..d0b8a0c 100644
--- a/app/Sensor.hs
+++ b/app/Sensor.hs
@@ -505,7 +505,7 @@ instance P.Pretty [Workspace] where
instance P.Pretty Workspace where
pretty (Active s) = P.color P.White (P.pretty s)
- pretty (Inactive s) = P.colorDull P.White (P.pretty s)
+ pretty (Inactive s) = P.color P.Cyan (P.pretty s)
(<$$>) :: (Functor f, Functor g) => (a -> b) -> f (g a) -> f (g b)
f <$$> x = fmap f <$> x