Files
nvim/lua/colors.lua

64 lines
1.4 KiB
Lua
Raw Normal View History

2022-03-03 13:52:43 -05:00
-----------------------------------------------------------
-- Color schemes configuration file
-----------------------------------------------------------
-- Import color scheme with:
--- require('colors').colorscheme_name
local M = {}
2022-03-15 14:37:10 -04:00
M.dracula_nvim = {
bg = '#282A36',
fg = '#F8F8F2',
selection = '#44475A',
comment = '#6272A4',
red = '#FF5555',
orange = '#FFB86C',
yellow = '#F1FA8C',
green = '#50fa7b',
purple = '#BD93F9',
cyan = '#8BE9FD',
pink = '#FF79C6',
bright_red = '#FF6E6E',
bright_green = '#69FF94',
bright_yellow = '#FFFFA5',
bright_blue = '#D6ACFF',
bright_magenta = '#FF92DF',
bright_cyan = '#A4FFFF',
bright_white = '#FFFFFF',
menu = '#21222C',
visual = '#3E4452',
gutter_fg = '#4B5263',
nontext = '#3B4048',
}
2022-03-03 13:52:43 -05:00
-- Theme: Monokai
M.monokai = {
bg = '#202328', --default: #272a30
fg = '#f8f8f0',
pink = '#f92672',
green = '#a6e22e',
cyan = '#66d9ef',
yellow = '#e6db74',
orange = '#fd971f',
purple = '#ae81ff',
red = '#e95678',
}
-- Theme: Rosé Pine (main)
--- See: https://github.com/rose-pine/neovim/blob/main/lua/rose-pine/palette.lua
--- color names are adapted to the format above
M.rose_pine = {
bg = '#111019', --default: #191724
fg = '#e0def4',
gray = '#908caa',
pink = '#eb6f92',
green = '#9ccfd8',
cyan = '#31748f',
yellow = '#f6c177',
orange = '#2a2837',
purple = '#c4a7e7',
red = '#ebbcba',
}
return M