19 lines
408 B
Nix
19 lines
408 B
Nix
# Onedark palette (https://github.com/chriskempson/tomorrow-theme)
|
|
rec {
|
|
background = "#1d1f21";
|
|
currentLine = "#282a2e";
|
|
selection = "#373b41";
|
|
foreground = "#c5c8c6";
|
|
comment = "#969896";
|
|
red = "#cc6666";
|
|
orange = "#de935f";
|
|
yellow = "#f0c674";
|
|
green = "#b5bd68";
|
|
aqua = "#8abeb7";
|
|
blue = "#81a2be";
|
|
purple = "#b294bb";
|
|
|
|
black = background;
|
|
white = foreground;
|
|
cyan = aqua;
|
|
}
|