mirror of
https://github.com/RGBCube/ThemeNix
synced 2025-07-28 00:47:44 +00:00
Add readme custom example
This commit is contained in:
parent
8af3fc6e28
commit
7fde754179
1 changed files with 13 additions and 0 deletions
13
README.md
13
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 {}
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>All themes</summary>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue