28 lines
703 B
Nix
28 lines
703 B
Nix
{
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake = {
|
|
theme = inputs.themes.custom {
|
|
"name" = "burn";
|
|
"author" = "b12f";
|
|
"base00" = "#1a181a"; # black
|
|
"base01" = "#2d2a2e"; # red
|
|
"base02" = "#303030"; # green
|
|
"base03" = "#949494"; # olive
|
|
"base04" = "#d3d1d4"; # navy
|
|
"base05" = "#e3e1e4"; # purple
|
|
"base06" = "#303030"; # teal
|
|
"base07" = "#ff5f5f"; # silver
|
|
"base08" = "#f85e84"; # grey
|
|
"base09" = "#df5923"; # red
|
|
"base0A" = "#e5c463"; # lime
|
|
"base0B" = "#9ecd6f"; # yellow
|
|
"base0C" = "#ef9062"; # blue
|
|
"base0D" = "#7accd7"; # fuchsia
|
|
"base0E" = "#ab9df2"; # aqua
|
|
"base0F" = "#d70000"; # white
|
|
};
|
|
};
|
|
}
|