mono-light

This commit is contained in:
Cat /dev/Nulo 2021-11-21 19:10:05 -03:00
parent 6f3228661a
commit 3d692cf6f3
11 changed files with 60 additions and 3 deletions

View file

@ -10,7 +10,7 @@ set updatetime=250
set termguicolors
" colorscheme rose-pine
colorscheme yami
colorscheme paige
" autocmd ColorScheme * highlight! Normal guibg=NONE
set completeopt=menu,menuone,noselect

@ -0,0 +1 @@
Subproject commit 0d72c3814da3cc01d4435deaa6168fa913c694fd

View file

@ -56,7 +56,32 @@ rose_pine () {
" >> ~/.config/foot/foot.ini
}
mono () {
echo "include = /usr/share/foot/themes/tango" >> ~/.config/foot/foot.ini
if $dark; then
echo "include = /usr/share/foot/themes/tango" >> ~/.config/foot/foot.ini
else
echo "
[colors]
foreground=000000
background=ffffff
regular0=ffffff # black (or white in a bright theme)
regular1=7f1010 # red
regular2=009A57 # green
regular3=813e00 # yellow
regular4=0186C7 # blue
regular5=721045 # magenta
regular6=00538b # cyan
regular7=000000 # white (or black in a bright theme)
bright0=e4e4e4
bright1=ff8686
bright2=bcd2aa
bright3=989838
bright4=00AEFF
bright5=8888CC
bright6=4FA8A8
bright7=000000" >> ~/.config/foot/foot.ini
fi
}
if test "$1" = rose-pine; then
@ -69,6 +94,10 @@ elif test "$1" = rose-pine-moon; then
. ~/.config/themer/themes/rose-pine-moon.sh
rose_pine
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then

View file

@ -38,6 +38,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then
echo "I don't know that theme"

View file

@ -31,6 +31,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
dark_light
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
dark_light
else
if test -n "$1"; then
echo "I don't know that theme"

View file

@ -29,6 +29,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then
echo "I don't know that theme"

View file

@ -24,7 +24,7 @@ mono () {
echo "
export background=$background
export border_focused=$foreground
export border_unfocused=$foregroundish
export border_unfocused=$backgroundish
export dark=$dark
" >> ~/.config/river/colors
}
@ -41,6 +41,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then
echo "I don't know that theme"

View file

@ -0,0 +1,6 @@
#!/bin/sh
export background=ffffff
export backgroundish=cccccc
export foreground=000000
export foregroundish=333333
export dark=false

View file

@ -30,6 +30,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then
echo "I don't know that theme"

View file

@ -28,6 +28,9 @@ elif test "$1" = rose-pine-moon; then
elif test "$1" = mono; then
. ~/.config/themer/themes/mono.sh
mono
elif test "$1" = mono-light; then
. ~/.config/themer/themes/mono-light.sh
mono
else
if test -n "$1"; then
echo "I don't know that theme"

3
.gitmodules vendored
View file

@ -31,3 +31,6 @@
[submodule ".config/nvim/pack/plugins/start/vim-yami"]
path = .config/nvim/pack/plugins/start/vim-yami
url = https://github.com/danishprakash/vim-yami
[submodule ".config/nvim/pack/plugins/start/paige"]
path = .config/nvim/pack/plugins/start/paige
url = https://git.sr.ht/~leon_plickat/paige