diff options
Diffstat (limited to '.config/alacritty/themes')
-rw-r--r-- | .config/alacritty/themes/doom-one-dark.yml | 2 | ||||
-rw-r--r-- | .config/alacritty/themes/dracula.yml | 4 | ||||
-rw-r--r-- | .config/alacritty/themes/fairyflossdark.yml | 32 | ||||
-rw-r--r-- | .config/alacritty/themes/molokai.yml | 34 |
4 files changed, 69 insertions, 3 deletions
diff --git a/.config/alacritty/themes/doom-one-dark.yml b/.config/alacritty/themes/doom-one-dark.yml index 54bda64..de3393f 100644 --- a/.config/alacritty/themes/doom-one-dark.yml +++ b/.config/alacritty/themes/doom-one-dark.yml @@ -4,7 +4,7 @@ colors: # Default colors primary: # background: '0x282c34' - background: '0x000000' + background: '0x100b13' foreground: '0xbbc2cf' # Normal colors diff --git a/.config/alacritty/themes/dracula.yml b/.config/alacritty/themes/dracula.yml index da2916d..7d9158b 100644 --- a/.config/alacritty/themes/dracula.yml +++ b/.config/alacritty/themes/dracula.yml @@ -1,7 +1,7 @@ colors: primary: # background: '0x282a36' - background: '0x000000' + background: '0x100b13' foreground: '0xf8f8f2' cursor: text: CellBackground @@ -26,7 +26,7 @@ colors: text: CellForeground background: '0x44475a' normal: - black: '0x000000' + black: '0x0e0a10' red: '0xff5555' green: '0x50fa7b' yellow: '0xf1fa8c' diff --git a/.config/alacritty/themes/fairyflossdark.yml b/.config/alacritty/themes/fairyflossdark.yml new file mode 100644 index 0000000..61ff9a7 --- /dev/null +++ b/.config/alacritty/themes/fairyflossdark.yml @@ -0,0 +1,32 @@ +# Colors (Molokai) +colors: + # Default colors + primary: + background: '0x42395d' + foreground: '0xf8f8f2' + + # Colors the cursor will use if `custom_cursor_colors` is true + # text: '0x' + # cursor: '0x' + + # Normal colors + normal: + black: '0x42395d' + red: '0xa8757b' + green: '0xff857f' + yellow: '0xe6c000' + blue: '0xae81ff' + magenta: '0x716799' + cyan: '0xc2ffdf' + white: '0xf8f8f2' + + # Bright colors + bright: + black: '0x75507b' + red: '0xffb8d1' + green: '0xf1568e' + yellow: '0xd5a425' + blue: '0xc5a3ff' + magenta: '0x8077a8' + cyan: '0xc2ffff' + white: '0xf8f8f0' diff --git a/.config/alacritty/themes/molokai.yml b/.config/alacritty/themes/molokai.yml new file mode 100644 index 0000000..b5bea8d --- /dev/null +++ b/.config/alacritty/themes/molokai.yml @@ -0,0 +1,34 @@ +# Colors (Molokai) +colors: + # Default colors + primary: + background: '0x151515' + foreground: '0xeaeaea' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x000000' + cursor: '0xffffff' + + # Normal colors + normal: + black: '0x121212' + red: '0xfa2573' + # green: '0x98e123' # Correct Molokai colour + green: '0x9cff00' # Better looking colour + yellow: '0xdfd460' + blue: '0x1080d0' + magenta: '0x8700ff' + cyan: '0x43a8d0' + white: '0xbbbbbb' + + # Bright colors + bright: + black: '0x555555' + red: '0xf6669d' + green: '0xb1e05f' + yellow: '0xfff26d' + blue: '0x00afff' + magenta: '0xaf87ff' + cyan: '0x51ceff' + white: '0xffffff' |