feat: daylight theme;
This commit is contained in:
parent
8ccbd5380e
commit
7b1c699b28
3 changed files with 26 additions and 26 deletions
2
colors/daylight.lua
Normal file
2
colors/daylight.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
vim.o.background = 'light'
|
||||||
|
require('midnight').load()
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
vim.o.background = 'dark'
|
||||||
require('midnight').load()
|
require('midnight').load()
|
||||||
|
|
|
||||||
|
|
@ -63,34 +63,31 @@ M.midnight = {
|
||||||
|
|
||||||
---@type Palette
|
---@type Palette
|
||||||
M.daylight = {
|
M.daylight = {
|
||||||
black = '#000000',
|
black = '#f5f5f5',
|
||||||
grey = '#666666',
|
red = '#c7254e',
|
||||||
red = '#B22222',
|
green = '#2d7f3e',
|
||||||
green = '#228B22',
|
yellow = '#996800',
|
||||||
yellow = '#B8860B',
|
blue = '#3b5bdb',
|
||||||
blue = '#27408B',
|
magenta = '#ae3ec9',
|
||||||
magenta = '#8B008B',
|
cyan = '#1098ad',
|
||||||
cyan = '#00BFFF',
|
orange = '#d9730d',
|
||||||
white = '#ffffff',
|
white = '#1a1a1a',
|
||||||
|
|
||||||
bright_black = '#555555',
|
bright_black = '#999999',
|
||||||
bright_red = '#ff0000',
|
bright_red = '#e03e52',
|
||||||
bright_green = '#00ff00',
|
bright_green = '#37b24d',
|
||||||
bright_yellow = '#ffa500',
|
bright_yellow = '#f59f00',
|
||||||
bright_blue = '#0000ff',
|
bright_blue = '#4c6ef5',
|
||||||
bright_magenta = '#ff00ff',
|
bright_magenta = '#da77f2',
|
||||||
bright_cyan = '#00ffff',
|
bright_cyan = '#15aabf',
|
||||||
bright_white = '#ffffff',
|
bright_white = '#000000',
|
||||||
|
|
||||||
light_black = '#555555',
|
light_black = '#6b6b6b',
|
||||||
light_grey = '#ECECEC',
|
grey = '#d0d0d0',
|
||||||
light_red = '#ff0000',
|
med_grey = '#e8e8e8',
|
||||||
light_green = '#00ff00',
|
dark_grey = '#ebebeb',
|
||||||
light_yellow = '#ffa500',
|
|
||||||
light_blue = '#0000ff',
|
medium_emphasis = '#666666',
|
||||||
light_magenta = '#ff00ff',
|
|
||||||
light_cyan = '#00ffff',
|
|
||||||
light_white = '#ffffff',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
---@return Palette
|
---@return Palette
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue