[alacritty] Change theme to Gruvbox

This commit is contained in:
2020-06-29 23:25:22 -04:00
parent 9981bc46c2
commit 86e66f5c01
2 changed files with 51 additions and 20 deletions

View File

@ -69,33 +69,64 @@ draw_bold_text_with_bright_colors: true
# white: '0xECEFF4' # white: '0xECEFF4'
# Colors (Blood Moon) # Colors (Blood Moon)
#colors:
# # Default colors
# primary:
# background: '0x10100E'
# foreground: '0xC6C6C4'
#
# # Normal colors
# normal:
# black: '0x10100E'
# red: '0xC40233'
# green: '0x009F6B'
# yellow: '0xFFD700'
# blue: '0x0087BD'
# magenta: '0x9A4EAE'
# cyan: '0x20B2AA'
# white: '0xC6C6C4'
#
# # Bright colors
# bright:
# black: '0x696969'
# red: '0xFF2400'
# green: '0x03C03C'
# yellow: '0xFDFF00'
# blue: '0x007FFF'
# magenta: '0xFF1493'
# cyan: '0x00CCCC'
# white: '0xFFFAFA'
# Colors (Gruvbox dark)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x10100E' # hard contrast: background = '#1d2021'
foreground: '0xC6C6C4' background: '#282828'
# soft contrast: background = '#32302f'
foreground: '#ebdbb2'
# Normal colors # Normal colors
normal: normal:
black: '0x10100E' black: '#282828'
red: '0xC40233' red: '#cc241d'
green: '0x009F6B' green: '#98971a'
yellow: '0xFFD700' yellow: '#d79921'
blue: '0x0087BD' blue: '#458588'
magenta: '0x9A4EAE' magenta: '#b16286'
cyan: '0x20B2AA' cyan: '#689d6a'
white: '0xC6C6C4' white: '#a89984'
# Bright colors # Bright colors
bright: bright:
black: '0x696969' black: '#928374'
red: '0xFF2400' red: '#fb4934'
green: '0x03C03C' green: '#b8bb26'
yellow: '0xFDFF00' yellow: '#fabd2f'
blue: '0x007FFF' blue: '#83a598'
magenta: '0xFF1493' magenta: '#d3869b'
cyan: '0x00CCCC' cyan: '#8ec07c'
white: '0xFFFAFA' white: '#ebdbb2'
visual_bell: visual_bell:
animation: EaseOutExpo animation: EaseOutExpo

View File

@ -32,9 +32,9 @@ however is that when you're trying your best to rice up i3, Emacs needs a padded
border. border.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
;; Applies to current frame ;; Applies to current frame
(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame ;(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
;; If we create new frames (via emacsclient) this will do the trick ;; If we create new frames (via emacsclient) this will do the trick
(add-to-list 'default-frame-alist '(internal-border-width . 10)) ;(add-to-list 'default-frame-alist '(internal-border-width . 10))
#+END_SRC #+END_SRC
** Fringe ** Fringe
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp