Color tweaks

lightmode
E. Almqvist 3 years ago
parent b585cbe603
commit 9a5497b11e
  1. 64
      alacritty/.config/alacritty/alacritty.yml
  2. 2
      nvim/.config/nvim/init.vim
  3. 4
      vim/.vimrc
  4. 2
      zsh/.zshrc

@ -27,7 +27,7 @@ font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Space Mono family: IBM Plex Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Regular style: Regular
@ -35,7 +35,7 @@ font:
# Bold font face # Bold font face
bold: bold:
family: Space Mono family: IBM Plex Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold style: Bold
@ -48,13 +48,13 @@ font:
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Space Mono family: IBM Plex Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
# Point size # Point size
size: 10 size: 11
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -66,28 +66,46 @@ font:
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
# Colors # Colors
#colors:
# primary:
# background: '0x272a34'
# foreground: '0xFFFFFF'
# normal:
# black: '0x1F2229'
# red: '0xEC0101'
# green: '0x47D4B9'
# yellow: '0xFF8A18'
# blue: '0x277FFF'
# magenta: '0xD71655'
# cyan: '0x05A1F7'
# white: '0xFFFFFF'
# bright:
# black: '0x1F2229'
# red: '0xD41919'
# green: '0x5EBDAB'
# yellow: '0xFEA44C'
# blue: '0x367bf0'
# magenta: '0xBF2E5D'
# cyan: '0x49AEE6'
# white: '0xFFFFFF'
# Colors (Doom One)
colors: colors:
# Default colors
primary: primary:
background: '0x272a34' background: '0x282c34'
foreground: '0xFFFFFF' foreground: '0xbbc2cf'
# Normal colors
normal: normal:
black: '0x1F2229' black: '0x282c34'
red: '0xEC0101' red: '0xff6c6b'
green: '0x47D4B9' green: '0x98be65'
yellow: '0xFF8A18' yellow: '0xecbe7b'
blue: '0x277FFF' blue: '0x51afef'
magenta: '0xD71655' magenta: '0xc678dd'
cyan: '0x05A1F7' cyan: '0x46d9ff'
white: '0xFFFFFF' white: '0xbbc2cf'
bright:
black: '0x1F2229'
red: '0xD41919'
green: '0x5EBDAB'
yellow: '0xFEA44C'
blue: '0x367bf0'
magenta: '0xBF2E5D'
cyan: '0x49AEE6'
white: '0xFFFFFF'
cursor: cursor:
# Values for `style`: # Values for `style`:

@ -64,7 +64,7 @@ let g:ruby_recommended_style = 0
set clipboard+=unnamedplus set clipboard+=unnamedplus
" Theme " Theme
colors deep-space colors hybrid_material
let &showbreak = '↳ ' let &showbreak = '↳ '
" set laststatus=0 ruler " set laststatus=0 ruler

@ -31,7 +31,7 @@ vmap <Tab> >gv
vmap <S-Tab> <gv vmap <S-Tab> <gv
syntax on syntax on
set nu rnu "set nu rnu
set ruler "set ruler
colors koehler colors koehler

@ -106,7 +106,7 @@ alias ls="exa --icons"
source $ZSH/aliases.sh source $ZSH/aliases.sh
export TERM='xterm-256color' export TERM='xterm-256color'
export PATH="$HOME/.scripts:$PATH" # Add custom scripts! export PATH="$HOME/.scripts:$HOME/.cargo/bin:$PATH" # Add custom scripts!
# Program defaults # Program defaults
export VIDPLAY=vlc export VIDPLAY=vlc

Loading…
Cancel
Save