switch to nord theme
parent
30c3980322
commit
3cb48207e0
|
@ -185,40 +185,40 @@ font:
|
|||
# If `true`, bold text is drawn using the bright color variants.
|
||||
#draw_bold_text_with_bright_colors: true
|
||||
|
||||
# Base16 Gruvbox dark, hard - alacritty color config
|
||||
# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
|
||||
# Base16 Nord - alacritty color config
|
||||
# arcticicestudio
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x1d2021'
|
||||
foreground: '0xd5c4a1'
|
||||
background: '0x2e3440'
|
||||
foreground: '0xe5e9f0'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
cursor:
|
||||
text: '0x1d2021'
|
||||
cursor: '0xd5c4a1'
|
||||
text: '0x2e3440'
|
||||
cursor: '0xe5e9f0'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x1d2021'
|
||||
red: '0xfb4934'
|
||||
green: '0xb8bb26'
|
||||
yellow: '0xfabd2f'
|
||||
blue: '0x83a598'
|
||||
magenta: '0xd3869b'
|
||||
cyan: '0x8ec07c'
|
||||
white: '0xd5c4a1'
|
||||
black: '0x2e3440'
|
||||
red: '0xbf616a'
|
||||
green: '0xa3be8c'
|
||||
yellow: '0xebcb8b'
|
||||
blue: '0x81a1c1'
|
||||
magenta: '0xb48ead'
|
||||
cyan: '0x88c0d0'
|
||||
white: '0xe5e9f0'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x665c54'
|
||||
red: '0xfe8019'
|
||||
green: '0x3c3836'
|
||||
yellow: '0x504945'
|
||||
blue: '0xbdae93'
|
||||
magenta: '0xebdbb2'
|
||||
cyan: '0xd65d0e'
|
||||
white: '0xfbf1c7'
|
||||
black: '0x4c566a'
|
||||
red: '0xd08770'
|
||||
green: '0x3b4252'
|
||||
yellow: '0x434c5e'
|
||||
blue: '0xd8dee9'
|
||||
magenta: '0xeceff4'
|
||||
cyan: '0x5e81ac'
|
||||
white: '0x8fbcbb'
|
||||
|
||||
draw_bold_text_with_bright_colors: false
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
#generated from: ./colors/base16-gruvbox-dark-hard
|
||||
export BEMENU_OPTS="-H 22 --nb #1d2021 --nf #fabd2f --hb #1d2021 --hf #ebdbb2 --sb #3c3836 --sf #ebdbb2 --tb #1d2021 --tf #fabd2f --fb #1d2021 --ff #ffffff"
|
||||
#generated from: /home/alex/.config/bemenu/colors/base16-nord
|
||||
export BEMENU_OPTS="-H 22 --nb #2E3440 --nf #EBCB8B --hb #2E3440 --hf #ECEFF4 --sb #3B4252 --sf #ECEFF4 --tb #2E3440 --tf #EBCB8B --fb #2E3440 --ff #ffffff"
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
#1d2021
|
||||
#3c3836
|
||||
#504945
|
||||
#665c54
|
||||
#bdae93
|
||||
#d5c4a1
|
||||
#ebdbb2
|
||||
#fbf1c7
|
||||
#fb4934
|
||||
#fe8019
|
||||
#fabd2f
|
||||
#b8bb26
|
||||
#8ec07c
|
||||
#83a598
|
||||
#d3869b
|
||||
#d65d0e
|
|
@ -0,0 +1,16 @@
|
|||
#2E3440
|
||||
#3B4252
|
||||
#434C5E
|
||||
#4C566A
|
||||
#D8DEE9
|
||||
#E5E9F0
|
||||
#ECEFF4
|
||||
#8FBCBB
|
||||
#BF616A
|
||||
#D08770
|
||||
#EBCB8B
|
||||
#A3BE8C
|
||||
#88C0D0
|
||||
#81A1C1
|
||||
#B48EAD
|
||||
#5E81AC
|
|
@ -230,7 +230,9 @@ bindsym $mod+shift+s exec ss.sh -s
|
|||
#include ~/.config/sway/colors/base16-atlas
|
||||
#include ~/.local/src/base16-sway/themes/base16-gruvbox-dark-medium.config
|
||||
#include ~/.local/src/base16-sway/themes/base16-atlas.config
|
||||
include ~/.local/src/base16-sway/themes/base16-gruvbox-dark-hard.config
|
||||
#include ~/.local/src/base16-sway/themes/base16-gruvbox-dark-hard.config
|
||||
include ~/.local/src/base16-sway/themes/base16-nord.config
|
||||
|
||||
|
||||
#
|
||||
# Status Bar:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
#default startup file is defined, redefinable by second argument
|
||||
FILENAME="$HOME/.local/init/startup"
|
||||
[ -f "$2" ] && FILENAME="$1"
|
||||
[ -f "$2" ] && FILENAME="$2"
|
||||
|
||||
close() {
|
||||
while read CMD
|
||||
|
|
Loading…
Reference in New Issue