feat: add custom theme 'peel-enhanced'

This commit is contained in:
Simon Lasbrugnas 2024-04-19 03:20:40 +02:00
parent 87b571752a
commit 3fd3e0b6bf
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE
2 changed files with 103 additions and 7 deletions

100
colors/peel-enhanced.vim Normal file
View file

@ -0,0 +1,100 @@
"########################################
"########################################
" Peel Contrast (rainglow)
"
" https://github.com/rainglow/vim
"
" Copyright (c) Dayle Rees.
"########################################
"########################################
"########################################
"# Settings. #
"########################################
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "peel-contrast"
"########################################
"# Base Colors. #
"########################################
hi Cursor guifg=#0c0b0a guibg=#f8f8f0 gui=NONE
hi Visual guifg=#ffffff guibg=#d3643b gui=NONE
hi CursorLine guifg=NONE guibg=#141311 gui=NONE
hi CursorLineNr guifg=#5f5750 guibg=NONE gui=NONE
hi CursorColumn guifg=NONE guibg=NONE gui=NONE
hi ColorColumn guifg=NONE guibg=NONE gui=NONE
hi LineNr guifg=#282421 guibg=NONE gui=NONE
hi VertSplit guifg=#282421 guibg=#282421 gui=NONE
hi MatchParen guifg=#d3643b guibg=NONE gui=NONE
hi StatusLine guifg=#edebe6 guibg=NONE gui=bold
hi StatusLineNC guifg=#edebe6 guibg=NONE gui=NONE
hi Pmenu guifg=#edebe6 guibg=NONE gui=NONE
hi PmenuSel guifg=NONE guibg=#94c7b6 gui=NONE
hi IncSearch guifg=#0c0b0a guibg=#f4d370 gui=NONE
hi Search guifg=NONE guibg=NONE gui=NONE
hi Directory guifg=#94c7b6 guibg=NONE gui=NONE
hi Folded guifg=#e2dfd7 guibg=NONE gui=NONE
hi Normal guifg=#d6e1c7 guibg=NONE gui=NONE
hi Boolean guifg=#f7b83d guibg=NONE gui=italic
hi Character guifg=#f4d370 guibg=NONE gui=NONE
hi Comment guifg=#585146 guibg=NONE gui=italic
hi Conditional guifg=#94c7b6 guibg=NONE gui=NONE
hi Constant guifg=NONE guibg=NONE gui=NONE
hi Define guifg=#94c7b6 guibg=NONE gui=NONE
hi DiffAdd guifg=#a7da1e guibg=NONE gui=NONE
hi DiffDelete guifg=#e61f44 guibg=NONE gui=NONE
hi DiffChange guifg=#f7b83d guibg=NONE gui=NONE
hi diffAdded guifg=#a7da1e guibg=NONE gui=NONE
hi diffRemoved guifg=#e61f44 guibg=NONE gui=NONE
hi diffChanged guifg=#f7b83d guibg=NONE gui=NONE
hi DiffText guifg=#f7b83d guibg=NONE gui=bold
hi ErrorMsg guifg=#36312d guibg=#e61f44 gui=NONE
hi WarningMsg guifg=#36312d guibg=#f7b83d gui=NONE
hi Float guifg=#f4d370 guibg=NONE gui=NONE
hi Function guifg=#94c7b6 guibg=NONE gui=NONE
hi Identifier guifg=#edebe6 guibg=NONE gui=NONE
hi Keyword guifg=#94c7b6 guibg=NONE gui=NONE
hi Label guifg=#f4d370 guibg=NONE gui=NONE
hi NonText guifg=#585146 guibg=NONE gui=NONE
hi Number guifg=#d3643b guibg=NONE gui=NONE
hi Operator guifg=#988c6f guibg=NONE gui=NONE
hi PreProc guifg=#837868 guibg=NONE gui=NONE
hi Special guifg=#edebe6 guibg=NONE gui=NONE
hi SpecialKey guifg=#edebe6 guibg=#94c7b6 gui=NONE
hi Statement guifg=#94c7b6 guibg=NONE gui=NONE
hi StorageClass guifg=#d3643b guibg=NONE gui=NONE
hi String guifg=#f4d370 guibg=NONE gui=NONE
hi Tag guifg=#94c7b6 guibg=NONE gui=NONE
hi Title guifg=#94c7b6 guibg=NONE gui=bold
hi Todo guifg=#837868 guibg=NONE gui=inverse,bold
hi Type guifg=NONE guibg=NONE gui=NONE
hi Underlined guifg=NONE guibg=NONE gui=underline
hi SignColumn guifg=#282421 guibg=NONE gui=NONE
"########################################
"# Tree-Sitter Overrides #
"########################################
hi @constant.builtin guifg=#f7b83d guibg=NONE gui=italic
hi @function.builtin guifg=#f7b83d guibg=NONE gui=italic
hi @punctuation.delimiter guifg=#988c6f guibg=NONE gui=NONE
"########################################
"# Language Overrides #
"########################################
hi phpIdentifier guifg=#edebe6
hi phpMethodsVar guifg=#c3bdb8
hi xmlTag guifg=#94c7b6 guibg=NONE gui=NONE
hi xmlTagName guifg=#94c7b6 guibg=NONE gui=NONE
hi xmlEndTag guifg=#94c7b6 guibg=NONE gui=NONE

View file

@ -12,10 +12,6 @@ if not vim.loop.fs_stat(lazypath) then
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ require("lazy").setup({{ import = "plugins" }})
{ import = "plugins" },
}, { vim.cmd([[colorscheme peel-enhanced]])
install = {
colorscheme = { "fleet" },
},
})