Link: https://github.com/nix-community/stylix/pull/1388 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
28 lines
432 B
Nix
28 lines
432 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "console";
|
|
humanName = "the Linux kernel console";
|
|
|
|
configElements =
|
|
{ colors }:
|
|
{
|
|
console.colors = with colors; [
|
|
base00-hex
|
|
red
|
|
green
|
|
yellow
|
|
blue
|
|
magenta
|
|
cyan
|
|
base05-hex
|
|
base03-hex
|
|
red
|
|
green
|
|
yellow
|
|
blue
|
|
magenta
|
|
cyan
|
|
base07-hex
|
|
];
|
|
};
|
|
}
|