chore: sync config upstream
parent
7cc78e742b
commit
0f1f422802
|
@ -112,7 +112,7 @@ external = "~/.config/gitui/theme.ron"
|
|||
|
||||
[[apps.gitui.paths]]
|
||||
internal = "data/gitui/theme.ron"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/gitui/main/theme/mocha.ron"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/gitui/main/themes/catppuccin-mocha.ron"
|
||||
|
||||
[[apps.daktilo.paths]]
|
||||
internal = "data/daktilo/daktilo.toml"
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
(
|
||||
selected_tab: Some(Reset),
|
||||
command_fg: Some(Rgb(205, 214, 244)),
|
||||
selection_bg: Some(Rgb(88, 91, 112)),
|
||||
selection_fg: Some(Rgb(205, 214, 244)),
|
||||
cmdbar_bg: Some(Rgb(24, 24, 37)),
|
||||
cmdbar_extra_lines_bg: Some(Rgb(24, 24, 37)),
|
||||
disabled_fg: Some(Rgb(127, 132, 156)),
|
||||
diff_line_add: Some(Rgb(166, 227, 161)),
|
||||
diff_line_delete: Some(Rgb(243, 139, 168)),
|
||||
diff_file_added: Some(Rgb(249, 226, 175)),
|
||||
diff_file_removed: Some(Rgb(235, 160, 172)),
|
||||
diff_file_moved: Some(Rgb(203, 166, 247)),
|
||||
diff_file_modified: Some(Rgb(250, 179, 135)),
|
||||
commit_hash: Some(Rgb(180, 190, 254)),
|
||||
commit_time: Some(Rgb(186, 194, 222)),
|
||||
commit_author: Some(Rgb(116, 199, 236)),
|
||||
danger_fg: Some(Rgb(243, 139, 168)),
|
||||
push_gauge_bg: Some(Rgb(137, 180, 250)),
|
||||
push_gauge_fg: Some(Rgb(30, 30, 46)),
|
||||
tag_fg: Some(Rgb(245, 224, 220)),
|
||||
branch_fg: Some(Rgb(148, 226, 213))
|
||||
selected_tab: Some("Reset"),
|
||||
command_fg: Some("#cdd6f4"),
|
||||
selection_bg: Some("#585b70"),
|
||||
selection_fg: Some("#cdd6f4"),
|
||||
cmdbar_bg: Some("#181825"),
|
||||
cmdbar_extra_lines_bg: Some("#181825"),
|
||||
disabled_fg: Some("#7f849c"),
|
||||
diff_line_add: Some("#a6e3a1"),
|
||||
diff_line_delete: Some("#f38ba8"),
|
||||
diff_file_added: Some("#a6e3a1"),
|
||||
diff_file_removed: Some("#eba0ac"),
|
||||
diff_file_moved: Some("#cba6f7"),
|
||||
diff_file_modified: Some("#fab387"),
|
||||
commit_hash: Some("#b4befe"),
|
||||
commit_time: Some("#bac2de"),
|
||||
commit_author: Some("#74c7ec"),
|
||||
danger_fg: Some("#f38ba8"),
|
||||
push_gauge_bg: Some("#89b4fa"),
|
||||
push_gauge_fg: Some("#1e1e2e"),
|
||||
tag_fg: Some("#f5e0dc"),
|
||||
branch_fg: Some("#94e2d5")
|
||||
)
|
||||
|
|
|
@ -9,72 +9,72 @@
|
|||
|
||||
|
||||
# The basic colors
|
||||
foreground #CDD6F4
|
||||
background #1E1E2E
|
||||
selection_foreground #1E1E2E
|
||||
selection_background #F5E0DC
|
||||
foreground #cdd6f4
|
||||
background #1e1e2e
|
||||
selection_foreground #1e1e2e
|
||||
selection_background #f5e0dc
|
||||
|
||||
# Cursor colors
|
||||
cursor #F5E0DC
|
||||
cursor_text_color #1E1E2E
|
||||
cursor #f5e0dc
|
||||
cursor_text_color #1e1e2e
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #F5E0DC
|
||||
url_color #f5e0dc
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #B4BEFE
|
||||
inactive_border_color #6C7086
|
||||
bell_border_color #F9E2AF
|
||||
active_border_color #b4befe
|
||||
inactive_border_color #6c7086
|
||||
bell_border_color #f9e2af
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color #1E1E2E
|
||||
macos_titlebar_color #1E1E2E
|
||||
wayland_titlebar_color system
|
||||
macos_titlebar_color system
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #11111B
|
||||
active_tab_background #CBA6F7
|
||||
inactive_tab_foreground #CDD6F4
|
||||
active_tab_foreground #11111b
|
||||
active_tab_background #cba6f7
|
||||
inactive_tab_foreground #cdd6f4
|
||||
inactive_tab_background #181825
|
||||
tab_bar_background #11111B
|
||||
tab_bar_background #11111b
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #1E1E2E
|
||||
mark1_background #B4BEFE
|
||||
mark2_foreground #1E1E2E
|
||||
mark2_background #CBA6F7
|
||||
mark3_foreground #1E1E2E
|
||||
mark3_background #74C7EC
|
||||
mark1_foreground #1e1e2e
|
||||
mark1_background #b4befe
|
||||
mark2_foreground #1e1e2e
|
||||
mark2_background #cba6f7
|
||||
mark3_foreground #1e1e2e
|
||||
mark3_background #74c7ec
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #45475A
|
||||
color8 #585B70
|
||||
color0 #45475a
|
||||
color8 #585b70
|
||||
|
||||
# red
|
||||
color1 #F38BA8
|
||||
color9 #F38BA8
|
||||
color1 #f38ba8
|
||||
color9 #f38ba8
|
||||
|
||||
# green
|
||||
color2 #A6E3A1
|
||||
color10 #A6E3A1
|
||||
color2 #a6e3a1
|
||||
color10 #a6e3a1
|
||||
|
||||
# yellow
|
||||
color3 #F9E2AF
|
||||
color11 #F9E2AF
|
||||
color3 #f9e2af
|
||||
color11 #f9e2af
|
||||
|
||||
# blue
|
||||
color4 #89B4FA
|
||||
color12 #89B4FA
|
||||
color4 #89b4fa
|
||||
color12 #89b4fa
|
||||
|
||||
# magenta
|
||||
color5 #F5C2E7
|
||||
color13 #F5C2E7
|
||||
color5 #f5c2e7
|
||||
color13 #f5c2e7
|
||||
|
||||
# cyan
|
||||
color6 #94E2D5
|
||||
color14 #94E2D5
|
||||
color6 #94e2d5
|
||||
color14 #94e2d5
|
||||
|
||||
# white
|
||||
color7 #BAC2DE
|
||||
color15 #A6ADC8
|
||||
color7 #bac2de
|
||||
color15 #a6adc8
|
||||
|
|
Loading…
Reference in New Issue