mirror of
https://github.com/danth/stylix
synced 2024-11-22 12:13:08 +00:00
parent
907e723a3b
commit
16d6d932a0
1 changed files with 14 additions and 2 deletions
16
README.md
16
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";
|
||||
|
|
Loading…
Reference in a new issue