c329ff44d3
!!!WIP Based on my previous colorscheme (Polyjuice). The dark theme is the same, the light one is a rework of a previous attempt Scheme structure inspired by nebulous (https://github.com/Yagua/nebulous.nvim)
35 lines
948 B
Lua
35 lines
948 B
Lua
-- Author : swytch
|
|
-- Created : Friday Oct. 22, 2021 22:04:40 CET
|
|
-- License : GPLv3
|
|
-- Description : light theme colors file
|
|
|
|
|
|
local M = {
|
|
-- dark
|
|
black = "#1d2021",
|
|
darkred = "#9d0006",
|
|
darkgreen = "#427d61",
|
|
orange = "#d65d0e",
|
|
darkblue = "#076678",
|
|
darkmagenta = "#8f3f71",
|
|
darkcyan = "#4a8785",
|
|
grey = "#a89984",
|
|
|
|
-- light
|
|
darkgrey = "#373737",
|
|
red = "#b73935",
|
|
green = "#689d6a",
|
|
yellow = "#e1aa2a",
|
|
blue = "#458588",
|
|
magenta = "#b16286",
|
|
cyan = "#7cafa3",
|
|
white = "#fbf1c7",
|
|
|
|
background = "#fbf1c7",
|
|
background_alt = "#ebdbb2",
|
|
foreground = "#1d2021",
|
|
foreground_alt = "#665c64",
|
|
}
|
|
|
|
return M
|