mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-22 16:31:26 +00:00
22 lines
585 B
Haskell
22 lines
585 B
Haskell
module DraculaTheme where
|
|
|
|
myTerminal = "alacritty"
|
|
myModKey = mod4Mask
|
|
myBorderWidth = 3
|
|
myNormalBorderColor = selectionColor
|
|
myFocusedBorderColor = commentColor
|
|
|
|
-- | Dracula Theme
|
|
backgroundColor = "#282a36"
|
|
currentLineColor = "#44475a"
|
|
selectionColor = "#44475a"
|
|
foregroundColor = "#f8f8f2"
|
|
commentColor = "#6272a4"
|
|
cyanColor = "#8be9fd"
|
|
greenColor = "#50fa7b"
|
|
orangeColor = "#ffb86c"
|
|
pinkColor = "#ff79c6"
|
|
purpleColor = "#bd93f9"
|
|
redColor = "#ff5555"
|
|
yellowColor = "#f1fa8c"
|