[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'
# 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:
# Default colors
primary:
background: '0x10100E'
foreground: '0xC6C6C4'
# hard contrast: background = '#1d2021'
background: '#282828'
# soft contrast: background = '#32302f'
foreground: '#ebdbb2'
# Normal colors
normal:
black: '0x10100E'
red: '0xC40233'
green: '0x009F6B'
yellow: '0xFFD700'
blue: '0x0087BD'
magenta: '0x9A4EAE'
cyan: '0x20B2AA'
white: '0xC6C6C4'
black: '#282828'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#a89984'
# Bright colors
bright:
black: '0x696969'
red: '0xFF2400'
green: '0x03C03C'
yellow: '0xFDFF00'
blue: '0x007FFF'
magenta: '0xFF1493'
cyan: '0x00CCCC'
white: '0xFFFAFA'
black: '#928374'
red: '#fb4934'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#8ec07c'
white: '#ebdbb2'
visual_bell:
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.
#+BEGIN_SRC emacs-lisp
;; 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
(add-to-list 'default-frame-alist '(internal-border-width . 10))
;(add-to-list 'default-frame-alist '(internal-border-width . 10))
#+END_SRC
** Fringe
#+BEGIN_SRC emacs-lisp