test light theme

This commit is contained in:
Volodymyr Patuta 2023-01-23 21:51:04 +01:00
parent 03e56873bc
commit 27bac8f80e
3 changed files with 16 additions and 16 deletions

View File

@ -1,13 +1,13 @@
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system {
"git", 'git',
"clone", 'clone',
"--filter=blob:none", '--filter=blob:none',
"--single-branch", '--single-branch',
"https://github.com/folke/lazy.nvim.git", 'https://github.com/folke/lazy.nvim.git',
lazypath, lazypath,
}) }
end end
vim.opt.runtimepath:prepend(lazypath) vim.opt.runtimepath:prepend(lazypath)
@ -22,5 +22,5 @@ vim.api.nvim_create_autocmd('User', {
end, end,
}) })
vim.o.background = 'dark' vim.o.background = 'light'
vim.cmd 'colorscheme gruvbox' vim.cmd 'colorscheme gruvbox'

View File

@ -11,16 +11,16 @@ function M.config()
local feline = require 'feline' local feline = require 'feline'
local theme = { local theme = {
fg = '#abb2bf', fg = '#7c879c',
bg = '#282828', bg = '#efe2c3',
green = '#98c379', green = '#66cc66',
yellow = '#e5c07b', yellow = '#d5992a',
purple = '#c678dd', purple = '#c678dd',
orange = '#d19a66', orange = '#b17135',
peanut = '#f6d5a4', peanut = '#f6d5a4',
red = '#e06c75', red = '#e06c75',
aqua = '#61afef', aqua = '#61afef',
bg2 = '#504945', bg2 = '#dfce9f',
dark_red = '#f75f5f', dark_red = '#f75f5f',
} }

View File

@ -16,7 +16,7 @@ function M.config()
invert_tabline = false, invert_tabline = false,
invert_intend_guides = false, invert_intend_guides = false,
inverse = true, -- invert background for search, diffs, statuslines and errors inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = '', -- can be "hard", "soft" or empty string contrast = 'hard', -- can be "hard", "soft" or empty string
palette_overrides = {}, palette_overrides = {},
overrides = {}, overrides = {},
dim_inactive = false, dim_inactive = false,