summaryrefslogtreecommitdiff
path: root/lib/xmonad.hs
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-12-22 13:33:19 -0500
committerBen Sima <ben@bensima.com>2025-12-22 13:33:19 -0500
commit107061ad599d85783490885e912ee9cf01633be1 (patch)
tree012b5d9f81ec09dc6cd9aff4808653fd141af0cf /lib/xmonad.hs
parent8d9eb8fa8a20efa4c4318fccef97d21fe91fb092 (diff)
Apply ef-dream theme across all config
- theme.nix: Replace base16/spacemacs with ef-dream/ef-reverie palettes - xmonad.hs: Update border colors to ef-dream - common.nix: Update fzf, starship, tmux, bat colors to ef-dream - Xresources generated from ef-dream palette
Diffstat (limited to 'lib/xmonad.hs')
-rw-r--r--lib/xmonad.hs14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/xmonad.hs b/lib/xmonad.hs
index b008119..3903671 100644
--- a/lib/xmonad.hs
+++ b/lib/xmonad.hs
@@ -55,18 +55,20 @@ data Colors = Colors
highlight :: String
}
+-- ef-reverie (light companion to ef-dream)
lightTheme =
Colors
- { highlight = "#67b11d",
- background = "#f6f1e1",
- foreground = "#655370"
+ { highlight = "#7f5ae0",
+ background = "#f3eddf",
+ foreground = "#4f204f"
}
+-- ef-dream colors
darkTheme =
Colors
- { highlight = "#5d4d7a",
- background = "#292b2e",
- foreground = "#b2b2b2"
+ { highlight = "#d0b0ff",
+ background = "#232025",
+ foreground = "#efd5c5"
}
getColorsFromXtheme :: IO Colors