1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/colorschemes/mini-base16.nix
2025-11-02 14:37:11 +00:00

30 lines
673 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-base16";
moduleName = "mini.base16";
isColorscheme = true;
colorscheme = null;
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
palette = {
base00 = "#112641";
base01 = "#3a475e";
base02 = "#606b81";
base03 = "#8691a7";
base04 = "#d5dc81";
base05 = "#e2e98f";
base06 = "#eff69c";
base07 = "#fcffaa";
base08 = "#ffcfa0";
base09 = "#cc7e46";
base0A = "#46a436";
base0B = "#9ff895";
base0C = "#ca6ecf";
base0D = "#42f7ff";
base0E = "#ffc4ff";
base0F = "#00a5c5";
};
};
}