-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
gitui.tera
33 lines (31 loc) · 1.23 KB
/
gitui.tera
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
whiskers:
version: 2.1.1
matrix:
- flavor
filename: "themes/catppuccin-{{ flavor.identifier }}.ron"
---
{%- set palette = flavor.colors -%}
(
selected_tab: Some("Reset"),
command_fg: Some("#{{ palette.text.hex }}"),
selection_bg: Some("#{{ palette.surface2.hex }}"),
selection_fg: Some("#{{ palette.text.hex }}"),
cmdbar_bg: Some("#{{ palette.mantle.hex }}"),
cmdbar_extra_lines_bg: Some("#{{ palette.mantle.hex }}"),
disabled_fg: Some("#{{ palette.overlay1.hex }}"),
diff_line_add: Some("#{{ palette.green.hex }}"),
diff_line_delete: Some("#{{ palette.red.hex }}"),
diff_file_added: Some("#{{ palette.green.hex }}"),
diff_file_removed: Some("#{{ palette.maroon.hex }}"),
diff_file_moved: Some("#{{ palette.mauve.hex }}"),
diff_file_modified: Some("#{{ palette.peach.hex }}"),
commit_hash: Some("#{{ palette.lavender.hex }}"),
commit_time: Some("#{{ palette.subtext1.hex }}"),
commit_author: Some("#{{ palette.sapphire.hex }}"),
danger_fg: Some("#{{ palette.red.hex }}"),
push_gauge_bg: Some("#{{ palette.blue.hex }}"),
push_gauge_fg: Some("#{{ palette.base.hex }}"),
tag_fg: Some("#{{ palette.rosewater.hex }}"),
branch_fg: Some("#{{ palette.teal.hex }}")
)