mirror of
https://github.com/danth/stylix
synced 2024-11-26 14:10:22 +00:00
9 lines
279 B
Nix
9 lines
279 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
# Generate a PNG image containing a named color
|
|
config.lib.stylix.pixel = color:
|
|
pkgs.runCommand "${color}-pixel.png" {
|
|
color = config.lib.stylix.colors.withHashtag.${color};
|
|
} "${pkgs.imagemagick}/bin/convert xc:$color png32:$out";
|
|
}
|