Compare commits

...

3 commits

Author SHA1 Message Date
Sanchayan Maity f78e53ee7c
arch-packages: Update package list 2023-08-15 18:57:47 +05:30
Sanchayan Maity b10f5e47e7
nvim: colors/yolokai: Switch to Starlight
Colour Palette taken from
https://github.com/CosmicToast/starlight
2023-07-28 17:45:30 +05:30
Sanchayan Maity 3f245ac362
foot: Use the default colour scheme
foot switched to using Starlight as the default colour scheme. It
seems good so let's just use that.
https://github.com/CosmicToast/starlight
2023-07-28 17:45:29 +05:30
3 changed files with 18 additions and 54 deletions

View file

@ -152,6 +152,8 @@ gzip
hadolint-bin
haveged
hdparm
helix
hexyl
hotdoc
htop
hunspell-en_gb
@ -290,6 +292,7 @@ python
python-boto3
python-lxml
python-matplotlib
python-pandocfilters
python-pygments
qpdf
qt5-wayland

View file

@ -16,34 +16,12 @@ lines = 0
[cursor]
style = underline
color = 111111 dcdccc
color = 181818 cdcdcd
[mouse]
hide-when-typing = no
alternate-scroll-mode = no
[colors]
alpha = 0.8
foreground = dddddd
background = 000000
regular0 = 000000 # black
regular1 = cc0403 # red
regular2 = 19cb00 # green
regular3 = cecb00 # yellow
regular4 = 0d73cc # blue
regular5 = cb1ed1 # magenta
regular6 = 0dcdcd # cyan
regular7 = dddddd # white
bright0 = 767676 # bright black
bright1 = f2201f # bright red
bright2 = 23fd00 # bright green
bright3 = fffd00 # bright yellow
bright4 = 1a8fff # bright blue
bright5 = fd28ff # bright magenta
bright6 = 14ffff # bright cyan
bright7 = ffffff # bright white
[key-bindings]
scrollback-up-page = Page_Up
scrollback-down-page = Page_Down

View file

@ -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}