summaryrefslogtreecommitdiffstats
path: root/modules/plugins/mini/hues/hues.nix
blob: 060d0eca7835eda0e08855c0a6d252850ad918ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{lib, ...}: let
  inherit (lib.options) mkEnableOption mkOption;
  inherit (lib.nvim.types) mkPluginSetupOption;
  inherit (lib.nvim.types) hexColor;
in {
  options.vim.mini.hues = {
    enable = mkEnableOption "mini.hues";
    setupOpts = mkPluginSetupOption "mini.hues" {
      background = mkOption {
        description = "The hex color for the background color of the color scheme, prefixed with #";
        type = hexColor;
      };

      foreground = mkOption {
        description = "The hex color for the foreground color of the color scheme, prefixed with #";
        type = hexColor;
      };
    };
  };
}