Skip to content

Commit

Permalink
docs: add customization instructions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardspy authored Mar 24, 2024
1 parent 4bf31e9 commit 4e8a153
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,21 @@
[editor.indent-guides]
render = true
```

## Customizations

You can customize the themes by inheriting your preferred flavor and applying your own modifications. For example, to create a pure black theme based on `catppuccin_mocha`, create a new file in `$HOME/.config/helix/themes/` with the following content:

```toml
inherits = "catppuccin_mocha"

[palette]
base = "#000000"
mantle = "#010101"
crust = "#020202"
```

## Modify themes
## Building the themes

Modfiy the themes by editing the template (`data/template.tmpl`), the palettes (`/data/palettes`) or the configs (`/data/configs`).
To generate all the themes execute `python generate.py`.
Expand Down

0 comments on commit 4e8a153

Please sign in to comment.