blob: c3aaaa6b32bd6c69c6fff6061d37623d397bffa1 (
plain)
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
34
35
36
37
38
39
40
|
# If the user's terminal is in dark mode, Yazi will load `theme-dark.toml` on startup; otherwise, `theme-light.toml`.
# You can override any parts of them that are not related to the dark/light mode in your own `theme.toml`.
# If you want to dynamically override their content based on dark/light mode, you can specify two different flavors
# for dark and light modes under `[flavor]`, and do so in those flavors instead.
"$schema" = "https://yazi-rs.github.io/schemas/theme.json"
# vim:fileencoding=utf-8:foldmethod=marker
# : Flavor {{{
[flavor]
dark = "rose-pine-moon"
light = "catppuccin-mocha"
# : }}}
[status]
sep_left = { open = "", close = "" }
sep_right = { open = "", close = "" }
# ayu-dark
# catppuccin-frappe
# catppuccin-latte
# catppuccin-macchiato
# catppuccin-mocha
# dracula
# everforest-medium
# gruvbox-dark
# kanagawa-dragon
# kanagawa-lotus
# kanagawa
# rose-pine-moon
# rose-pine
# scripts
# tokyo-night
# vscode-dark-modern
# vscode-dark-plus
# vscode-light-modern
# vscode-light-plus
|