neue config Files
This commit is contained in:
21
config/yazi/flavors/catppuccin-frappe.yazi/LICENSE
Normal file
21
config/yazi/flavors/catppuccin-frappe.yazi/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 yazi-rs
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
21
config/yazi/flavors/catppuccin-frappe.yazi/LICENSE-tmtheme
Normal file
21
config/yazi/flavors/catppuccin-frappe.yazi/LICENSE-tmtheme
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 Catppuccin
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
36
config/yazi/flavors/catppuccin-frappe.yazi/README.md
Normal file
36
config/yazi/flavors/catppuccin-frappe.yazi/README.md
Normal file
@@ -0,0 +1,36 @@
|
||||
<div align="center">
|
||||
<img src="https://github.com/sxyazi/yazi/blob/main/assets/logo.png?raw=true" alt="Yazi logo" width="20%">
|
||||
</div>
|
||||
|
||||
<h3 align="center">
|
||||
Catppuccin Frappe Flavor for <a href="https://github.com/sxyazi/yazi">Yazi</a>
|
||||
</h3>
|
||||
|
||||
## 👀 Preview
|
||||
|
||||
<img src="preview.png" width="600" />
|
||||
|
||||
## 🎨 Installation
|
||||
|
||||
```sh
|
||||
ya pkg add yazi-rs/flavors:catppuccin-frappe
|
||||
```
|
||||
|
||||
## ⚙️ Usage
|
||||
|
||||
Set the content of your `theme.toml` to enable it as your _dark_ flavor:
|
||||
|
||||
```toml
|
||||
[flavor]
|
||||
dark = "catppuccin-frappe"
|
||||
```
|
||||
|
||||
Make sure your `theme.toml` doesn't contain anything other than `[flavor]`, unless you want to override certain styles of this flavor.
|
||||
|
||||
See the [Yazi flavor documentation](https://yazi-rs.github.io/docs/flavors/overview) for more details.
|
||||
|
||||
## 📜 License
|
||||
|
||||
The flavor is MIT-licensed, and the included tmTheme is also MIT-licensed.
|
||||
|
||||
Check the [LICENSE](LICENSE) and [LICENSE-tmtheme](LICENSE-tmtheme) file for more details.
|
||||
215
config/yazi/flavors/catppuccin-frappe.yazi/flavor.toml
Normal file
215
config/yazi/flavors/catppuccin-frappe.yazi/flavor.toml
Normal file
@@ -0,0 +1,215 @@
|
||||
# vim:fileencoding=utf-8:foldmethod=marker
|
||||
|
||||
# : Manager {{{
|
||||
|
||||
[mgr]
|
||||
cwd = { fg = "#81c8be" }
|
||||
|
||||
# Find
|
||||
find_keyword = { fg = "#e5c890", bold = true, italic = true, underline = true }
|
||||
find_position = { fg = "#f4b8e4", bg = "reset", bold = true, italic = true }
|
||||
|
||||
# Marker
|
||||
marker_copied = { fg = "#a6d189", bg = "#a6d189" }
|
||||
marker_cut = { fg = "#e78284", bg = "#e78284" }
|
||||
marker_marked = { fg = "#81c8be", bg = "#81c8be" }
|
||||
marker_selected = { fg = "#e5c890", bg = "#e5c890" }
|
||||
|
||||
# Count
|
||||
count_copied = { fg = "#303446", bg = "#a6d189" }
|
||||
count_cut = { fg = "#303446", bg = "#e78284" }
|
||||
count_selected = { fg = "#303446", bg = "#e5c890" }
|
||||
|
||||
# Border
|
||||
border_symbol = "│"
|
||||
border_style = { fg = "#838ba7" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Tabs {{{
|
||||
|
||||
[tabs]
|
||||
active = { fg = "#303446", bg = "#8caaee", bold = true }
|
||||
inactive = { fg = "#8caaee", bg = "#414559" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Mode {{{
|
||||
|
||||
[mode]
|
||||
|
||||
normal_main = { fg = "#303446", bg = "#8caaee", bold = true }
|
||||
normal_alt = { fg = "#8caaee", bg = "#414559" }
|
||||
|
||||
# Select mode
|
||||
select_main = { fg = "#303446", bg = "#81c8be", bold = true }
|
||||
select_alt = { fg = "#81c8be", bg = "#414559" }
|
||||
|
||||
# Unset mode
|
||||
unset_main = { fg = "#303446", bg = "#eebebe", bold = true }
|
||||
unset_alt = { fg = "#eebebe", bg = "#414559" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Status bar {{{
|
||||
|
||||
[status]
|
||||
# Permissions
|
||||
perm_sep = { fg = "#838ba7" }
|
||||
perm_type = { fg = "#8caaee" }
|
||||
perm_read = { fg = "#e5c890" }
|
||||
perm_write = { fg = "#e78284" }
|
||||
perm_exec = { fg = "#a6d189" }
|
||||
|
||||
# Progress
|
||||
progress_label = { fg = "#ffffff", bold = true }
|
||||
progress_normal = { fg = "#a6d189", bg = "#51576d" }
|
||||
progress_error = { fg = "#e5c890", bg = "#e78284" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Pick {{{
|
||||
|
||||
[pick]
|
||||
border = { fg = "#8caaee" }
|
||||
active = { fg = "#f4b8e4", bold = true }
|
||||
inactive = {}
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Input {{{
|
||||
|
||||
[input]
|
||||
border = { fg = "#8caaee" }
|
||||
title = {}
|
||||
value = {}
|
||||
selected = { reversed = true }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Completion {{{
|
||||
|
||||
[cmp]
|
||||
border = { fg = "#8caaee" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Tasks {{{
|
||||
|
||||
[tasks]
|
||||
border = { fg = "#8caaee" }
|
||||
title = {}
|
||||
hovered = { fg = "#f4b8e4", bold = true }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Which {{{
|
||||
|
||||
[which]
|
||||
mask = { bg = "#414559" }
|
||||
cand = { fg = "#81c8be" }
|
||||
rest = { fg = "#949cbb" }
|
||||
desc = { fg = "#f4b8e4" }
|
||||
separator = " "
|
||||
separator_style = { fg = "#626880" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Help {{{
|
||||
|
||||
[help]
|
||||
on = { fg = "#81c8be" }
|
||||
run = { fg = "#f4b8e4" }
|
||||
hovered = { reversed = true, bold = true }
|
||||
footer = { fg = "#414559", bg = "#c6d0f5" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Spotter {{{
|
||||
|
||||
[spot]
|
||||
border = { fg = "#8caaee" }
|
||||
title = { fg = "#8caaee" }
|
||||
tbl_col = { fg = "#81c8be" }
|
||||
tbl_cell = { fg = "#f4b8e4", bg = "#51576d" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : Notification {{{
|
||||
|
||||
[notify]
|
||||
title_info = { fg = "#a6d189" }
|
||||
title_warn = { fg = "#e5c890" }
|
||||
title_error = { fg = "#e78284" }
|
||||
|
||||
# : }}}
|
||||
|
||||
|
||||
# : File-specific styles {{{
|
||||
|
||||
[filetype]
|
||||
|
||||
rules = [
|
||||
# Image
|
||||
{ mime = "image/*", fg = "#81c8be" },
|
||||
# Media
|
||||
{ mime = "{audio,video}/*", fg = "#e5c890" },
|
||||
# Archive
|
||||
{ mime = "application/{zip,rar,7z*,tar,gzip,xz,zstd,bzip*,lzma,compress,archive,cpio,arj,xar,ms-cab*}", fg = "#f4b8e4" },
|
||||
# Document
|
||||
{ mime = "application/{pdf,doc,rtf}", fg = "#a6d189" },
|
||||
# Virtual file system
|
||||
{ mime = "vfs/{absent,stale}", fg = "#949cbb" },
|
||||
# Fallback
|
||||
{ url = "*", fg = "#c6d0f5" },
|
||||
{ url = "*/", fg = "#8caaee" },
|
||||
]
|
||||
|
||||
# : }}}
|
||||
|
||||
[icon]
|
||||
|
||||
dirs = [
|
||||
{ name = ".config", text = "", fg = "#f4b8e4" },
|
||||
{ name = ".git", text = "", fg = "#81c8be" },
|
||||
{ name = ".github", text = "", fg = "#8caaee" },
|
||||
{ name = ".npm", text = "", fg = "#8caaee" },
|
||||
{ name = "Desktop", text = "", fg = "#81c8be" },
|
||||
{ name = "Development", text = "", fg = "#81c8be" },
|
||||
{ name = "Documents", text = "", fg = "#81c8be" },
|
||||
{ name = "Downloads", text = "", fg = "#81c8be" },
|
||||
{ name = "Library", text = "", fg = "#81c8be" },
|
||||
{ name = "Movies", text = "", fg = "#81c8be" },
|
||||
{ name = "Music", text = "", fg = "#81c8be" },
|
||||
{ name = "Pictures", text = "", fg = "#81c8be" },
|
||||
{ name = "Public", text = "", fg = "#81c8be" },
|
||||
{ name = "Videos", text = "", fg = "#81c8be" },
|
||||
]
|
||||
conds = [
|
||||
# Special files
|
||||
{ if = "orphan", text = "", fg = "#c6d0f5" },
|
||||
{ if = "link", text = "", fg = "#838ba7" },
|
||||
{ if = "block", text = "", fg = "#eebebe" },
|
||||
{ if = "char", text = "", fg = "#eebebe" },
|
||||
{ if = "fifo", text = "", fg = "#eebebe" },
|
||||
{ if = "sock", text = "", fg = "#eebebe" },
|
||||
{ if = "sticky", text = "", fg = "#eebebe" },
|
||||
{ if = "dummy", text = "", fg = "#e78284" },
|
||||
|
||||
# Fallback
|
||||
{ if = "dir & hovered", text = "", fg = "#8caaee" },
|
||||
{ if = "dir", text = "", fg = "#8caaee" },
|
||||
{ if = "exec", text = "", fg = "#a6d189" },
|
||||
{ if = "!dir", text = "", fg = "#c6d0f5" },
|
||||
]
|
||||
BIN
config/yazi/flavors/catppuccin-frappe.yazi/preview.png
Normal file
BIN
config/yazi/flavors/catppuccin-frappe.yazi/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 574 KiB |
2112
config/yazi/flavors/catppuccin-frappe.yazi/tmtheme.xml
Normal file
2112
config/yazi/flavors/catppuccin-frappe.yazi/tmtheme.xml
Normal file
File diff suppressed because it is too large
Load Diff
21
config/yazi/flavors/flexoki-light.yazi/LICENSE
Normal file
21
config/yazi/flavors/flexoki-light.yazi/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Steph Ango
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
21
config/yazi/flavors/flexoki-light.yazi/LICENSE-tmtheme
Normal file
21
config/yazi/flavors/flexoki-light.yazi/LICENSE-tmtheme
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Steph Ango
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
36
config/yazi/flavors/flexoki-light.yazi/README.md
Normal file
36
config/yazi/flavors/flexoki-light.yazi/README.md
Normal file
@@ -0,0 +1,36 @@
|
||||
<div align="center">
|
||||
<img src="https://github.com/sxyazi/yazi/blob/main/assets/logo.png?raw=true" alt="Yazi logo" width="20%">
|
||||
</div>
|
||||
|
||||
<h3 align="center">
|
||||
Flexoki Light Flavor for <a href="https://github.com/sxyazi/yazi">Yazi</a>
|
||||
</h3>
|
||||
|
||||
## 👀 Preview
|
||||
|
||||
<img src="preview.png" width="600" />
|
||||
|
||||
## 🎨 Installation
|
||||
|
||||
```sh
|
||||
ya pkg add gosxrgxx/flexoki-light
|
||||
```
|
||||
|
||||
## ⚙️ Usage
|
||||
|
||||
To set it as your light flavor, change the content of your `theme.toml` to:
|
||||
|
||||
```toml
|
||||
[flavor]
|
||||
light = "flexoki-light"
|
||||
```
|
||||
|
||||
Make sure your `theme.toml` doesn't contain anything other than `[flavor]`, unless you want to override certain styles of this flavor.
|
||||
|
||||
See the [Yazi flavor documentation](https://yazi-rs.github.io/docs/flavors/overview) for more details.
|
||||
|
||||
## 📜 License
|
||||
|
||||
The flavor is MIT-licensed, and the included tmTheme is also MIT-licensed.
|
||||
|
||||
Check the [LICENSE](LICENSE) and [LICENSE-tmtheme](LICENSE-tmtheme) file for more details.
|
||||
201
config/yazi/flavors/flexoki-light.yazi/flavor.toml
Normal file
201
config/yazi/flavors/flexoki-light.yazi/flavor.toml
Normal file
@@ -0,0 +1,201 @@
|
||||
# Сolor palette: https://stephango.com/flexoki
|
||||
# ---
|
||||
# paper "#FFFCF0" bg
|
||||
# base-50 "#F2F0E5" bg-2
|
||||
# base-100 "#E6E4D9" ui
|
||||
# base-150 "#DAD8CE" ui-2
|
||||
# base-200 "#CECDC3" ui-3
|
||||
# base-300 "#B7B5AC" tx-3
|
||||
# base-600 "#6F6E69" tx-2
|
||||
# black "#100F0F" tx
|
||||
# red-600 "#AF3029" re
|
||||
# orange-600 "#BC5215" or
|
||||
# yellow-600 "#AD8301" ye
|
||||
# yellow-400 "#D0A215" ye-2
|
||||
# green-600 "#66800B" gr
|
||||
# cyan-600 "#24837B" cy
|
||||
# cyan-400 "#3AA99F" cy-2
|
||||
# cyan-100 "#BFE8D9" cy-100
|
||||
# cyan-300 "#5ABDAC" cy-300
|
||||
# blue-600 "#205EA6" bl
|
||||
# purple-600 "#5E409D" pu
|
||||
# magenta-600 "#A02F6F" ma
|
||||
|
||||
[app]
|
||||
overall = { bg = "#FFFCF0" } # bg
|
||||
|
||||
[mgr]
|
||||
cwd = { fg = "#100F0F", bold = true } # tx
|
||||
|
||||
# Find
|
||||
find_keyword = { fg = "#24837B", reversed = true } # cy
|
||||
find_position = { fg = "#24837B", bold = true, italic = true } # cy
|
||||
|
||||
# Marker
|
||||
marker_copied = { fg = "#66800B", bg = "#66800B" } # gr, gr
|
||||
marker_cut = { fg = "#AF3029", bg = "#AF3029" } # re, re
|
||||
marker_marked = { fg = "#5ABDAC", bg = "#5ABDAC" } # cy-300, cy-300
|
||||
marker_selected = { fg = "#24837B", bg = "#24837B" } # cy, cy
|
||||
|
||||
# Count
|
||||
count_copied = { fg = "#66800B", bold = true, reversed = true } # gr
|
||||
count_cut = { fg = "#AF3029", bold = true, reversed = true } # re
|
||||
count_selected = { fg = "#24837B", bold = true, reversed = true } # cy
|
||||
|
||||
# Border
|
||||
border_symbol = "│"
|
||||
border_style = { fg = "#E6E4D9" } # ui
|
||||
|
||||
[indicator]
|
||||
parent = { underline = true }
|
||||
current = { fg = "#100F0F", bg = "#E6E4D9" } # tx, ui
|
||||
preview = { underline = true }
|
||||
padding = { open = "█", close = "█" }
|
||||
|
||||
[tabs]
|
||||
active = { fg = "#100F0F", bg = "#CECDC3", bold = true } # tx, ui-3
|
||||
inactive = { fg = "#6F6E69", bg = "#E6E4D9" } # tx-2, ui
|
||||
sep_inner = { open = "", close = "" }
|
||||
sep_outer = { open = "", close = "" }
|
||||
|
||||
[mode]
|
||||
# Normal mode
|
||||
normal_main = { fg = "#100F0F", bg = "#CECDC3", bold = true } # tx, ui-3
|
||||
normal_alt = { fg = "#6F6E69", bg = "#E6E4D9" } # tx-2, ui
|
||||
|
||||
# Select mode
|
||||
select_main = { fg = "#FFFCF0", bg = "#24837B", bold = true } # bg, cy
|
||||
select_alt = { fg = "#24837B", bg = "#BFE8D9" } # cy, cy-100
|
||||
|
||||
# Unset mode
|
||||
unset_main = { fg = "#FFFCF0", bg = "#24837B", bold = true } # bg, cy
|
||||
unset_alt = { fg = "#24837B", bg = "#BFE8D9" } # cy, cy-100
|
||||
|
||||
[status]
|
||||
overall = { fg = "#100F0F" } # tx
|
||||
|
||||
# Permissions
|
||||
perm_type = { fg = "#205EA6" } # bl
|
||||
perm_read = { fg = "#AD8301" } # ye
|
||||
perm_write = { fg = "#AF3029" } # re
|
||||
perm_exec = { fg = "#66800B" } # gr
|
||||
perm_sep = { fg = "#6F6E69" } # tx-2
|
||||
|
||||
# Progress
|
||||
progress_label = { fg = "#FFFCF0" } # bg
|
||||
progress_normal = { fg = "#24837B", bg = "#5ABDAC" } # cy, cy-300
|
||||
progress_error = { bg = "#AF3029" } # re
|
||||
|
||||
[which]
|
||||
cols = 3
|
||||
mask = { bg = "#F2F0E5" } # bg-2
|
||||
cand = { fg = "#24837B", bold = true } # cy
|
||||
rest = { fg = "#24837B", italic = true } # cy
|
||||
desc = { fg = "#B7B5AC" } # tx-3
|
||||
separator = " "
|
||||
separator_style = { }
|
||||
|
||||
[confirm]
|
||||
border = { fg = "#CECDC3" } # ui-3
|
||||
title = { fg = "#B7B5AC", bold = true } # tx-3
|
||||
body = { fg = "#100F0F", bold = true } # tx
|
||||
list = { fg = "#100F0F" } # tx
|
||||
btn_yes = { fg = "#100F0F", bg = "#CECDC3", bold = true } # tx, ui-3
|
||||
btn_no = { fg = "#6F6E69", bg = "#E6E4D9" } # tx-2, ui
|
||||
|
||||
[spot]
|
||||
border = { fg = "#CECDC3" } # ui-3
|
||||
title = { fg = "#B7B5AC", bold = true } # tx-3
|
||||
tbl_col = { fg = "#6F6E69" } # tx-2
|
||||
tbl_cell = { fg = "#100F0F", bg = "#E6E4D9" } # tx, ui
|
||||
|
||||
[notify]
|
||||
# Notification title
|
||||
title_info = { fg = "#205EA6" } # bl
|
||||
title_warn = { fg = "#BC5215" } # or
|
||||
title_error = { fg = "#AF3029" } # re
|
||||
|
||||
[pick]
|
||||
border = { fg = "#CECDC3", bold = true } # ui-3
|
||||
active = { fg = "#100F0F" } # tx
|
||||
inactive = { fg = "#6F6E69" } # tx-2
|
||||
|
||||
[input]
|
||||
border = { fg = "#CECDC3" } # ui-3
|
||||
title = { fg = "#B7B5AC", bold = true } # tx-3
|
||||
value = { fg = "#100F0F" } # tx
|
||||
selected = { bg = "#F2F0E5" } # bg-2
|
||||
|
||||
[cmp]
|
||||
border = { fg = "#CECDC3", bold = true } # ui-3
|
||||
active = { fg = "#100F0F", bg = "#E6E4D9" } # tx, ui
|
||||
inactive = { fg = "#6F6E69" } # tx-2
|
||||
|
||||
[tasks]
|
||||
border = { fg = "#CECDC3" } # ui-3
|
||||
title = { fg = "#B7B5AC", bold = true } # tx-3
|
||||
hovered = { fg = "#100F0F", bg = "#E6E4D9" } # tx, ui
|
||||
|
||||
[help]
|
||||
on = { fg = "#205EA6" } # bl
|
||||
run = { fg = "#24837B" } # cy
|
||||
desc = { fg = "#B7B5AC", italic = true } # tx-3
|
||||
hovered = { bg = "#E6E4D9" } # ui
|
||||
footer = { fg = "#FFFCF0", bg = "#24837B", bold = true } # bg, cy
|
||||
|
||||
[filetype]
|
||||
rules = [
|
||||
# Empty files
|
||||
{ mime = "inode/empty", fg = "#B7B5AC" }, # tx-3
|
||||
|
||||
# Special files
|
||||
{ url = "*", is = "orphan", fg = "#B7B5AC" }, # tx-3
|
||||
{ url = "*/", is = "orphan", fg = "#B7B5AC" }, # tx-3
|
||||
{ url = "*", is = "link", fg = "#24837B" }, # cy
|
||||
{ url = "*/", is = "link", fg = "#24837B" }, # cy
|
||||
{ url = "*", is = "block", fg = "#100F0F" }, # tx
|
||||
{ url = "*", is = "char", fg = "#100F0F" }, # tx
|
||||
{ url = "*", is = "fifo", fg = "#A02F6F" }, # ma
|
||||
{ url = "*", is = "sock", fg = "#A02F6F" }, # ma
|
||||
{ url = "*", is = "sticky", fg = "#100F0F" }, # tx
|
||||
{ url = "*", is = "dummy", fg = "#B7B5AC" }, # tx-3
|
||||
|
||||
# Fallback
|
||||
{ url = "*/", fg = "#100F0F" }, # tx
|
||||
{ url = "*", is = "exec", fg = "#66800B" }, # gr
|
||||
{ url = "*", fg = "#6F6E69" } # tx-2
|
||||
]
|
||||
|
||||
[icon]
|
||||
dirs = [
|
||||
{ name = ".config", text = "", fg = "#24837B" }, # cy
|
||||
{ name = ".git", text = "", fg = "#24837B" }, # cy
|
||||
{ name = ".github", text = "", fg = "#24837B" }, # cy
|
||||
{ name = ".npm", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Desktop", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Development", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Documents", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Downloads", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Library", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Movies", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Music", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Pictures", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Public", text = "", fg = "#24837B" }, # cy
|
||||
{ name = "Videos", text = "", fg = "#24837B" } # cy
|
||||
]
|
||||
conds = [
|
||||
# Special files
|
||||
{ if = "orphan", text = "", fg = "#B7B5AC" }, # tx-3
|
||||
{ if = "link", text = "", fg = "#24837B" }, # cy
|
||||
{ if = "block", text = "", fg = "#100F0F" }, # tx
|
||||
{ if = "char", text = "", fg = "#100F0F" }, # tx
|
||||
{ if = "fifo", text = "", fg = "#A02F6F" }, # ma
|
||||
{ if = "sock", text = "", fg = "#A02F6F" }, # ma
|
||||
{ if = "sticky", text = "", fg = "#100F0F" }, # tx
|
||||
{ if = "dummy", text = "", fg = "#B7B5AC" }, # tx-3
|
||||
|
||||
# Fallback
|
||||
{ if = "dir", text = "", fg = "#24837B" }, # cy
|
||||
{ if = "exec", text = "", fg = "#66800B" }, # gr
|
||||
{ if = "!dir", text = "", fg = "#6F6E69" } # tx-2
|
||||
]
|
||||
BIN
config/yazi/flavors/flexoki-light.yazi/preview.png
Normal file
BIN
config/yazi/flavors/flexoki-light.yazi/preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 200 KiB |
1149
config/yazi/flavors/flexoki-light.yazi/tmtheme.xml
Normal file
1149
config/yazi/flavors/flexoki-light.yazi/tmtheme.xml
Normal file
File diff suppressed because it is too large
Load Diff
12
config/yazi/package.toml
Normal file
12
config/yazi/package.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[plugin]
|
||||
deps = []
|
||||
|
||||
[[flavor.deps]]
|
||||
use = "gosxrgxx/flexoki-light"
|
||||
rev = "1b1e677"
|
||||
hash = "a80630a255909a511aba8a98d115bc15"
|
||||
|
||||
[[flavor.deps]]
|
||||
use = "yazi-rs/flavors:catppuccin-frappe"
|
||||
rev = "0f9204b"
|
||||
hash = "1844f850b0c5d1af511c84399c95e3d7"
|
||||
4
config/yazi/theme.toml
Normal file
4
config/yazi/theme.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[flavor]
|
||||
light = "catppuccin-frappe"
|
||||
dark = "catppuccin-frappe"
|
||||
|
||||
14
config/yazi/yazi.toml
Normal file
14
config/yazi/yazi.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
# yazi.toml
|
||||
[mgr]
|
||||
show_hidden = true
|
||||
|
||||
[opener]
|
||||
edit = [
|
||||
{ run = "$EDITOR %s", block = true, for = "unix" }
|
||||
]
|
||||
|
||||
[open]
|
||||
prepend_rules = [
|
||||
{ url = "*.md", use = "edit" },
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user