summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.Xresources76
-rw-r--r--.config/alacritty/alacritty.yml85
-rw-r--r--.config/neofetch/config.conf6
-rw-r--r--.config/nvim/init.vim7
4 files changed, 85 insertions, 89 deletions
diff --git a/.Xresources b/.Xresources
index 4fc49f1..40f1ebd 100644
--- a/.Xresources
+++ b/.Xresources
@@ -1,58 +1,24 @@
!!
!! ~/.Xresources
-!!
+!! Dracula Xresources palette
-! Common
-#define S_yellow #b58900
-#define S_orange #cb4b16
-#define S_red #dc322f
-#define S_magenta #d33682
-#define S_violet #6c71c4
-#define S_blue #268bd2
-#define S_cyan #2aa198
-#define S_green #859900
-
-! Dark
-#define S_base03 #002b36
-#define S_base02 #073642
-#define S_base01 #586e75
-#define S_base00 #657b83
-#define S_base0 #839496
-#define S_base1 #93a1a1
-#define S_base2 #eee8d5
-#define S_base3 #fdf6e3
-
-! Light
-! #define S_base03 #fdf6e3
-! #define S_base02 #eee8d5
-! #define S_base01 #93a1a1
-! #define S_base00 #839496
-! #define S_base0 #657b83
-! #define S_base1 #586e75
-! #define S_base2 #073642
-! #define S_base3 #002b36
-
-*background: S_base03
-*foreground: S_base0
-*fading: 40
-*fadeColor: S_base03
-*cursorColor: S_base1
-*pointerColorBackground: S_base01
-*pointerColorForeground: S_base1
-
-*color0: S_base02
-*color1: S_red
-*color2: S_green
-*color3: S_yellow
-*color4: S_blue
-*color5: S_magenta
-*color6: S_cyan
-*color7: S_base2
-*color9: S_orange
-*color8: S_base03
-*color10: S_base01
-*color11: S_base00
-*color12: S_base0
-*color13: S_violet
-*color14: S_base1
-*color15: S_base3
+*.foreground: #F8F8F2
+*.background: #282A36
+*.selforeground: #000000
+*.selbackground: #F1FA8C
+*.color0: #000000
+*.color8: #4D4D4D
+*.color1: #FF5555
+*.color9: #FF6E67
+*.color2: #50FA7B
+*.color10: #5AF78E
+*.color3: #F1FA8C
+*.color11: #F4F99D
+*.color4: #BD93F9
+*.color12: #CAA9FA
+*.color5: #FF79C6
+*.color13: #FF92D0
+*.color6: #8BE9FD
+*.color14: #9AEDFE
+*.color7: #BFBFBF
+*.color15: #E6E6E6
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index ec0406f..e1c962f 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -56,35 +56,62 @@ font:
draw_bold_text_with_bright_colors: true
-# Solarized dark
-colors:
- primary:
- background: '0x002b36' # base03
- foreground: '0x839496' # base0
-
- cursor:
- text: '0x002b36' # base03
- cursor: '0x839496' # base0
-
- normal:
- black: '0x073642' # base02
- red: '0xdc322f' # red
- green: '0x859900' # green
- yellow: '0xb58900' # yellow
- blue: '0x268bd2' # blue
- magenta: '0xd33682' # magenta
- cyan: '0x2aa198' # cyan
- white: '0xeee8d5' # base2
-
- bright:
- black: '0x002b36' # base03
- red: '0xcb4b16' # orange
- green: '0x586e75' # base01
- yellow: '0x657b83' # base00
- blue: '0x839496' # base0
- magenta: '0x6c71c4' # violet
- cyan: '0x93a1a1' # base1
- white: '0xfdf6e3' # base3
+schemes:
+ solarized_dark: &solarized_dark
+ primary:
+ background: '0x002b36' # base03
+ foreground: '0x839496' # base0
+
+ cursor:
+ text: '0x002b36' # base03
+ cursor: '0x839496' # base0
+
+ normal:
+ black: '0x073642' # base02
+ red: '0xdc322f' # red
+ green: '0x859900' # green
+ yellow: '0xb58900' # yellow
+ blue: '0x268bd2' # blue
+ magenta: '0xd33682' # magenta
+ cyan: '0x2aa198' # cyan
+ white: '0xeee8d5' # base2
+
+ bright:
+ black: '0x002b36' # base03
+ red: '0xcb4b16' # orange
+ green: '0x586e75' # base01
+ yellow: '0x657b83' # base00
+ blue: '0x839496' # base0
+ magenta: '0x6c71c4' # violet
+ cyan: '0x93a1a1' # base1
+ white: '0xfdf6e3' # base3
+
+ dracula: &dracula
+ primary:
+ background: '#282a36'
+ foreground: '#f8f8f2'
+
+ normal:
+ black: '#000000'
+ red: '#ff5555'
+ green: '#50fa7b'
+ yellow: '#f1fa8c'
+ blue: '#caa9fa'
+ magenta: '#ff79c6'
+ cyan: '#8be9fd'
+ white: '#bfbfbf'
+
+ bright:
+ black: '#575b70'
+ red: '#ff6e67'
+ green: '#5af78e'
+ yellow: '#f4f99d'
+ blue: '#caa9fa'
+ magenta: '#ff92d0'
+ cyan: '#9aedfe'
+ white: '#e6e6e6'
+
+colors: *dracula
visual_bell:
animation: EaseOutExpo
diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf
index 5e3dc9f..6930fa3 100644
--- a/.config/neofetch/config.conf
+++ b/.config/neofetch/config.conf
@@ -101,7 +101,8 @@ mpc_args=()
## Text Colors
# Each number represents a different part of the text in
# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
-colors=(4 6 1 32 2 6)
+# colors=(4 6 1 32 2 6)
+colors=(distro)
## Text Options
bold="on"
@@ -135,7 +136,8 @@ image_backend="ascii"
# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")'
image_source="auto"
ascii_distro="auto"
-ascii_colors=(33 33 64 64 37 37)
+# ascii_colors=(33 33 64 64 37 37)
+ascii_colors=(distro)
ascii_bold="on"
## Image Options
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 8ce4f18..b24377a 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -16,8 +16,9 @@ set showcmd
""---Loads plugins---""
call plug#begin('~/.config/nvim/plugged')
- " Colorscheme
+ " Color schemes
Plug 'altercation/vim-colors-solarized'
+ Plug 'dracula/vim'
" Other
Plug 'mboughaba/i3config.vim'
@@ -30,7 +31,7 @@ set showcmd
Plug 'vim-airline/vim-airline'
let g:airline_powerline_fonts=1
Plug 'vim-airline/vim-airline-themes'
- let g:airline_theme='solarized'
+ let g:airline_theme='dracula'
" Git
Plug 'Xuyuanp/nerdtree-git-plugin'
@@ -78,7 +79,7 @@ set showcmd
""---Basic configuration---""
syntax enable
set background=dark
- colorscheme solarized
+ colorscheme dracula
" Just so alacritty can use transparency.
hi Normal ctermbg=NONE
set encoding=utf-8