nvim and alacritty: onenord
This commit is contained in:
parent
af53c0ce53
commit
a46fd42e1e
@ -7,6 +7,112 @@ env:
|
|||||||
# Changed only to &dark and YAML &light labels
|
# Changed only to &dark and YAML &light labels
|
||||||
schemes:
|
schemes:
|
||||||
dark: &dark
|
dark: &dark
|
||||||
|
# Default colors
|
||||||
|
primary:
|
||||||
|
background: '#2E3440'
|
||||||
|
foreground: '#C8D0E0'
|
||||||
|
|
||||||
|
# Normal colors
|
||||||
|
normal:
|
||||||
|
black: '#3B4252'
|
||||||
|
red: '#BF616A'
|
||||||
|
green: '#A3BE8C'
|
||||||
|
yellow: '#EBCB8B'
|
||||||
|
blue: '#81A1C1'
|
||||||
|
magenta: '#B988B0'
|
||||||
|
cyan: '#88C0D0'
|
||||||
|
white: '#E5E9F0'
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
bright:
|
||||||
|
black: '#4C566A'
|
||||||
|
red: '#BF616A'
|
||||||
|
green: '#A3BE8C'
|
||||||
|
yellow: '#EBCB8B'
|
||||||
|
blue: '#81A1C1'
|
||||||
|
magenta: '#B988B0'
|
||||||
|
cyan: '#8FBCBB'
|
||||||
|
white: '#ECEFF4'
|
||||||
|
|
||||||
|
search:
|
||||||
|
matches:
|
||||||
|
foreground: '#81A1C1'
|
||||||
|
background: '#4C566A'
|
||||||
|
focused_match:
|
||||||
|
foreground: '#EBCB8B'
|
||||||
|
background: '#4C566A'
|
||||||
|
|
||||||
|
footer_bar:
|
||||||
|
background: '#434C5E'
|
||||||
|
foreground: '#88C0D0'
|
||||||
|
|
||||||
|
hints:
|
||||||
|
start:
|
||||||
|
foreground: '#B988B0'
|
||||||
|
background: '#4C566A'
|
||||||
|
|
||||||
|
end:
|
||||||
|
foreground: '#81A1C1'
|
||||||
|
background: '#4C566A'
|
||||||
|
|
||||||
|
selection:
|
||||||
|
text: CellForeground
|
||||||
|
background: '#3F4758'
|
||||||
|
|
||||||
|
light: &light
|
||||||
|
# Default colors
|
||||||
|
primary:
|
||||||
|
background: '#F7F8FA'
|
||||||
|
foreground: '#2E3440'
|
||||||
|
|
||||||
|
# Normal colors
|
||||||
|
normal:
|
||||||
|
black: '#2E3440'
|
||||||
|
red: '#CB4F53'
|
||||||
|
green: '#48A53D'
|
||||||
|
yellow: '#EE5E25'
|
||||||
|
blue: '#3879C5'
|
||||||
|
magenta: '#9F4ACA'
|
||||||
|
cyan: '#3EA1AD'
|
||||||
|
white: '#E5E9F0'
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
bright:
|
||||||
|
black: '#646A76'
|
||||||
|
red: '#D16366'
|
||||||
|
green: '#5F9E9D'
|
||||||
|
yellow: '#BA793E'
|
||||||
|
blue: '#1B40A6'
|
||||||
|
magenta: '#9665AF'
|
||||||
|
cyan: '#8FBCBB'
|
||||||
|
white: '#ECEFF4'
|
||||||
|
|
||||||
|
search:
|
||||||
|
matches:
|
||||||
|
foreground: '#3879C5'
|
||||||
|
background: '#646A76'
|
||||||
|
focused_match:
|
||||||
|
foreground: '#EE5E25'
|
||||||
|
background: '#646A76'
|
||||||
|
|
||||||
|
footer_bar:
|
||||||
|
background: '#DFE1E4'
|
||||||
|
foreground: '#3EA1AD'
|
||||||
|
|
||||||
|
hints:
|
||||||
|
start:
|
||||||
|
foreground: '#9665AF'
|
||||||
|
background: '#646A76'
|
||||||
|
|
||||||
|
end:
|
||||||
|
foreground: '#3879C5'
|
||||||
|
background: '#646A76'
|
||||||
|
|
||||||
|
selection:
|
||||||
|
text: CellForeground
|
||||||
|
background: '#EAEBED'
|
||||||
|
|
||||||
|
lupan-dark: &lupan-dark
|
||||||
primary:
|
primary:
|
||||||
background: '#2c393c'
|
background: '#2c393c'
|
||||||
foreground: '#b1babd'
|
foreground: '#b1babd'
|
||||||
@ -28,7 +134,7 @@ schemes:
|
|||||||
magenta: '#d4b8da'
|
magenta: '#d4b8da'
|
||||||
cyan: '#99cac4'
|
cyan: '#99cac4'
|
||||||
white: '#b9c3c5'
|
white: '#b9c3c5'
|
||||||
light: &light
|
lupan-light: &lupan-light
|
||||||
primary:
|
primary:
|
||||||
background: '#e9f2f5'
|
background: '#e9f2f5'
|
||||||
foreground: '#6d797c'
|
foreground: '#6d797c'
|
||||||
|
@ -6,11 +6,9 @@ return {
|
|||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
{
|
{
|
||||||
'rmehri01/onenord.nvim',
|
'rmehri01/onenord.nvim',
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd [[colorscheme onenord]]
|
vim.cmd.colorscheme("onenord")
|
||||||
end,
|
end
|
||||||
},
|
},
|
||||||
'neanias/everforest-nvim',
|
'neanias/everforest-nvim',
|
||||||
'bluz71/vim-nightfly-colors',
|
'bluz71/vim-nightfly-colors',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user