nvim: colors/yolokai: Switch to Starlight
Colour Palette taken from https://github.com/CosmicToast/starlight
This commit is contained in:
parent
3f245ac362
commit
b10f5e47e7
1 changed files with 14 additions and 31 deletions
|
@ -1,46 +1,29 @@
|
|||
lua << EOF
|
||||
--[[ Build using Highlite, a Neovim colorscheme template.
|
||||
* Author: Iron-E (https://github.com/Iron-E)
|
||||
* Repository: https://github.com/Iron-E/nvim-highlite
|
||||
|
||||
Rewrite of RNB, a Vim colorsheme template.
|
||||
* Author: Romain Lafourcade (https://github.com/romainl)
|
||||
* Canonical URL: https://github.com/romainl/vim-rnb
|
||||
|
||||
Yolokai colorscheme based on monokai/molokai with minor changes
|
||||
* Background is completely black. No washed out greyish backgrounds
|
||||
* Comment highlight is slightly different
|
||||
* Slightly different colors for errors, floating windows, quickfix
|
||||
line selection and such
|
||||
* Author: Sanchayan Maity (https://gitlab.com/SanchayanMaity)
|
||||
]]
|
||||
|
||||
vim.g.colors_name = 'yolokai'
|
||||
|
||||
local white = { '#ffffff', 252, 'white' }
|
||||
local white2 = { '#d8d8d3', 250, 'white2' }
|
||||
local white = { '#E6E6E6', 252, 'white' }
|
||||
local white2 = { '#FFFFFF', 250, 'white2' }
|
||||
local black = { '#000000', 234, 'black' }
|
||||
local lightblack = { '#2D2E27', 235, 'lightblack' }
|
||||
local lightblack2 = { '#383a3e', 236, 'lightblack2' }
|
||||
local lightblack3 = { '#3f4145', 237, 'lightblack3' }
|
||||
local lightblack = { '#181818', 235, 'lightblack' }
|
||||
local lightblack2 = { '#383A3E', 236, 'lightblack2' }
|
||||
local lightblack3 = { '#3F4145', 237, 'lightblack3' }
|
||||
local darkblack = { '#211F1C', 233, 'darkblack' }
|
||||
local grey = { '#8F908A', 243, 'grey' }
|
||||
local lightgrey = { '#575b61', 237, 'lightgrey' }
|
||||
local darkgrey = { '#64645e', 239, 'darkgrey' }
|
||||
local darkgrey = { '#64645E', 239, 'darkgrey' }
|
||||
local warmgrey = { '#A6A185', 59, 'warmgrey' }
|
||||
|
||||
local pink = { '#F92772', 197, 'pink' }
|
||||
local green = { '#A6E22D', 148, 'green' }
|
||||
local darkgreen = { '#50de60', 83, 'darkgreen' }
|
||||
local aqua = { '#66d9ef', 81, 'aqua' }
|
||||
local yellow = { '#E6DB74', 186, 'yellow' }
|
||||
local green = { '#3ECF5B', 148, 'green' }
|
||||
local darkgreen = { '#17E640', 83, 'darkgreen' }
|
||||
local aqua = { '#0BA6DA', 81, 'aqua' }
|
||||
local yellow = { '#CFCF17', 186, 'yellow' }
|
||||
local orange = { '#FD9720', 208, 'orange' }
|
||||
local purple = { '#ae81ff', 141, 'purple' }
|
||||
local red = { '#e73c50', 196, 'red' }
|
||||
local purered = { '#ff0000', 52, 'purered' }
|
||||
local darkred = { '#5f0000', 52, 'darkred' }
|
||||
local purple = { '#AE81FF', 141, 'purple' }
|
||||
local red = { '#CF1745', 196, 'red' }
|
||||
local purered = { '#FF0000', 52, 'purered' }
|
||||
local darkred = { '#FF1A53', 52, 'darkred' }
|
||||
|
||||
--[[ These are the ones you should edit. ]]
|
||||
-- This is the only highlight that must be defined separately.
|
||||
local highlight_group_normal = {bg=black, fg=white}
|
||||
|
||||
|
|
Loading…
Reference in a new issue