replace with in colors

This commit is contained in:
twoneis 2024-07-21 03:12:18 +02:00
parent 8c73ebaa9f
commit 15842977ad

View file

@ -1,7 +1,10 @@
{ lib, ... }: {
options = with lib; {
{ lib, ... }: let
inherit (lib) mkOption;
inherit (lib.types) attrsOf str;
in {
options = {
theme = mkOption {
type = with types; attrsOf str;
type = attrsOf str;
default = {
base = "#191724";
surface = "#1f1d2e";