mono-light
This commit is contained in:
parent
6f3228661a
commit
3d692cf6f3
11 changed files with 60 additions and 3 deletions
|
@ -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
|
||||
|
|
1
.config/nvim/pack/plugins/start/paige
Submodule
1
.config/nvim/pack/plugins/start/paige
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 0d72c3814da3cc01d4435deaa6168fa913c694fd
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
6
.config/themer/themes/mono-light.sh
Normal file
6
.config/themer/themes/mono-light.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
export background=ffffff
|
||||
export backgroundish=cccccc
|
||||
export foreground=000000
|
||||
export foregroundish=333333
|
||||
export dark=false
|
|
@ -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"
|
||||
|
|
|
@ -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
3
.gitmodules
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue