From f5a6953e33df8cba86215842b35cb494c9ca0eb8 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 28 Nov 2023 14:27:39 +0300 Subject: [PATCH] Fix readme example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e15e07..5dbbec6 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ If you want to create your own theme based on an included theme, you can do this ```nix let myTheme = themes.custom (themes.raw.tango // { - base00 = "2E3436"; + base00 = "2E3436"; # Overriding the background color... accent = themes.raw.tango.base0A; # Custom properties also work! - }) + }); in {} ```