1
Fork 0
mirror of https://github.com/RGBCube/ThemeNix synced 2025-07-27 16:37:46 +00:00

Fix readme example

This commit is contained in:
RGBCube 2023-11-28 14:27:39 +03:00
parent 96f402df7f
commit f5a6953e33
No known key found for this signature in database

View file

@ -28,9 +28,9 @@ If you want to create your own theme based on an included theme, you can do this
```nix ```nix
let let
myTheme = themes.custom (themes.raw.tango // { myTheme = themes.custom (themes.raw.tango // {
base00 = "2E3436"; base00 = "2E3436"; # Overriding the background color...
accent = themes.raw.tango.base0A; # Custom properties also work! accent = themes.raw.tango.base0A; # Custom properties also work!
}) });
in {} in {}
``` ```