feat: daylight theme;

This commit is contained in:
Barrett Ruth 2025-11-08 17:35:03 -05:00
parent 8ccbd5380e
commit 7b1c699b28
3 changed files with 26 additions and 26 deletions

View file

@ -63,34 +63,31 @@ M.midnight = {
---@type Palette
M.daylight = {
black = '#000000',
grey = '#666666',
red = '#B22222',
green = '#228B22',
yellow = '#B8860B',
blue = '#27408B',
magenta = '#8B008B',
cyan = '#00BFFF',
white = '#ffffff',
black = '#f5f5f5',
red = '#c7254e',
green = '#2d7f3e',
yellow = '#996800',
blue = '#3b5bdb',
magenta = '#ae3ec9',
cyan = '#1098ad',
orange = '#d9730d',
white = '#1a1a1a',
bright_black = '#555555',
bright_red = '#ff0000',
bright_green = '#00ff00',
bright_yellow = '#ffa500',
bright_blue = '#0000ff',
bright_magenta = '#ff00ff',
bright_cyan = '#00ffff',
bright_white = '#ffffff',
bright_black = '#999999',
bright_red = '#e03e52',
bright_green = '#37b24d',
bright_yellow = '#f59f00',
bright_blue = '#4c6ef5',
bright_magenta = '#da77f2',
bright_cyan = '#15aabf',
bright_white = '#000000',
light_black = '#555555',
light_grey = '#ECECEC',
light_red = '#ff0000',
light_green = '#00ff00',
light_yellow = '#ffa500',
light_blue = '#0000ff',
light_magenta = '#ff00ff',
light_cyan = '#00ffff',
light_white = '#ffffff',
light_black = '#6b6b6b',
grey = '#d0d0d0',
med_grey = '#e8e8e8',
dark_grey = '#ebebeb',
medium_emphasis = '#666666',
}
---@return Palette