From e3a36a886d2ccdb30e1896fc19fea49f4ff2483a Mon Sep 17 00:00:00 2001 From: Mateus Auler Date: Fri, 15 Mar 2024 19:04:08 -0300 Subject: [PATCH] Fix warning when using textMateThemeFromScheme from lib-contrib --- lib/contrib/textmate-theme.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contrib/textmate-theme.nix b/lib/contrib/textmate-theme.nix index 094073e..172307c 100644 --- a/lib/contrib/textmate-theme.nix +++ b/lib/contrib/textmate-theme.nix @@ -45,7 +45,7 @@ let note: Supported types are: ${lib.concatStringsSep ", " (builtins.attrNames handlers)}. ''; - colorsDict = with scheme.colors; { + colorsDict = with scheme.palette; { name = "Generated base16 theme based on ${scheme.name}"; semanticClass = "theme.base16.${scheme.slug}"; colorSpaceName = "sRGB";