From 16d6d932a0f7a92ed0b3ca180d71d2a97a5cd5a9 Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Wed, 11 Jan 2023 23:47:29 +0000 Subject: [PATCH] Add instructions for fetching pre-made schemes :memo: Closes #19 --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58ad0094..47bf60cb 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,20 @@ The `baseXX` names correspond to ### Manual color schemes -Alternatively, you can use a pre-made colorscheme from -[the base16 repository](https://github.com/tinted-theming/base16-schemes). +Alternatively, you can choose a pre-made colorscheme from +[the Tinted Theming repository](https://github.com/tinted-theming/base16-schemes). +Either add the repository to your Flake inputs, or fetch it as follows: + +```nix +let base16-schemes = pkgs.fetchFromGitHub { + owner = "tinted-theming"; + repo = "base16-schemes"; + rev = "..."; + sha256 = "..."; +}; +``` + +Then you can choose which file you would like to use: ```nix stylix.base16Scheme = "${base16-schemes}/gruvbox-dark-hard.yaml";