2020-05-20 13:00:17 +03:00
|
|
|
# Themes
|
|
|
|
|
|
|
|
default on light terminal:
|
|
|
|
![](assets/light-theme.png)
|
|
|
|
|
|
|
|
to change the colors of the program you have to modify `theme.ron` file
|
2020-06-15 01:09:02 +03:00
|
|
|
[Ron format](https://github.com/ron-rs/ron) located at config path. The path differs depending on the operating system:
|
|
|
|
|
2020-08-26 19:37:13 +03:00
|
|
|
* `$HOME/Library/Application Support/gitui/theme.ron` (mac)
|
2020-06-15 01:09:02 +03:00
|
|
|
* `$XDG_CONFIG_HOME/gitui/theme.ron` (linux using XDG)
|
|
|
|
* `$HOME/.config/gitui/theme.ron` (linux)
|
2020-05-20 13:00:17 +03:00
|
|
|
|
|
|
|
Valid colors can be found in [ColorDef](./src/ui/style.rs#ColorDef) struct. note that rgb colors might not be supported
|
2020-06-15 01:09:02 +03:00
|
|
|
in every terminal.
|