1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 11:31:09 +01:00

modularize colorscheming and more

This commit is contained in:
Kierán Meinhardt
2019-04-19 15:02:05 +02:00
parent a763c63de4
commit 7d6dbc2809
37 changed files with 483 additions and 496 deletions

View File

@@ -0,0 +1,15 @@
{
niveum.colours = {
black = { bright = "#444444"; dark = "#1c1c1c"; };
red = { bright = "#ff8700"; dark = "#af5f5f"; };
green = { bright = "#87af87"; dark = "#5f875f"; };
yellow = { bright = "#ffffaf"; dark = "#87875f"; };
blue = { bright = "#8fafd7"; dark = "#5f87af"; };
magenta = { bright = "#8787af"; dark = "#5f5f87"; };
cyan = { bright = "#5fafaf"; dark = "#5f8787"; };
white = { bright = "#999999"; dark = "#6c6c6c"; };
background = "#262626";
foreground = "#bcbcbc";
cursor = "#bcbcbc";
};
}