35 lines
947 B
Lua
35 lines
947 B
Lua
|
-- Author : swytch
|
||
|
-- Created : Friday Oct. 22, 2021 22:04:40 CET
|
||
|
-- License : GPLv3
|
||
|
-- Description : dark theme colors file
|
||
|
|
||
|
|
||
|
local M = {
|
||
|
-- dark
|
||
|
black = "#131616",
|
||
|
darkred = "#b73935",
|
||
|
darkgreen = "#427d61",
|
||
|
orange = "#f7a583",
|
||
|
darkblue = "#458588",
|
||
|
darkmagenta = "#b16286",
|
||
|
darkcyan = "#7cafa3",
|
||
|
grey = "#a89984",
|
||
|
|
||
|
-- light
|
||
|
darkgrey = "#373737",
|
||
|
red = "#ea6962",
|
||
|
green = "#89b482",
|
||
|
yellow = "#ffeca3",
|
||
|
blue = "#7daea3",
|
||
|
magenta = "#d3869b",
|
||
|
cyan = "#ace5d7",
|
||
|
white = "#fbf1c7",
|
||
|
|
||
|
background = "#131616",
|
||
|
background_alt = "#373737",
|
||
|
foreground = "#fbf1c7",
|
||
|
foreground_alt = "#a89984",
|
||
|
}
|
||
|
|
||
|
return M
|