You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update yanked dependency to `libc` to fix building with `--locked`.
28
+
* document breaking change in theme file format.
29
+
10
30
## [0.26.2] - 2024-04-17
11
31
32
+
**note:** this release introduced a breaking change documented in the following release: `0.26.3`
33
+
12
34
### Fixes
13
35
* fix `cargo install` without `--locked` ([#2098](https://github.com/extrawurst/gitui/issues/2098))
14
36
* respect configuration for remote when fetching (also applies to pulling) [[@cruessler](https://github.com/cruessler)] ([#1093](https://github.com/extrawurst/gitui/issues/1093))
Copy file name to clipboardExpand all lines: THEMES.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,18 @@ Example theme override:
18
18
19
19
```
20
20
(
21
-
selection_bg: Some(Blue),
22
-
selection_fg: Some(White),
21
+
selection_bg: Some("Blue"),
22
+
selection_fg: Some("#ffffff"),
23
23
)
24
24
```
25
25
26
26
Note that you need to wrap values in `Some` due to the way the overrides work (as of 0.23).
27
27
28
28
Notes:
29
29
30
-
* rgb colors might not be supported in every terminal.
30
+
* rgb colors might not be supported in every terminal.
31
31
* using a color like `yellow` might appear in whatever your terminal/theme defines for `yellow`
32
-
* valid colors can be found in tui-rs' [Color](https://docs.rs/tui/0.12.0/tui/style/enum.Color.html) struct.
32
+
* valid colors can be found in tui-rs' [Color](https://docs.rs/tui/0.12.0/tui/style/enum.Color.html) struct.
33
33
* all customizable theme elements can be found in [`style.rs` in the `impl Default for Theme` block](https://github.com/extrawurst/gitui/blob/master/src/ui/style.rs#L305)
0 commit comments