From 7fde75417948ec33953a800addc8a3d475079324 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 27 Nov 2023 15:52:38 +0300 Subject: [PATCH] Add readme custom example --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ec2c316..4363290 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,19 @@ You don't need to pin anything since it doesn't depend on anything. Then you can use any theme you'd like by selecting an attribute, like `themes.gruvbox-dark-hard`. Then you can select a color by using base16 attributes, like `themes.gruvbox-dark-hard.base0A`, `base00`, `base06` etc. +Or you can make your own theme: + +```nix +let + myTheme = themes.custom { + name = "My Awesome Theme"; + author = "RGBCube"; + base00 = "000000"; + # ... + }; +in {} +``` +
All themes