a little ricing
This commit is contained in:
parent
448da283ee
commit
beb7d2def1
8 changed files with 166 additions and 82 deletions
48
modules/colors.nix
Normal file
48
modules/colors.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib; {
|
||||
options = {
|
||||
colors = {
|
||||
background = mkOption {
|
||||
type = types.str;
|
||||
default = "19181A";
|
||||
};
|
||||
foreground = mkOption {
|
||||
type = types.str;
|
||||
default = "FCFCFA";
|
||||
};
|
||||
black = mkOption {
|
||||
type = types.str;
|
||||
default = "19181A";
|
||||
};
|
||||
red = mkOption {
|
||||
type = types.str;
|
||||
default = "cc6666";
|
||||
};
|
||||
green = mkOption {
|
||||
type = types.str;
|
||||
default = "a9dc76";
|
||||
};
|
||||
yellow = mkOption {
|
||||
type = types.str;
|
||||
default = "ffd866";
|
||||
};
|
||||
cyan = mkOption {
|
||||
type = types.str;
|
||||
default = "78dce8";
|
||||
};
|
||||
magenta = mkOption {
|
||||
type = types.str;
|
||||
default = "FC9867";
|
||||
};
|
||||
blue = mkOption {
|
||||
type = types.str;
|
||||
default = "AB9DF2";
|
||||
};
|
||||
white = mkOption {
|
||||
type = types.str;
|
||||
default = "FCFCFA";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue