├── .editorconfig
├── .gitattributes
├── .gitignore
├── .vscode
└── settings.json
├── LICENSE
├── README.md
├── assets
├── frappe.webp
├── latte.webp
├── macchiato.webp
├── mocha.webp
└── preview.webp
├── deno.json
├── deno.lock
├── icons.json
├── icons.ts
├── justfile
├── themes
├── frappe
│ ├── catppuccin-frappe-blue.toml
│ ├── catppuccin-frappe-flamingo.toml
│ ├── catppuccin-frappe-green.toml
│ ├── catppuccin-frappe-lavender.toml
│ ├── catppuccin-frappe-maroon.toml
│ ├── catppuccin-frappe-mauve.toml
│ ├── catppuccin-frappe-peach.toml
│ ├── catppuccin-frappe-pink.toml
│ ├── catppuccin-frappe-red.toml
│ ├── catppuccin-frappe-rosewater.toml
│ ├── catppuccin-frappe-sapphire.toml
│ ├── catppuccin-frappe-sky.toml
│ ├── catppuccin-frappe-teal.toml
│ └── catppuccin-frappe-yellow.toml
├── latte
│ ├── catppuccin-latte-blue.toml
│ ├── catppuccin-latte-flamingo.toml
│ ├── catppuccin-latte-green.toml
│ ├── catppuccin-latte-lavender.toml
│ ├── catppuccin-latte-maroon.toml
│ ├── catppuccin-latte-mauve.toml
│ ├── catppuccin-latte-peach.toml
│ ├── catppuccin-latte-pink.toml
│ ├── catppuccin-latte-red.toml
│ ├── catppuccin-latte-rosewater.toml
│ ├── catppuccin-latte-sapphire.toml
│ ├── catppuccin-latte-sky.toml
│ ├── catppuccin-latte-teal.toml
│ └── catppuccin-latte-yellow.toml
├── macchiato
│ ├── catppuccin-macchiato-blue.toml
│ ├── catppuccin-macchiato-flamingo.toml
│ ├── catppuccin-macchiato-green.toml
│ ├── catppuccin-macchiato-lavender.toml
│ ├── catppuccin-macchiato-maroon.toml
│ ├── catppuccin-macchiato-mauve.toml
│ ├── catppuccin-macchiato-peach.toml
│ ├── catppuccin-macchiato-pink.toml
│ ├── catppuccin-macchiato-red.toml
│ ├── catppuccin-macchiato-rosewater.toml
│ ├── catppuccin-macchiato-sapphire.toml
│ ├── catppuccin-macchiato-sky.toml
│ ├── catppuccin-macchiato-teal.toml
│ └── catppuccin-macchiato-yellow.toml
└── mocha
│ ├── catppuccin-mocha-blue.toml
│ ├── catppuccin-mocha-flamingo.toml
│ ├── catppuccin-mocha-green.toml
│ ├── catppuccin-mocha-lavender.toml
│ ├── catppuccin-mocha-maroon.toml
│ ├── catppuccin-mocha-mauve.toml
│ ├── catppuccin-mocha-peach.toml
│ ├── catppuccin-mocha-pink.toml
│ ├── catppuccin-mocha-red.toml
│ ├── catppuccin-mocha-rosewater.toml
│ ├── catppuccin-mocha-sapphire.toml
│ ├── catppuccin-mocha-sky.toml
│ ├── catppuccin-mocha-teal.toml
│ └── catppuccin-mocha-yellow.toml
└── yazi.tera
/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig helps developers define and maintain consistent
2 | # coding styles between different editors and IDEs
3 | # EditorConfig is awesome: https://EditorConfig.org
4 |
5 | root = true
6 |
7 | [*]
8 | charset = utf-8
9 | indent_size = 2
10 | indent_style = space
11 | end_of_line = lf
12 | insert_final_newline = true
13 | trim_trailing_whitespace = true
14 |
15 | # go
16 | [*.go]
17 | indent_style = tab
18 | indent_size = 4
19 |
20 | # python
21 | [*.{ini,py,py.tpl,rst}]
22 | indent_size = 4
23 |
24 | # rust
25 | [*.rs]
26 | indent_size = 4
27 |
28 | # documentation, utils
29 | [*.{md,mdx,diff}]
30 | trim_trailing_whitespace = false
31 |
32 | # windows shell scripts
33 | [*.{cmd,bat,ps1}]
34 | end_of_line = crlf
35 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | themes/**/* linguist-generated=true
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .luarocks/
2 | lua_modules/
3 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "deno.enable": true,
3 | "[typescript]": {
4 | "editor.defaultFormatter": "denoland.vscode-deno"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Catppuccin
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | 
3 |
4 | Catppuccin for Yazi
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | ## Previews
19 |
20 |
21 | 🌻 Latte
22 |
23 |
24 |
25 | 🪴 Frappé
26 |
27 |
28 |
29 | 🌺 Macchiato
30 |
31 |
32 |
33 | 🌿 Mocha
34 |
35 |
36 |
37 | ## Usage
38 |
39 | 1. Copy the theme file of your choice from `themes/` to your [Yazi configuration directory](https://yazi-rs.github.io/docs/configuration/overview) with the filename `theme.toml`.
40 | 2. For Catppuccin-themed syntax highlighting in the preview pane:
41 | - Download the `.tmTheme` file of your choice from [catppuccin/bat](https://github.com/catppuccin/bat).
42 | - Set the `syntect_theme` option of your theme file downloaded in step 1 with the path of your downloaded `.tmTheme` file.
43 |
44 | ## Contributing
45 |
46 | To contribute to this port you will need the following dependencies installed:
47 |
48 | - [Whiskers](https://github.com/catppuccin/whiskers)
49 | - [Deno](https://docs.deno.com/runtime/manual/getting_started/installation)
50 |
51 | Edit `yazi.tera` to make changes to the theme. Run `just build` to build the output themes in `themes/`.
52 |
53 | To update the icons data, you will additionally need [Lua](https://lua.org/start.html), [LuaRocks](https://luarocks.org/), and the [`dkjson` LuaRocks module](https://luarocks.org/modules/dhkolf/dkjson). Run `just icons` to fetch and process the data from [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons).
54 |
55 | ## 💝 Thanks to
56 |
57 | - [uncenter](https://github.com/uncenter)
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 | Copyright © 2021-present Catppuccin Org
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/assets/frappe.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/catppuccin/yazi/fca8e93e0a408671fa54cc0cb103e76b85e8c011/assets/frappe.webp
--------------------------------------------------------------------------------
/assets/latte.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/catppuccin/yazi/fca8e93e0a408671fa54cc0cb103e76b85e8c011/assets/latte.webp
--------------------------------------------------------------------------------
/assets/macchiato.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/catppuccin/yazi/fca8e93e0a408671fa54cc0cb103e76b85e8c011/assets/macchiato.webp
--------------------------------------------------------------------------------
/assets/mocha.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/catppuccin/yazi/fca8e93e0a408671fa54cc0cb103e76b85e8c011/assets/mocha.webp
--------------------------------------------------------------------------------
/assets/preview.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/catppuccin/yazi/fca8e93e0a408671fa54cc0cb103e76b85e8c011/assets/preview.webp
--------------------------------------------------------------------------------
/deno.json:
--------------------------------------------------------------------------------
1 | {
2 | "tasks": {
3 | "icons": "deno run -A icons.ts"
4 | },
5 | "imports": {
6 | "@catppuccin/palette": "https://esm.sh/@catppuccin/palette@1.2.0",
7 | "ctpvert": "https://deno.land/x/ctpvert@v0.4.0/main.ts"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/deno.lock:
--------------------------------------------------------------------------------
1 | {
2 | "version": "4",
3 | "remote": {
4 | "https://deno.land/x/ctpvert@v0.4.0/main.ts": "6d505cc6258fc1c22d7db98d909a2259e1e072d37567f9f784a8eb5bd055f45c",
5 | "https://deno.land/x/ctpvert@v0.4.0/src/utils.ts": "a578eea7b792ef4ebaa2f57174e92df139f94f398d4c79e8bcc17a7ad39e7d53",
6 | "https://esm.sh/@catppuccin/palette@1.2.0": "25a9b4c66eaa01824ae12a031cd12394130f5d47a68b691172a3053f9ecf4881",
7 | "https://esm.sh/@catppuccin/palette@1.2.0/denonext/palette.mjs": "fcdf2a84f4880ec56336e8345d94b56fd4a1d855be14023c91652707e15dc19d",
8 | "https://esm.sh/colortranslator@4.1.0": "72b122fb626b9b08dae7a59ed78a17b2a47595da8bde42177bbb86f551a156bb",
9 | "https://esm.sh/colortranslator@4.1.0/denonext/colortranslator.mjs": "131bbb25f3b7a02e2c7ec4908a34909e24da5534e3ee8974585445ccd382a296",
10 | "https://esm.sh/delta-e@0.0.8": "f2fa858f2147ce8809f55bd565627e528966dd16469df5b4b797aba4cc736352",
11 | "https://esm.sh/delta-e@0.0.8/denonext/delta-e.mjs": "b573d13b2a1f16285d56f69e7e7b7e5eb3a123cebc577b65690fd10c22fd2e36"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/icons.ts:
--------------------------------------------------------------------------------
1 | import { closest } from "ctpvert";
2 | import { type ColorName, flavorEntries, flavors } from "@catppuccin/palette";
3 |
4 | const { icons_by_filename, icons_by_file_extension } = JSON.parse(
5 | await Deno.readTextFile("./icons.json"),
6 | ) as Record<
7 | string,
8 | Record<
9 | string,
10 | {
11 | name: string;
12 | icon: string;
13 | cterm_color: string;
14 | color: string;
15 | }
16 | >
17 | >;
18 |
19 | const hex_to_color_overrides = {
20 | "#dddddd": "text",
21 | };
22 |
23 | for (const [identifier, { colors, colorEntries }] of flavorEntries) {
24 | let output = "[icon]\n";
25 |
26 | const addIcons = (
27 | icons: Record,
28 | name: string,
29 | ) => {
30 | output += `${name} = [\n`;
31 | for (const [key, { color, icon }] of Object.entries(icons)) {
32 | const fg = colors[
33 | (hex_to_color_overrides[
34 | color as keyof typeof hex_to_color_overrides
35 | ] ||
36 | closest(color)[identifier].name) as ColorName
37 | ]
38 | .hex;
39 | output +=
40 | ` { name = "${key}", text = "${icon}", fg = "${fg}" },\n`;
41 | }
42 | output += "]\n";
43 | };
44 |
45 | addIcons(icons_by_filename, "files");
46 | addIcons(icons_by_file_extension, "exts");
47 |
48 | await Promise.all(colorEntries.filter(([_, c]) => c.accent).map(async ([accent]) => {
49 | const dist = `themes/${identifier}/catppuccin-${identifier}-${accent}.toml`;
50 | const theme = await Deno.readTextFile(dist);
51 | await Deno.writeTextFile(
52 | dist,
53 | theme + "\n" + output,
54 | );
55 | }));
56 | }
57 |
--------------------------------------------------------------------------------
/justfile:
--------------------------------------------------------------------------------
1 | _default:
2 | @just --list
3 |
4 | icons:
5 | #!/usr/bin/env bash
6 | data=$(curl https://raw.githubusercontent.com/nvim-tree/nvim-web-devicons/master/lua/nvim-web-devicons/icons-default.lua | sed 's/return {/local tbl = {/g')
7 | script="$data
8 | print(require('dkjson').encode(tbl, { indent = false }))"
9 | echo "$script" | lua > icons.json
10 |
11 | build:
12 | #!/usr/bin/env bash
13 | whiskers yazi.tera
14 | deno task icons
15 |
--------------------------------------------------------------------------------
/themes/frappe/catppuccin-frappe-red.toml:
--------------------------------------------------------------------------------
1 | [manager]
2 | cwd = { fg = "#81c8be" }
3 |
4 | hovered = { fg = "#303446", bg = "#e78284" }
5 | preview_hovered = { fg = "#303446", bg = "#c6d0f5" }
6 |
7 | find_keyword = { fg = "#e5c890", italic = true }
8 | find_position = { fg = "#f4b8e4", bg = "reset", italic = true }
9 |
10 | marker_copied = { fg = "#a6d189", bg = "#a6d189" }
11 | marker_cut = { fg = "#e78284", bg = "#e78284" }
12 | marker_marked = { fg = "#81c8be", bg = "#81c8be" }
13 | marker_selected = { fg = "#e78284", bg = "#e78284" }
14 |
15 | tab_active = { fg = "#303446", bg = "#c6d0f5" }
16 | tab_inactive = { fg = "#c6d0f5", bg = "#51576d" }
17 | tab_width = 1
18 |
19 | count_copied = { fg = "#303446", bg = "#a6d189" }
20 | count_cut = { fg = "#303446", bg = "#e78284" }
21 | count_selected = { fg = "#303446", bg = "#e78284" }
22 |
23 | border_symbol = "│"
24 | border_style = { fg = "#838ba7" }
25 |
26 | syntect_theme = "~/.config/yazi/Catppuccin-frappe.tmTheme"
27 |
28 | [mode]
29 | normal_main = { fg = "#303446", bg = "#e78284", bold = true }
30 | normal_alt = { fg = "#e78284", bg = "#414559"}
31 |
32 | select_main = { fg = "#303446", bg = "#a6d189", bold = true }
33 | select_alt = { fg = "#a6d189", bg = "#414559"}
34 |
35 | unset_main = { fg = "#303446", bg = "#eebebe", bold = true }
36 | unset_alt = { fg = "#eebebe", bg = "#414559"}
37 |
38 | [status]
39 | separator_open = ""
40 | separator_close = ""
41 |
42 | progress_label = { fg = "#ffffff", bold = true }
43 | progress_normal = { fg = "#8caaee", bg = "#51576d" }
44 | progress_error = { fg = "#e78284", bg = "#51576d" }
45 |
46 | perm_type = { fg = "#8caaee" }
47 | perm_read = { fg = "#e5c890" }
48 | perm_write = { fg = "#e78284" }
49 | perm_exec = { fg = "#a6d189" }
50 | perm_sep = { fg = "#838ba7" }
51 |
52 | [input]
53 | border = { fg = "#e78284" }
54 | title = {}
55 | value = {}
56 | selected = { reversed = true }
57 |
58 | [pick]
59 | border = { fg = "#e78284" }
60 | active = { fg = "#f4b8e4" }
61 | inactive = {}
62 |
63 | [confirm]
64 | border = { fg = "#e78284" }
65 | title = { fg = "#e78284" }
66 | content = {}
67 | list = {}
68 | btn_yes = { reversed = true }
69 | btn_no = {}
70 |
71 | [cmp]
72 | border = { fg = "#e78284" }
73 |
74 | [tasks]
75 | border = { fg = "#e78284" }
76 | title = {}
77 | hovered = { underline = true }
78 |
79 | [which]
80 | mask = { bg = "#414559" }
81 | cand = { fg = "#81c8be" }
82 | rest = { fg = "#949cbb" }
83 | desc = { fg = "#f4b8e4" }
84 | separator = " "
85 | separator_style = { fg = "#626880" }
86 |
87 | [help]
88 | on = { fg = "#81c8be" }
89 | run = { fg = "#f4b8e4" }
90 | desc = { fg = "#949cbb" }
91 | hovered = { bg = "#626880", bold = true }
92 | footer = { fg = "#c6d0f5", bg = "#51576d" }
93 |
94 | [notify]
95 | title_info = { fg = "#81c8be" }
96 | title_warn = { fg = "#e5c890" }
97 | title_error = { fg = "#e78284" }
98 |
99 | [filetype]
100 | rules = [
101 | # Media
102 | { mime = "image/*", fg = "#81c8be" },
103 | { mime = "{audio,video}/*", fg = "#e5c890" },
104 |
105 | # Archives
106 | { mime = "application/*zip", fg = "#f4b8e4" },
107 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f4b8e4" },
108 |
109 | # Documents
110 | { mime = "application/{pdf,doc,rtf}", fg = "#a6d189" },
111 |
112 | # Fallback
113 | { name = "*", fg = "#c6d0f5" },
114 | { name = "*/", fg = "#e78284" }
115 | ]
116 |
117 | [spot]
118 | border = { fg = "#e78284" }
119 | title = { fg = "#e78284" }
120 | tbl_cell = { fg = "#e78284", reversed = true }
121 | tbl_col = { bold = true }
122 |
123 | [icon]
124 | files = [
125 | { name = "kritadisplayrc", text = "", fg = "#ca9ee6" },
126 | { name = ".gtkrc-2.0", text = "", fg = "#f2d5cf" },
127 | { name = "bspwmrc", text = "", fg = "#232634" },
128 | { name = "webpack", text = "", fg = "#85c1dc" },
129 | { name = "tsconfig.json", text = "", fg = "#85c1dc" },
130 | { name = ".vimrc", text = "", fg = "#a6d189" },
131 | { name = "gemfile$", text = "", fg = "#292c3c" },
132 | { name = "xmobarrc", text = "", fg = "#e78284" },
133 | { name = "avif", text = "", fg = "#ca9ee6" },
134 | { name = "fp-info-cache", text = "", fg = "#f2d5cf" },
135 | { name = ".zshrc", text = "", fg = "#a6d189" },
136 | { name = "robots.txt", text = "", fg = "#626880" },
137 | { name = "dockerfile", text = "", fg = "#8caaee" },
138 | { name = ".git-blame-ignore-revs", text = "", fg = "#e78284" },
139 | { name = ".nvmrc", text = "", fg = "#a6d189" },
140 | { name = "hyprpaper.conf", text = "", fg = "#81c8be" },
141 | { name = ".prettierignore", text = "", fg = "#8caaee" },
142 | { name = "rakefile", text = "", fg = "#292c3c" },
143 | { name = "code_of_conduct", text = "", fg = "#e78284" },
144 | { name = "cmakelists.txt", text = "", fg = "#c6d0f5" },
145 | { name = ".env", text = "", fg = "#e5c890" },
146 | { name = "copying.lesser", text = "", fg = "#e5c890" },
147 | { name = "readme", text = "", fg = "#f2d5cf" },
148 | { name = "settings.gradle", text = "", fg = "#51576d" },
149 | { name = "gruntfile.coffee", text = "", fg = "#ef9f76" },
150 | { name = ".eslintignore", text = "", fg = "#51576d" },
151 | { name = "kalgebrarc", text = "", fg = "#8caaee" },
152 | { name = "kdenliverc", text = "", fg = "#8caaee" },
153 | { name = ".prettierrc.cjs", text = "", fg = "#8caaee" },
154 | { name = "cantorrc", text = "", fg = "#8caaee" },
155 | { name = "rmd", text = "", fg = "#85c1dc" },
156 | { name = "vagrantfile$", text = "", fg = "#626880" },
157 | { name = ".Xauthority", text = "", fg = "#ef9f76" },
158 | { name = "prettier.config.ts", text = "", fg = "#8caaee" },
159 | { name = "node_modules", text = "", fg = "#e78284" },
160 | { name = ".prettierrc.toml", text = "", fg = "#8caaee" },
161 | { name = "build.zig.zon", text = "", fg = "#ef9f76" },
162 | { name = ".ds_store", text = "", fg = "#51576d" },
163 | { name = "PKGBUILD", text = "", fg = "#8caaee" },
164 | { name = ".prettierrc", text = "", fg = "#8caaee" },
165 | { name = ".bash_profile", text = "", fg = "#a6d189" },
166 | { name = ".npmignore", text = "", fg = "#e78284" },
167 | { name = ".mailmap", text = "", fg = "#e78284" },
168 | { name = ".codespellrc", text = "", fg = "#a6d189" },
169 | { name = "svelte.config.js", text = "", fg = "#ef9f76" },
170 | { name = "eslint.config.ts", text = "", fg = "#51576d" },
171 | { name = "config", text = "", fg = "#737994" },
172 | { name = ".gitlab-ci.yml", text = "", fg = "#e78284" },
173 | { name = ".gitconfig", text = "", fg = "#e78284" },
174 | { name = "_gvimrc", text = "", fg = "#a6d189" },
175 | { name = ".xinitrc", text = "", fg = "#ef9f76" },
176 | { name = "checkhealth", text = "", fg = "#8caaee" },
177 | { name = "sxhkdrc", text = "", fg = "#232634" },
178 | { name = ".bashrc", text = "", fg = "#a6d189" },
179 | { name = "tailwind.config.mjs", text = "", fg = "#85c1dc" },
180 | { name = "ext_typoscript_setup.txt", text = "", fg = "#ef9f76" },
181 | { name = "commitlint.config.ts", text = "", fg = "#81c8be" },
182 | { name = "py.typed", text = "", fg = "#e5c890" },
183 | { name = ".nanorc", text = "", fg = "#303446" },
184 | { name = "commit_editmsg", text = "", fg = "#e78284" },
185 | { name = ".luaurc", text = "", fg = "#8caaee" },
186 | { name = "fp-lib-table", text = "", fg = "#f2d5cf" },
187 | { name = ".editorconfig", text = "", fg = "#f2d5cf" },
188 | { name = "justfile", text = "", fg = "#737994" },
189 | { name = "kdeglobals", text = "", fg = "#8caaee" },
190 | { name = "license.md", text = "", fg = "#e5c890" },
191 | { name = ".clang-format", text = "", fg = "#737994" },
192 | { name = "docker-compose.yaml", text = "", fg = "#8caaee" },
193 | { name = "copying", text = "", fg = "#e5c890" },
194 | { name = "go.mod", text = "", fg = "#85c1dc" },
195 | { name = "lxqt.conf", text = "", fg = "#8caaee" },
196 | { name = "brewfile", text = "", fg = "#292c3c" },
197 | { name = "gulpfile.coffee", text = "", fg = "#e78284" },
198 | { name = ".dockerignore", text = "", fg = "#8caaee" },
199 | { name = ".settings.json", text = "", fg = "#626880" },
200 | { name = "tailwind.config.js", text = "", fg = "#85c1dc" },
201 | { name = ".clang-tidy", text = "", fg = "#737994" },
202 | { name = ".gvimrc", text = "", fg = "#a6d189" },
203 | { name = "nuxt.config.cjs", text = "", fg = "#81c8be" },
204 | { name = "xsettingsd.conf", text = "", fg = "#ef9f76" },
205 | { name = "nuxt.config.js", text = "", fg = "#81c8be" },
206 | { name = "eslint.config.cjs", text = "", fg = "#51576d" },
207 | { name = "sym-lib-table", text = "", fg = "#f2d5cf" },
208 | { name = ".condarc", text = "", fg = "#a6d189" },
209 | { name = "xmonad.hs", text = "", fg = "#e78284" },
210 | { name = "tmux.conf", text = "", fg = "#a6d189" },
211 | { name = "xmobarrc.hs", text = "", fg = "#e78284" },
212 | { name = ".prettierrc.yaml", text = "", fg = "#8caaee" },
213 | { name = ".pre-commit-config.yaml", text = "", fg = "#e5c890" },
214 | { name = "i3blocks.conf", text = "", fg = "#c6d0f5" },
215 | { name = "xorg.conf", text = "", fg = "#ef9f76" },
216 | { name = ".zshenv", text = "", fg = "#a6d189" },
217 | { name = "vlcrc", text = "", fg = "#ef9f76" },
218 | { name = "license", text = "", fg = "#e5c890" },
219 | { name = "unlicense", text = "", fg = "#e5c890" },
220 | { name = "tmux.conf.local", text = "", fg = "#a6d189" },
221 | { name = ".SRCINFO", text = "", fg = "#8caaee" },
222 | { name = "tailwind.config.ts", text = "", fg = "#85c1dc" },
223 | { name = "security.md", text = "", fg = "#b5bfe2" },
224 | { name = "security", text = "", fg = "#b5bfe2" },
225 | { name = ".eslintrc", text = "", fg = "#51576d" },
226 | { name = "gradle.properties", text = "", fg = "#51576d" },
227 | { name = "code_of_conduct.md", text = "", fg = "#e78284" },
228 | { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#ef9f76" },
229 | { name = "PrusaSlicer.ini", text = "", fg = "#ef9f76" },
230 | { name = "procfile", text = "", fg = "#ca9ee6" },
231 | { name = "mpv.conf", text = "", fg = "#292c3c" },
232 | { name = ".prettierrc.json5", text = "", fg = "#8caaee" },
233 | { name = "i3status.conf", text = "", fg = "#c6d0f5" },
234 | { name = "prettier.config.mjs", text = "", fg = "#8caaee" },
235 | { name = ".pylintrc", text = "", fg = "#737994" },
236 | { name = "prettier.config.cjs", text = "", fg = "#8caaee" },
237 | { name = ".luacheckrc", text = "", fg = "#8caaee" },
238 | { name = "containerfile", text = "", fg = "#8caaee" },
239 | { name = "eslint.config.mjs", text = "", fg = "#51576d" },
240 | { name = "gruntfile.js", text = "", fg = "#ef9f76" },
241 | { name = "bun.lockb", text = "", fg = "#f2d5cf" },
242 | { name = ".gitattributes", text = "", fg = "#e78284" },
243 | { name = "gruntfile.ts", text = "", fg = "#ef9f76" },
244 | { name = "pom.xml", text = "", fg = "#292c3c" },
245 | { name = "favicon.ico", text = "", fg = "#e5c890" },
246 | { name = "package-lock.json", text = "", fg = "#292c3c" },
247 | { name = "build", text = "", fg = "#a6d189" },
248 | { name = "package.json", text = "", fg = "#e78284" },
249 | { name = "nuxt.config.ts", text = "", fg = "#81c8be" },
250 | { name = "nuxt.config.mjs", text = "", fg = "#81c8be" },
251 | { name = "mix.lock", text = "", fg = "#ca9ee6" },
252 | { name = "makefile", text = "", fg = "#737994" },
253 | { name = "gulpfile.js", text = "", fg = "#e78284" },
254 | { name = "lxde-rc.xml", text = "", fg = "#838ba7" },
255 | { name = "kritarc", text = "", fg = "#ca9ee6" },
256 | { name = "gtkrc", text = "", fg = "#f2d5cf" },
257 | { name = "ionic.config.json", text = "", fg = "#8caaee" },
258 | { name = ".prettierrc.mjs", text = "", fg = "#8caaee" },
259 | { name = ".prettierrc.yml", text = "", fg = "#8caaee" },
260 | { name = ".npmrc", text = "", fg = "#e78284" },
261 | { name = "weston.ini", text = "", fg = "#e5c890" },
262 | { name = "gulpfile.babel.js", text = "", fg = "#e78284" },
263 | { name = "i18n.config.ts", text = "", fg = "#838ba7" },
264 | { name = "commitlint.config.js", text = "", fg = "#81c8be" },
265 | { name = ".gitmodules", text = "", fg = "#e78284" },
266 | { name = "gradle-wrapper.properties", text = "", fg = "#51576d" },
267 | { name = "hypridle.conf", text = "", fg = "#81c8be" },
268 | { name = "vercel.json", text = "▲", fg = "#f2d5cf" },
269 | { name = "hyprlock.conf", text = "", fg = "#81c8be" },
270 | { name = "go.sum", text = "", fg = "#85c1dc" },
271 | { name = "kdenlive-layoutsrc", text = "", fg = "#8caaee" },
272 | { name = "gruntfile.babel.js", text = "", fg = "#ef9f76" },
273 | { name = "compose.yml", text = "", fg = "#8caaee" },
274 | { name = "i18n.config.js", text = "", fg = "#838ba7" },
275 | { name = "readme.md", text = "", fg = "#f2d5cf" },
276 | { name = "gradlew", text = "", fg = "#51576d" },
277 | { name = "go.work", text = "", fg = "#85c1dc" },
278 | { name = "gulpfile.ts", text = "", fg = "#e78284" },
279 | { name = "gnumakefile", text = "", fg = "#737994" },
280 | { name = "FreeCAD.conf", text = "", fg = "#e78284" },
281 | { name = "compose.yaml", text = "", fg = "#8caaee" },
282 | { name = "eslint.config.js", text = "", fg = "#51576d" },
283 | { name = "hyprland.conf", text = "", fg = "#81c8be" },
284 | { name = "docker-compose.yml", text = "", fg = "#8caaee" },
285 | { name = "groovy", text = "", fg = "#626880" },
286 | { name = "QtProject.conf", text = "", fg = "#a6d189" },
287 | { name = "platformio.ini", text = "", fg = "#ef9f76" },
288 | { name = "build.gradle", text = "", fg = "#51576d" },
289 | { name = ".nuxtrc", text = "", fg = "#81c8be" },
290 | { name = "_vimrc", text = "", fg = "#a6d189" },
291 | { name = ".zprofile", text = "", fg = "#a6d189" },
292 | { name = ".xsession", text = "", fg = "#ef9f76" },
293 | { name = "prettier.config.js", text = "", fg = "#8caaee" },
294 | { name = ".babelrc", text = "", fg = "#e5c890" },
295 | { name = "workspace", text = "", fg = "#a6d189" },
296 | { name = ".prettierrc.json", text = "", fg = "#8caaee" },
297 | { name = ".prettierrc.js", text = "", fg = "#8caaee" },
298 | { name = ".Xresources", text = "", fg = "#ef9f76" },
299 | { name = ".gitignore", text = "", fg = "#e78284" },
300 | { name = ".justfile", text = "", fg = "#737994" },
301 | ]
302 | exts = [
303 | { name = "otf", text = "", fg = "#f2d5cf" },
304 | { name = "import", text = "", fg = "#f2d5cf" },
305 | { name = "krz", text = "", fg = "#ca9ee6" },
306 | { name = "adb", text = "", fg = "#81c8be" },
307 | { name = "ttf", text = "", fg = "#f2d5cf" },
308 | { name = "webpack", text = "", fg = "#85c1dc" },
309 | { name = "dart", text = "", fg = "#51576d" },
310 | { name = "vsh", text = "", fg = "#838ba7" },
311 | { name = "doc", text = "", fg = "#51576d" },
312 | { name = "zsh", text = "", fg = "#a6d189" },
313 | { name = "ex", text = "", fg = "#ca9ee6" },
314 | { name = "hx", text = "", fg = "#ef9f76" },
315 | { name = "fodt", text = "", fg = "#85c1dc" },
316 | { name = "mojo", text = "", fg = "#ef9f76" },
317 | { name = "templ", text = "", fg = "#e5c890" },
318 | { name = "nix", text = "", fg = "#85c1dc" },
319 | { name = "cshtml", text = "", fg = "#51576d" },
320 | { name = "fish", text = "", fg = "#51576d" },
321 | { name = "ply", text = "", fg = "#838ba7" },
322 | { name = "sldprt", text = "", fg = "#a6d189" },
323 | { name = "gemspec", text = "", fg = "#292c3c" },
324 | { name = "mjs", text = "", fg = "#e5c890" },
325 | { name = "csh", text = "", fg = "#51576d" },
326 | { name = "cmake", text = "", fg = "#c6d0f5" },
327 | { name = "fodp", text = "", fg = "#ef9f76" },
328 | { name = "vi", text = "", fg = "#e5c890" },
329 | { name = "msf", text = "", fg = "#8caaee" },
330 | { name = "blp", text = "", fg = "#8caaee" },
331 | { name = "less", text = "", fg = "#414559" },
332 | { name = "sh", text = "", fg = "#51576d" },
333 | { name = "odg", text = "", fg = "#e5c890" },
334 | { name = "mint", text = "", fg = "#a6d189" },
335 | { name = "dll", text = "", fg = "#232634" },
336 | { name = "odf", text = "", fg = "#e78284" },
337 | { name = "sqlite3", text = "", fg = "#f2d5cf" },
338 | { name = "Dockerfile", text = "", fg = "#8caaee" },
339 | { name = "ksh", text = "", fg = "#51576d" },
340 | { name = "rmd", text = "", fg = "#85c1dc" },
341 | { name = "wv", text = "", fg = "#85c1dc" },
342 | { name = "xml", text = "", fg = "#ef9f76" },
343 | { name = "markdown", text = "", fg = "#c6d0f5" },
344 | { name = "qml", text = "", fg = "#a6d189" },
345 | { name = "3gp", text = "", fg = "#ef9f76" },
346 | { name = "pxi", text = "", fg = "#8caaee" },
347 | { name = "flac", text = "", fg = "#626880" },
348 | { name = "gpr", text = "", fg = "#ca9ee6" },
349 | { name = "huff", text = "", fg = "#51576d" },
350 | { name = "json", text = "", fg = "#e5c890" },
351 | { name = "gv", text = "", fg = "#51576d" },
352 | { name = "bmp", text = "", fg = "#ca9ee6" },
353 | { name = "lock", text = "", fg = "#b5bfe2" },
354 | { name = "sha384", text = "", fg = "#838ba7" },
355 | { name = "cobol", text = "⚙", fg = "#51576d" },
356 | { name = "cob", text = "⚙", fg = "#51576d" },
357 | { name = "java", text = "", fg = "#e78284" },
358 | { name = "cjs", text = "", fg = "#e5c890" },
359 | { name = "qm", text = "", fg = "#85c1dc" },
360 | { name = "ebuild", text = "", fg = "#414559" },
361 | { name = "mustache", text = "", fg = "#ef9f76" },
362 | { name = "terminal", text = "", fg = "#a6d189" },
363 | { name = "ejs", text = "", fg = "#e5c890" },
364 | { name = "brep", text = "", fg = "#a6d189" },
365 | { name = "rar", text = "", fg = "#e5c890" },
366 | { name = "gradle", text = "", fg = "#51576d" },
367 | { name = "gnumakefile", text = "", fg = "#737994" },
368 | { name = "applescript", text = "", fg = "#737994" },
369 | { name = "elm", text = "", fg = "#85c1dc" },
370 | { name = "ebook", text = "", fg = "#e5c890" },
371 | { name = "kra", text = "", fg = "#ca9ee6" },
372 | { name = "tf", text = "", fg = "#626880" },
373 | { name = "xls", text = "", fg = "#51576d" },
374 | { name = "fnl", text = "", fg = "#e5c890" },
375 | { name = "kdbx", text = "", fg = "#a6d189" },
376 | { name = "kicad_pcb", text = "", fg = "#f2d5cf" },
377 | { name = "cfg", text = "", fg = "#737994" },
378 | { name = "ape", text = "", fg = "#85c1dc" },
379 | { name = "org", text = "", fg = "#81c8be" },
380 | { name = "yml", text = "", fg = "#737994" },
381 | { name = "swift", text = "", fg = "#ef9f76" },
382 | { name = "eln", text = "", fg = "#737994" },
383 | { name = "sol", text = "", fg = "#85c1dc" },
384 | { name = "awk", text = "", fg = "#51576d" },
385 | { name = "7z", text = "", fg = "#e5c890" },
386 | { name = "apl", text = "⍝", fg = "#e5c890" },
387 | { name = "epp", text = "", fg = "#e5c890" },
388 | { name = "app", text = "", fg = "#414559" },
389 | { name = "dot", text = "", fg = "#51576d" },
390 | { name = "kpp", text = "", fg = "#ca9ee6" },
391 | { name = "eot", text = "", fg = "#f2d5cf" },
392 | { name = "hpp", text = "", fg = "#ca9ee6" },
393 | { name = "spec.tsx", text = "", fg = "#51576d" },
394 | { name = "hurl", text = "", fg = "#e78284" },
395 | { name = "cxxm", text = "", fg = "#85c1dc" },
396 | { name = "c", text = "", fg = "#8caaee" },
397 | { name = "fcmacro", text = "", fg = "#e78284" },
398 | { name = "sass", text = "", fg = "#e78284" },
399 | { name = "yaml", text = "", fg = "#737994" },
400 | { name = "xz", text = "", fg = "#e5c890" },
401 | { name = "material", text = "", fg = "#626880" },
402 | { name = "json5", text = "", fg = "#e5c890" },
403 | { name = "signature", text = "λ", fg = "#ef9f76" },
404 | { name = "3mf", text = "", fg = "#838ba7" },
405 | { name = "jpg", text = "", fg = "#ca9ee6" },
406 | { name = "xpi", text = "", fg = "#e78284" },
407 | { name = "fcmat", text = "", fg = "#e78284" },
408 | { name = "pot", text = "", fg = "#85c1dc" },
409 | { name = "bin", text = "", fg = "#414559" },
410 | { name = "xlsx", text = "", fg = "#51576d" },
411 | { name = "aac", text = "", fg = "#85c1dc" },
412 | { name = "kicad_sym", text = "", fg = "#f2d5cf" },
413 | { name = "xcstrings", text = "", fg = "#85c1dc" },
414 | { name = "lff", text = "", fg = "#f2d5cf" },
415 | { name = "xcf", text = "", fg = "#51576d" },
416 | { name = "azcli", text = "", fg = "#737994" },
417 | { name = "license", text = "", fg = "#e5c890" },
418 | { name = "jsonc", text = "", fg = "#e5c890" },
419 | { name = "xaml", text = "", fg = "#51576d" },
420 | { name = "md5", text = "", fg = "#838ba7" },
421 | { name = "xm", text = "", fg = "#85c1dc" },
422 | { name = "sln", text = "", fg = "#626880" },
423 | { name = "jl", text = "", fg = "#ca9ee6" },
424 | { name = "ml", text = "", fg = "#ef9f76" },
425 | { name = "http", text = "", fg = "#8caaee" },
426 | { name = "x", text = "", fg = "#8caaee" },
427 | { name = "wvc", text = "", fg = "#85c1dc" },
428 | { name = "wrz", text = "", fg = "#838ba7" },
429 | { name = "csproj", text = "", fg = "#51576d" },
430 | { name = "wrl", text = "", fg = "#838ba7" },
431 | { name = "wma", text = "", fg = "#85c1dc" },
432 | { name = "woff2", text = "", fg = "#f2d5cf" },
433 | { name = "woff", text = "", fg = "#f2d5cf" },
434 | { name = "tscn", text = "", fg = "#737994" },
435 | { name = "webmanifest", text = "", fg = "#e5c890" },
436 | { name = "webm", text = "", fg = "#ef9f76" },
437 | { name = "fcbak", text = "", fg = "#e78284" },
438 | { name = "log", text = "", fg = "#c6d0f5" },
439 | { name = "wav", text = "", fg = "#85c1dc" },
440 | { name = "wasm", text = "", fg = "#626880" },
441 | { name = "styl", text = "", fg = "#a6d189" },
442 | { name = "gif", text = "", fg = "#ca9ee6" },
443 | { name = "resi", text = "", fg = "#e78284" },
444 | { name = "aiff", text = "", fg = "#85c1dc" },
445 | { name = "sha256", text = "", fg = "#838ba7" },
446 | { name = "igs", text = "", fg = "#a6d189" },
447 | { name = "vsix", text = "", fg = "#626880" },
448 | { name = "vim", text = "", fg = "#a6d189" },
449 | { name = "diff", text = "", fg = "#51576d" },
450 | { name = "drl", text = "", fg = "#ea999c" },
451 | { name = "erl", text = "", fg = "#626880" },
452 | { name = "vhdl", text = "", fg = "#a6d189" },
453 | { name = "🔥", text = "", fg = "#ef9f76" },
454 | { name = "hrl", text = "", fg = "#626880" },
455 | { name = "fsi", text = "", fg = "#85c1dc" },
456 | { name = "mm", text = "", fg = "#85c1dc" },
457 | { name = "bz", text = "", fg = "#e5c890" },
458 | { name = "vh", text = "", fg = "#a6d189" },
459 | { name = "kdb", text = "", fg = "#a6d189" },
460 | { name = "gz", text = "", fg = "#e5c890" },
461 | { name = "cpp", text = "", fg = "#85c1dc" },
462 | { name = "ui", text = "", fg = "#626880" },
463 | { name = "txt", text = "", fg = "#a6d189" },
464 | { name = "spec.ts", text = "", fg = "#85c1dc" },
465 | { name = "ccm", text = "", fg = "#e78284" },
466 | { name = "typoscript", text = "", fg = "#ef9f76" },
467 | { name = "typ", text = "", fg = "#81c8be" },
468 | { name = "txz", text = "", fg = "#e5c890" },
469 | { name = "test.ts", text = "", fg = "#85c1dc" },
470 | { name = "tsx", text = "", fg = "#51576d" },
471 | { name = "mk", text = "", fg = "#737994" },
472 | { name = "webp", text = "", fg = "#ca9ee6" },
473 | { name = "opus", text = "", fg = "#626880" },
474 | { name = "bicep", text = "", fg = "#85c1dc" },
475 | { name = "ts", text = "", fg = "#85c1dc" },
476 | { name = "tres", text = "", fg = "#737994" },
477 | { name = "torrent", text = "", fg = "#81c8be" },
478 | { name = "cxx", text = "", fg = "#85c1dc" },
479 | { name = "iso", text = "", fg = "#f2d5cf" },
480 | { name = "ixx", text = "", fg = "#85c1dc" },
481 | { name = "hxx", text = "", fg = "#ca9ee6" },
482 | { name = "gql", text = "", fg = "#ca9ee6" },
483 | { name = "tmux", text = "", fg = "#a6d189" },
484 | { name = "ini", text = "", fg = "#737994" },
485 | { name = "m3u8", text = "", fg = "#ea999c" },
486 | { name = "image", text = "", fg = "#f2d5cf" },
487 | { name = "tfvars", text = "", fg = "#626880" },
488 | { name = "tex", text = "", fg = "#414559" },
489 | { name = "cbl", text = "⚙", fg = "#51576d" },
490 | { name = "flc", text = "", fg = "#f2d5cf" },
491 | { name = "elc", text = "", fg = "#737994" },
492 | { name = "test.tsx", text = "", fg = "#51576d" },
493 | { name = "twig", text = "", fg = "#a6d189" },
494 | { name = "sql", text = "", fg = "#f2d5cf" },
495 | { name = "test.jsx", text = "", fg = "#85c1dc" },
496 | { name = "htm", text = "", fg = "#e78284" },
497 | { name = "gcode", text = "", fg = "#626880" },
498 | { name = "test.js", text = "", fg = "#e5c890" },
499 | { name = "ino", text = "", fg = "#85c1dc" },
500 | { name = "tcl", text = "", fg = "#51576d" },
501 | { name = "cljs", text = "", fg = "#85c1dc" },
502 | { name = "tsconfig", text = "", fg = "#ef9f76" },
503 | { name = "img", text = "", fg = "#f2d5cf" },
504 | { name = "t", text = "", fg = "#85c1dc" },
505 | { name = "fcstd1", text = "", fg = "#e78284" },
506 | { name = "out", text = "", fg = "#414559" },
507 | { name = "jsx", text = "", fg = "#85c1dc" },
508 | { name = "bash", text = "", fg = "#a6d189" },
509 | { name = "edn", text = "", fg = "#85c1dc" },
510 | { name = "rss", text = "", fg = "#ef9f76" },
511 | { name = "flf", text = "", fg = "#f2d5cf" },
512 | { name = "cache", text = "", fg = "#f2d5cf" },
513 | { name = "sbt", text = "", fg = "#e78284" },
514 | { name = "cppm", text = "", fg = "#85c1dc" },
515 | { name = "svelte", text = "", fg = "#ef9f76" },
516 | { name = "mo", text = "∞", fg = "#838ba7" },
517 | { name = "sv", text = "", fg = "#a6d189" },
518 | { name = "ko", text = "", fg = "#f2d5cf" },
519 | { name = "suo", text = "", fg = "#626880" },
520 | { name = "sldasm", text = "", fg = "#a6d189" },
521 | { name = "icalendar", text = "", fg = "#303446" },
522 | { name = "go", text = "", fg = "#85c1dc" },
523 | { name = "sublime", text = "", fg = "#ef9f76" },
524 | { name = "stl", text = "", fg = "#838ba7" },
525 | { name = "mobi", text = "", fg = "#e5c890" },
526 | { name = "graphql", text = "", fg = "#ca9ee6" },
527 | { name = "m3u", text = "", fg = "#ea999c" },
528 | { name = "cpy", text = "⚙", fg = "#51576d" },
529 | { name = "kdenlive", text = "", fg = "#8caaee" },
530 | { name = "pyo", text = "", fg = "#e5c890" },
531 | { name = "po", text = "", fg = "#85c1dc" },
532 | { name = "scala", text = "", fg = "#e78284" },
533 | { name = "exs", text = "", fg = "#ca9ee6" },
534 | { name = "odp", text = "", fg = "#ef9f76" },
535 | { name = "dump", text = "", fg = "#f2d5cf" },
536 | { name = "stp", text = "", fg = "#a6d189" },
537 | { name = "step", text = "", fg = "#a6d189" },
538 | { name = "ste", text = "", fg = "#a6d189" },
539 | { name = "aif", text = "", fg = "#85c1dc" },
540 | { name = "strings", text = "", fg = "#85c1dc" },
541 | { name = "cp", text = "", fg = "#85c1dc" },
542 | { name = "fsscript", text = "", fg = "#85c1dc" },
543 | { name = "mli", text = "", fg = "#ef9f76" },
544 | { name = "bak", text = "", fg = "#737994" },
545 | { name = "ssa", text = "", fg = "#e5c890" },
546 | { name = "toml", text = "", fg = "#e78284" },
547 | { name = "makefile", text = "", fg = "#737994" },
548 | { name = "php", text = "", fg = "#ca9ee6" },
549 | { name = "zst", text = "", fg = "#e5c890" },
550 | { name = "spec.jsx", text = "", fg = "#85c1dc" },
551 | { name = "kbx", text = "", fg = "#626880" },
552 | { name = "fbx", text = "", fg = "#838ba7" },
553 | { name = "blend", text = "", fg = "#ef9f76" },
554 | { name = "ifc", text = "", fg = "#a6d189" },
555 | { name = "spec.js", text = "", fg = "#e5c890" },
556 | { name = "so", text = "", fg = "#f2d5cf" },
557 | { name = "desktop", text = "", fg = "#414559" },
558 | { name = "sml", text = "λ", fg = "#ef9f76" },
559 | { name = "slvs", text = "", fg = "#a6d189" },
560 | { name = "pp", text = "", fg = "#e5c890" },
561 | { name = "ps1", text = "", fg = "#737994" },
562 | { name = "dropbox", text = "", fg = "#626880" },
563 | { name = "kicad_mod", text = "", fg = "#f2d5cf" },
564 | { name = "bat", text = "", fg = "#a6d189" },
565 | { name = "slim", text = "", fg = "#e78284" },
566 | { name = "skp", text = "", fg = "#a6d189" },
567 | { name = "css", text = "", fg = "#8caaee" },
568 | { name = "xul", text = "", fg = "#ef9f76" },
569 | { name = "ige", text = "", fg = "#a6d189" },
570 | { name = "glb", text = "", fg = "#e5c890" },
571 | { name = "ppt", text = "", fg = "#e78284" },
572 | { name = "sha512", text = "", fg = "#838ba7" },
573 | { name = "ics", text = "", fg = "#303446" },
574 | { name = "mdx", text = "", fg = "#85c1dc" },
575 | { name = "sha1", text = "", fg = "#838ba7" },
576 | { name = "f3d", text = "", fg = "#a6d189" },
577 | { name = "ass", text = "", fg = "#e5c890" },
578 | { name = "godot", text = "", fg = "#737994" },
579 | { name = "ifb", text = "", fg = "#303446" },
580 | { name = "cson", text = "", fg = "#e5c890" },
581 | { name = "lib", text = "", fg = "#232634" },
582 | { name = "luac", text = "", fg = "#85c1dc" },
583 | { name = "heex", text = "", fg = "#ca9ee6" },
584 | { name = "scm", text = "", fg = "#f2d5cf" },
585 | { name = "psd1", text = "", fg = "#737994" },
586 | { name = "sc", text = "", fg = "#e78284" },
587 | { name = "scad", text = "", fg = "#e5c890" },
588 | { name = "kts", text = "", fg = "#737994" },
589 | { name = "svh", text = "", fg = "#a6d189" },
590 | { name = "mts", text = "", fg = "#85c1dc" },
591 | { name = "nfo", text = "", fg = "#e5c890" },
592 | { name = "pck", text = "", fg = "#737994" },
593 | { name = "rproj", text = "", fg = "#81c8be" },
594 | { name = "rlib", text = "", fg = "#ef9f76" },
595 | { name = "cljd", text = "", fg = "#85c1dc" },
596 | { name = "ods", text = "", fg = "#a6d189" },
597 | { name = "res", text = "", fg = "#e78284" },
598 | { name = "apk", text = "", fg = "#a6d189" },
599 | { name = "haml", text = "", fg = "#f2d5cf" },
600 | { name = "d.ts", text = "", fg = "#ef9f76" },
601 | { name = "razor", text = "", fg = "#51576d" },
602 | { name = "rake", text = "", fg = "#292c3c" },
603 | { name = "patch", text = "", fg = "#51576d" },
604 | { name = "cuh", text = "", fg = "#ca9ee6" },
605 | { name = "d", text = "", fg = "#e78284" },
606 | { name = "query", text = "", fg = "#a6d189" },
607 | { name = "psb", text = "", fg = "#85c1dc" },
608 | { name = "nu", text = ">", fg = "#81c8be" },
609 | { name = "mov", text = "", fg = "#ef9f76" },
610 | { name = "lrc", text = "", fg = "#e5c890" },
611 | { name = "pyx", text = "", fg = "#8caaee" },
612 | { name = "pyw", text = "", fg = "#8caaee" },
613 | { name = "cu", text = "", fg = "#a6d189" },
614 | { name = "bazel", text = "", fg = "#a6d189" },
615 | { name = "obj", text = "", fg = "#838ba7" },
616 | { name = "pyi", text = "", fg = "#e5c890" },
617 | { name = "pyd", text = "", fg = "#e5c890" },
618 | { name = "exe", text = "", fg = "#414559" },
619 | { name = "pyc", text = "", fg = "#e5c890" },
620 | { name = "fctb", text = "", fg = "#e78284" },
621 | { name = "part", text = "", fg = "#81c8be" },
622 | { name = "blade.php", text = "", fg = "#e78284" },
623 | { name = "git", text = "", fg = "#e78284" },
624 | { name = "psd", text = "", fg = "#85c1dc" },
625 | { name = "qss", text = "", fg = "#a6d189" },
626 | { name = "csv", text = "", fg = "#a6d189" },
627 | { name = "psm1", text = "", fg = "#737994" },
628 | { name = "dconf", text = "", fg = "#f2d5cf" },
629 | { name = "config.ru", text = "", fg = "#292c3c" },
630 | { name = "prisma", text = "", fg = "#737994" },
631 | { name = "conf", text = "", fg = "#737994" },
632 | { name = "clj", text = "", fg = "#a6d189" },
633 | { name = "o", text = "", fg = "#414559" },
634 | { name = "mp4", text = "", fg = "#ef9f76" },
635 | { name = "cc", text = "", fg = "#e78284" },
636 | { name = "kicad_prl", text = "", fg = "#f2d5cf" },
637 | { name = "bz3", text = "", fg = "#e5c890" },
638 | { name = "asc", text = "", fg = "#626880" },
639 | { name = "png", text = "", fg = "#ca9ee6" },
640 | { name = "android", text = "", fg = "#a6d189" },
641 | { name = "pm", text = "", fg = "#85c1dc" },
642 | { name = "h", text = "", fg = "#ca9ee6" },
643 | { name = "pls", text = "", fg = "#ea999c" },
644 | { name = "ipynb", text = "", fg = "#ef9f76" },
645 | { name = "pl", text = "", fg = "#85c1dc" },
646 | { name = "ads", text = "", fg = "#f2d5cf" },
647 | { name = "sqlite", text = "", fg = "#f2d5cf" },
648 | { name = "pdf", text = "", fg = "#e78284" },
649 | { name = "pcm", text = "", fg = "#626880" },
650 | { name = "ico", text = "", fg = "#e5c890" },
651 | { name = "a", text = "", fg = "#f2d5cf" },
652 | { name = "R", text = "", fg = "#626880" },
653 | { name = "ogg", text = "", fg = "#626880" },
654 | { name = "pxd", text = "", fg = "#8caaee" },
655 | { name = "kdenlivetitle", text = "", fg = "#8caaee" },
656 | { name = "jxl", text = "", fg = "#ca9ee6" },
657 | { name = "nswag", text = "", fg = "#a6d189" },
658 | { name = "nim", text = "", fg = "#e5c890" },
659 | { name = "bqn", text = "⎉", fg = "#626880" },
660 | { name = "cts", text = "", fg = "#85c1dc" },
661 | { name = "fcparam", text = "", fg = "#e78284" },
662 | { name = "rs", text = "", fg = "#ef9f76" },
663 | { name = "mpp", text = "", fg = "#85c1dc" },
664 | { name = "fdmdownload", text = "", fg = "#81c8be" },
665 | { name = "pptx", text = "", fg = "#e78284" },
666 | { name = "jpeg", text = "", fg = "#ca9ee6" },
667 | { name = "bib", text = "", fg = "#e5c890" },
668 | { name = "vhd", text = "", fg = "#a6d189" },
669 | { name = "m", text = "", fg = "#8caaee" },
670 | { name = "js", text = "", fg = "#e5c890" },
671 | { name = "eex", text = "", fg = "#ca9ee6" },
672 | { name = "tbc", text = "", fg = "#51576d" },
673 | { name = "astro", text = "", fg = "#e78284" },
674 | { name = "sha224", text = "", fg = "#838ba7" },
675 | { name = "xcplayground", text = "", fg = "#ef9f76" },
676 | { name = "el", text = "", fg = "#737994" },
677 | { name = "m4v", text = "", fg = "#ef9f76" },
678 | { name = "m4a", text = "", fg = "#85c1dc" },
679 | { name = "cs", text = "", fg = "#a6d189" },
680 | { name = "hs", text = "", fg = "#ca9ee6" },
681 | { name = "tgz", text = "", fg = "#e5c890" },
682 | { name = "fs", text = "", fg = "#85c1dc" },
683 | { name = "luau", text = "", fg = "#8caaee" },
684 | { name = "dxf", text = "", fg = "#a6d189" },
685 | { name = "download", text = "", fg = "#81c8be" },
686 | { name = "cast", text = "", fg = "#ef9f76" },
687 | { name = "qrc", text = "", fg = "#a6d189" },
688 | { name = "lua", text = "", fg = "#85c1dc" },
689 | { name = "lhs", text = "", fg = "#ca9ee6" },
690 | { name = "md", text = "", fg = "#c6d0f5" },
691 | { name = "leex", text = "", fg = "#ca9ee6" },
692 | { name = "ai", text = "", fg = "#e5c890" },
693 | { name = "lck", text = "", fg = "#b5bfe2" },
694 | { name = "kt", text = "", fg = "#737994" },
695 | { name = "bicepparam", text = "", fg = "#ca9ee6" },
696 | { name = "hex", text = "", fg = "#626880" },
697 | { name = "zig", text = "", fg = "#ef9f76" },
698 | { name = "bzl", text = "", fg = "#a6d189" },
699 | { name = "cljc", text = "", fg = "#a6d189" },
700 | { name = "kicad_dru", text = "", fg = "#f2d5cf" },
701 | { name = "fctl", text = "", fg = "#e78284" },
702 | { name = "f#", text = "", fg = "#85c1dc" },
703 | { name = "odt", text = "", fg = "#85c1dc" },
704 | { name = "conda", text = "", fg = "#a6d189" },
705 | { name = "vala", text = "", fg = "#51576d" },
706 | { name = "erb", text = "", fg = "#292c3c" },
707 | { name = "mp3", text = "", fg = "#85c1dc" },
708 | { name = "bz2", text = "", fg = "#e5c890" },
709 | { name = "coffee", text = "", fg = "#e5c890" },
710 | { name = "cr", text = "", fg = "#f2d5cf" },
711 | { name = "f90", text = "", fg = "#51576d" },
712 | { name = "jwmrc", text = "", fg = "#737994" },
713 | { name = "c++", text = "", fg = "#e78284" },
714 | { name = "fcscript", text = "", fg = "#e78284" },
715 | { name = "fods", text = "", fg = "#a6d189" },
716 | { name = "cue", text = "", fg = "#ea999c" },
717 | { name = "srt", text = "", fg = "#e5c890" },
718 | { name = "info", text = "", fg = "#e5c890" },
719 | { name = "hh", text = "", fg = "#ca9ee6" },
720 | { name = "sig", text = "λ", fg = "#ef9f76" },
721 | { name = "html", text = "", fg = "#e78284" },
722 | { name = "iges", text = "", fg = "#a6d189" },
723 | { name = "kicad_wks", text = "", fg = "#f2d5cf" },
724 | { name = "hbs", text = "", fg = "#ef9f76" },
725 | { name = "fcstd", text = "", fg = "#e78284" },
726 | { name = "gresource", text = "", fg = "#f2d5cf" },
727 | { name = "sub", text = "", fg = "#e5c890" },
728 | { name = "ical", text = "", fg = "#303446" },
729 | { name = "crdownload", text = "", fg = "#81c8be" },
730 | { name = "pub", text = "", fg = "#e5c890" },
731 | { name = "vue", text = "", fg = "#a6d189" },
732 | { name = "gd", text = "", fg = "#737994" },
733 | { name = "fsx", text = "", fg = "#85c1dc" },
734 | { name = "mkv", text = "", fg = "#ef9f76" },
735 | { name = "py", text = "", fg = "#e5c890" },
736 | { name = "kicad_sch", text = "", fg = "#f2d5cf" },
737 | { name = "epub", text = "", fg = "#e5c890" },
738 | { name = "env", text = "", fg = "#e5c890" },
739 | { name = "magnet", text = "", fg = "#e78284" },
740 | { name = "elf", text = "", fg = "#414559" },
741 | { name = "fodg", text = "", fg = "#e5c890" },
742 | { name = "svg", text = "", fg = "#e5c890" },
743 | { name = "dwg", text = "", fg = "#a6d189" },
744 | { name = "docx", text = "", fg = "#51576d" },
745 | { name = "pro", text = "", fg = "#e5c890" },
746 | { name = "db", text = "", fg = "#f2d5cf" },
747 | { name = "rb", text = "", fg = "#292c3c" },
748 | { name = "r", text = "", fg = "#626880" },
749 | { name = "scss", text = "", fg = "#e78284" },
750 | { name = "cow", text = "", fg = "#ef9f76" },
751 | { name = "gleam", text = "", fg = "#f4b8e4" },
752 | { name = "v", text = "", fg = "#a6d189" },
753 | { name = "kicad_pro", text = "", fg = "#f2d5cf" },
754 | { name = "liquid", text = "", fg = "#a6d189" },
755 | { name = "zip", text = "", fg = "#e5c890" },
756 | ]
757 |
--------------------------------------------------------------------------------
/themes/frappe/catppuccin-frappe-sky.toml:
--------------------------------------------------------------------------------
1 | [manager]
2 | cwd = { fg = "#81c8be" }
3 |
4 | hovered = { fg = "#303446", bg = "#99d1db" }
5 | preview_hovered = { fg = "#303446", bg = "#c6d0f5" }
6 |
7 | find_keyword = { fg = "#e5c890", italic = true }
8 | find_position = { fg = "#f4b8e4", bg = "reset", italic = true }
9 |
10 | marker_copied = { fg = "#a6d189", bg = "#a6d189" }
11 | marker_cut = { fg = "#e78284", bg = "#e78284" }
12 | marker_marked = { fg = "#81c8be", bg = "#81c8be" }
13 | marker_selected = { fg = "#99d1db", bg = "#99d1db" }
14 |
15 | tab_active = { fg = "#303446", bg = "#c6d0f5" }
16 | tab_inactive = { fg = "#c6d0f5", bg = "#51576d" }
17 | tab_width = 1
18 |
19 | count_copied = { fg = "#303446", bg = "#a6d189" }
20 | count_cut = { fg = "#303446", bg = "#e78284" }
21 | count_selected = { fg = "#303446", bg = "#99d1db" }
22 |
23 | border_symbol = "│"
24 | border_style = { fg = "#838ba7" }
25 |
26 | syntect_theme = "~/.config/yazi/Catppuccin-frappe.tmTheme"
27 |
28 | [mode]
29 | normal_main = { fg = "#303446", bg = "#99d1db", bold = true }
30 | normal_alt = { fg = "#99d1db", bg = "#414559"}
31 |
32 | select_main = { fg = "#303446", bg = "#a6d189", bold = true }
33 | select_alt = { fg = "#a6d189", bg = "#414559"}
34 |
35 | unset_main = { fg = "#303446", bg = "#eebebe", bold = true }
36 | unset_alt = { fg = "#eebebe", bg = "#414559"}
37 |
38 | [status]
39 | separator_open = ""
40 | separator_close = ""
41 |
42 | progress_label = { fg = "#ffffff", bold = true }
43 | progress_normal = { fg = "#8caaee", bg = "#51576d" }
44 | progress_error = { fg = "#e78284", bg = "#51576d" }
45 |
46 | perm_type = { fg = "#8caaee" }
47 | perm_read = { fg = "#e5c890" }
48 | perm_write = { fg = "#e78284" }
49 | perm_exec = { fg = "#a6d189" }
50 | perm_sep = { fg = "#838ba7" }
51 |
52 | [input]
53 | border = { fg = "#99d1db" }
54 | title = {}
55 | value = {}
56 | selected = { reversed = true }
57 |
58 | [pick]
59 | border = { fg = "#99d1db" }
60 | active = { fg = "#f4b8e4" }
61 | inactive = {}
62 |
63 | [confirm]
64 | border = { fg = "#99d1db" }
65 | title = { fg = "#99d1db" }
66 | content = {}
67 | list = {}
68 | btn_yes = { reversed = true }
69 | btn_no = {}
70 |
71 | [cmp]
72 | border = { fg = "#99d1db" }
73 |
74 | [tasks]
75 | border = { fg = "#99d1db" }
76 | title = {}
77 | hovered = { underline = true }
78 |
79 | [which]
80 | mask = { bg = "#414559" }
81 | cand = { fg = "#81c8be" }
82 | rest = { fg = "#949cbb" }
83 | desc = { fg = "#f4b8e4" }
84 | separator = " "
85 | separator_style = { fg = "#626880" }
86 |
87 | [help]
88 | on = { fg = "#81c8be" }
89 | run = { fg = "#f4b8e4" }
90 | desc = { fg = "#949cbb" }
91 | hovered = { bg = "#626880", bold = true }
92 | footer = { fg = "#c6d0f5", bg = "#51576d" }
93 |
94 | [notify]
95 | title_info = { fg = "#81c8be" }
96 | title_warn = { fg = "#e5c890" }
97 | title_error = { fg = "#e78284" }
98 |
99 | [filetype]
100 | rules = [
101 | # Media
102 | { mime = "image/*", fg = "#81c8be" },
103 | { mime = "{audio,video}/*", fg = "#e5c890" },
104 |
105 | # Archives
106 | { mime = "application/*zip", fg = "#f4b8e4" },
107 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f4b8e4" },
108 |
109 | # Documents
110 | { mime = "application/{pdf,doc,rtf}", fg = "#a6d189" },
111 |
112 | # Fallback
113 | { name = "*", fg = "#c6d0f5" },
114 | { name = "*/", fg = "#99d1db" }
115 | ]
116 |
117 | [spot]
118 | border = { fg = "#99d1db" }
119 | title = { fg = "#99d1db" }
120 | tbl_cell = { fg = "#99d1db", reversed = true }
121 | tbl_col = { bold = true }
122 |
123 | [icon]
124 | files = [
125 | { name = "kritadisplayrc", text = "", fg = "#ca9ee6" },
126 | { name = ".gtkrc-2.0", text = "", fg = "#f2d5cf" },
127 | { name = "bspwmrc", text = "", fg = "#232634" },
128 | { name = "webpack", text = "", fg = "#85c1dc" },
129 | { name = "tsconfig.json", text = "", fg = "#85c1dc" },
130 | { name = ".vimrc", text = "", fg = "#a6d189" },
131 | { name = "gemfile$", text = "", fg = "#292c3c" },
132 | { name = "xmobarrc", text = "", fg = "#e78284" },
133 | { name = "avif", text = "", fg = "#ca9ee6" },
134 | { name = "fp-info-cache", text = "", fg = "#f2d5cf" },
135 | { name = ".zshrc", text = "", fg = "#a6d189" },
136 | { name = "robots.txt", text = "", fg = "#626880" },
137 | { name = "dockerfile", text = "", fg = "#8caaee" },
138 | { name = ".git-blame-ignore-revs", text = "", fg = "#e78284" },
139 | { name = ".nvmrc", text = "", fg = "#a6d189" },
140 | { name = "hyprpaper.conf", text = "", fg = "#81c8be" },
141 | { name = ".prettierignore", text = "", fg = "#8caaee" },
142 | { name = "rakefile", text = "", fg = "#292c3c" },
143 | { name = "code_of_conduct", text = "", fg = "#e78284" },
144 | { name = "cmakelists.txt", text = "", fg = "#c6d0f5" },
145 | { name = ".env", text = "", fg = "#e5c890" },
146 | { name = "copying.lesser", text = "", fg = "#e5c890" },
147 | { name = "readme", text = "", fg = "#f2d5cf" },
148 | { name = "settings.gradle", text = "", fg = "#51576d" },
149 | { name = "gruntfile.coffee", text = "", fg = "#ef9f76" },
150 | { name = ".eslintignore", text = "", fg = "#51576d" },
151 | { name = "kalgebrarc", text = "", fg = "#8caaee" },
152 | { name = "kdenliverc", text = "", fg = "#8caaee" },
153 | { name = ".prettierrc.cjs", text = "", fg = "#8caaee" },
154 | { name = "cantorrc", text = "", fg = "#8caaee" },
155 | { name = "rmd", text = "", fg = "#85c1dc" },
156 | { name = "vagrantfile$", text = "", fg = "#626880" },
157 | { name = ".Xauthority", text = "", fg = "#ef9f76" },
158 | { name = "prettier.config.ts", text = "", fg = "#8caaee" },
159 | { name = "node_modules", text = "", fg = "#e78284" },
160 | { name = ".prettierrc.toml", text = "", fg = "#8caaee" },
161 | { name = "build.zig.zon", text = "", fg = "#ef9f76" },
162 | { name = ".ds_store", text = "", fg = "#51576d" },
163 | { name = "PKGBUILD", text = "", fg = "#8caaee" },
164 | { name = ".prettierrc", text = "", fg = "#8caaee" },
165 | { name = ".bash_profile", text = "", fg = "#a6d189" },
166 | { name = ".npmignore", text = "", fg = "#e78284" },
167 | { name = ".mailmap", text = "", fg = "#e78284" },
168 | { name = ".codespellrc", text = "", fg = "#a6d189" },
169 | { name = "svelte.config.js", text = "", fg = "#ef9f76" },
170 | { name = "eslint.config.ts", text = "", fg = "#51576d" },
171 | { name = "config", text = "", fg = "#737994" },
172 | { name = ".gitlab-ci.yml", text = "", fg = "#e78284" },
173 | { name = ".gitconfig", text = "", fg = "#e78284" },
174 | { name = "_gvimrc", text = "", fg = "#a6d189" },
175 | { name = ".xinitrc", text = "", fg = "#ef9f76" },
176 | { name = "checkhealth", text = "", fg = "#8caaee" },
177 | { name = "sxhkdrc", text = "", fg = "#232634" },
178 | { name = ".bashrc", text = "", fg = "#a6d189" },
179 | { name = "tailwind.config.mjs", text = "", fg = "#85c1dc" },
180 | { name = "ext_typoscript_setup.txt", text = "", fg = "#ef9f76" },
181 | { name = "commitlint.config.ts", text = "", fg = "#81c8be" },
182 | { name = "py.typed", text = "", fg = "#e5c890" },
183 | { name = ".nanorc", text = "", fg = "#303446" },
184 | { name = "commit_editmsg", text = "", fg = "#e78284" },
185 | { name = ".luaurc", text = "", fg = "#8caaee" },
186 | { name = "fp-lib-table", text = "", fg = "#f2d5cf" },
187 | { name = ".editorconfig", text = "", fg = "#f2d5cf" },
188 | { name = "justfile", text = "", fg = "#737994" },
189 | { name = "kdeglobals", text = "", fg = "#8caaee" },
190 | { name = "license.md", text = "", fg = "#e5c890" },
191 | { name = ".clang-format", text = "", fg = "#737994" },
192 | { name = "docker-compose.yaml", text = "", fg = "#8caaee" },
193 | { name = "copying", text = "", fg = "#e5c890" },
194 | { name = "go.mod", text = "", fg = "#85c1dc" },
195 | { name = "lxqt.conf", text = "", fg = "#8caaee" },
196 | { name = "brewfile", text = "", fg = "#292c3c" },
197 | { name = "gulpfile.coffee", text = "", fg = "#e78284" },
198 | { name = ".dockerignore", text = "", fg = "#8caaee" },
199 | { name = ".settings.json", text = "", fg = "#626880" },
200 | { name = "tailwind.config.js", text = "", fg = "#85c1dc" },
201 | { name = ".clang-tidy", text = "", fg = "#737994" },
202 | { name = ".gvimrc", text = "", fg = "#a6d189" },
203 | { name = "nuxt.config.cjs", text = "", fg = "#81c8be" },
204 | { name = "xsettingsd.conf", text = "", fg = "#ef9f76" },
205 | { name = "nuxt.config.js", text = "", fg = "#81c8be" },
206 | { name = "eslint.config.cjs", text = "", fg = "#51576d" },
207 | { name = "sym-lib-table", text = "", fg = "#f2d5cf" },
208 | { name = ".condarc", text = "", fg = "#a6d189" },
209 | { name = "xmonad.hs", text = "", fg = "#e78284" },
210 | { name = "tmux.conf", text = "", fg = "#a6d189" },
211 | { name = "xmobarrc.hs", text = "", fg = "#e78284" },
212 | { name = ".prettierrc.yaml", text = "", fg = "#8caaee" },
213 | { name = ".pre-commit-config.yaml", text = "", fg = "#e5c890" },
214 | { name = "i3blocks.conf", text = "", fg = "#c6d0f5" },
215 | { name = "xorg.conf", text = "", fg = "#ef9f76" },
216 | { name = ".zshenv", text = "", fg = "#a6d189" },
217 | { name = "vlcrc", text = "", fg = "#ef9f76" },
218 | { name = "license", text = "", fg = "#e5c890" },
219 | { name = "unlicense", text = "", fg = "#e5c890" },
220 | { name = "tmux.conf.local", text = "", fg = "#a6d189" },
221 | { name = ".SRCINFO", text = "", fg = "#8caaee" },
222 | { name = "tailwind.config.ts", text = "", fg = "#85c1dc" },
223 | { name = "security.md", text = "", fg = "#b5bfe2" },
224 | { name = "security", text = "", fg = "#b5bfe2" },
225 | { name = ".eslintrc", text = "", fg = "#51576d" },
226 | { name = "gradle.properties", text = "", fg = "#51576d" },
227 | { name = "code_of_conduct.md", text = "", fg = "#e78284" },
228 | { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#ef9f76" },
229 | { name = "PrusaSlicer.ini", text = "", fg = "#ef9f76" },
230 | { name = "procfile", text = "", fg = "#ca9ee6" },
231 | { name = "mpv.conf", text = "", fg = "#292c3c" },
232 | { name = ".prettierrc.json5", text = "", fg = "#8caaee" },
233 | { name = "i3status.conf", text = "", fg = "#c6d0f5" },
234 | { name = "prettier.config.mjs", text = "", fg = "#8caaee" },
235 | { name = ".pylintrc", text = "", fg = "#737994" },
236 | { name = "prettier.config.cjs", text = "", fg = "#8caaee" },
237 | { name = ".luacheckrc", text = "", fg = "#8caaee" },
238 | { name = "containerfile", text = "", fg = "#8caaee" },
239 | { name = "eslint.config.mjs", text = "", fg = "#51576d" },
240 | { name = "gruntfile.js", text = "", fg = "#ef9f76" },
241 | { name = "bun.lockb", text = "", fg = "#f2d5cf" },
242 | { name = ".gitattributes", text = "", fg = "#e78284" },
243 | { name = "gruntfile.ts", text = "", fg = "#ef9f76" },
244 | { name = "pom.xml", text = "", fg = "#292c3c" },
245 | { name = "favicon.ico", text = "", fg = "#e5c890" },
246 | { name = "package-lock.json", text = "", fg = "#292c3c" },
247 | { name = "build", text = "", fg = "#a6d189" },
248 | { name = "package.json", text = "", fg = "#e78284" },
249 | { name = "nuxt.config.ts", text = "", fg = "#81c8be" },
250 | { name = "nuxt.config.mjs", text = "", fg = "#81c8be" },
251 | { name = "mix.lock", text = "", fg = "#ca9ee6" },
252 | { name = "makefile", text = "", fg = "#737994" },
253 | { name = "gulpfile.js", text = "", fg = "#e78284" },
254 | { name = "lxde-rc.xml", text = "", fg = "#838ba7" },
255 | { name = "kritarc", text = "", fg = "#ca9ee6" },
256 | { name = "gtkrc", text = "", fg = "#f2d5cf" },
257 | { name = "ionic.config.json", text = "", fg = "#8caaee" },
258 | { name = ".prettierrc.mjs", text = "", fg = "#8caaee" },
259 | { name = ".prettierrc.yml", text = "", fg = "#8caaee" },
260 | { name = ".npmrc", text = "", fg = "#e78284" },
261 | { name = "weston.ini", text = "", fg = "#e5c890" },
262 | { name = "gulpfile.babel.js", text = "", fg = "#e78284" },
263 | { name = "i18n.config.ts", text = "", fg = "#838ba7" },
264 | { name = "commitlint.config.js", text = "", fg = "#81c8be" },
265 | { name = ".gitmodules", text = "", fg = "#e78284" },
266 | { name = "gradle-wrapper.properties", text = "", fg = "#51576d" },
267 | { name = "hypridle.conf", text = "", fg = "#81c8be" },
268 | { name = "vercel.json", text = "▲", fg = "#f2d5cf" },
269 | { name = "hyprlock.conf", text = "", fg = "#81c8be" },
270 | { name = "go.sum", text = "", fg = "#85c1dc" },
271 | { name = "kdenlive-layoutsrc", text = "", fg = "#8caaee" },
272 | { name = "gruntfile.babel.js", text = "", fg = "#ef9f76" },
273 | { name = "compose.yml", text = "", fg = "#8caaee" },
274 | { name = "i18n.config.js", text = "", fg = "#838ba7" },
275 | { name = "readme.md", text = "", fg = "#f2d5cf" },
276 | { name = "gradlew", text = "", fg = "#51576d" },
277 | { name = "go.work", text = "", fg = "#85c1dc" },
278 | { name = "gulpfile.ts", text = "", fg = "#e78284" },
279 | { name = "gnumakefile", text = "", fg = "#737994" },
280 | { name = "FreeCAD.conf", text = "", fg = "#e78284" },
281 | { name = "compose.yaml", text = "", fg = "#8caaee" },
282 | { name = "eslint.config.js", text = "", fg = "#51576d" },
283 | { name = "hyprland.conf", text = "", fg = "#81c8be" },
284 | { name = "docker-compose.yml", text = "", fg = "#8caaee" },
285 | { name = "groovy", text = "", fg = "#626880" },
286 | { name = "QtProject.conf", text = "", fg = "#a6d189" },
287 | { name = "platformio.ini", text = "", fg = "#ef9f76" },
288 | { name = "build.gradle", text = "", fg = "#51576d" },
289 | { name = ".nuxtrc", text = "", fg = "#81c8be" },
290 | { name = "_vimrc", text = "", fg = "#a6d189" },
291 | { name = ".zprofile", text = "", fg = "#a6d189" },
292 | { name = ".xsession", text = "", fg = "#ef9f76" },
293 | { name = "prettier.config.js", text = "", fg = "#8caaee" },
294 | { name = ".babelrc", text = "", fg = "#e5c890" },
295 | { name = "workspace", text = "", fg = "#a6d189" },
296 | { name = ".prettierrc.json", text = "", fg = "#8caaee" },
297 | { name = ".prettierrc.js", text = "", fg = "#8caaee" },
298 | { name = ".Xresources", text = "", fg = "#ef9f76" },
299 | { name = ".gitignore", text = "", fg = "#e78284" },
300 | { name = ".justfile", text = "", fg = "#737994" },
301 | ]
302 | exts = [
303 | { name = "otf", text = "", fg = "#f2d5cf" },
304 | { name = "import", text = "", fg = "#f2d5cf" },
305 | { name = "krz", text = "", fg = "#ca9ee6" },
306 | { name = "adb", text = "", fg = "#81c8be" },
307 | { name = "ttf", text = "", fg = "#f2d5cf" },
308 | { name = "webpack", text = "", fg = "#85c1dc" },
309 | { name = "dart", text = "", fg = "#51576d" },
310 | { name = "vsh", text = "", fg = "#838ba7" },
311 | { name = "doc", text = "", fg = "#51576d" },
312 | { name = "zsh", text = "", fg = "#a6d189" },
313 | { name = "ex", text = "", fg = "#ca9ee6" },
314 | { name = "hx", text = "", fg = "#ef9f76" },
315 | { name = "fodt", text = "", fg = "#85c1dc" },
316 | { name = "mojo", text = "", fg = "#ef9f76" },
317 | { name = "templ", text = "", fg = "#e5c890" },
318 | { name = "nix", text = "", fg = "#85c1dc" },
319 | { name = "cshtml", text = "", fg = "#51576d" },
320 | { name = "fish", text = "", fg = "#51576d" },
321 | { name = "ply", text = "", fg = "#838ba7" },
322 | { name = "sldprt", text = "", fg = "#a6d189" },
323 | { name = "gemspec", text = "", fg = "#292c3c" },
324 | { name = "mjs", text = "", fg = "#e5c890" },
325 | { name = "csh", text = "", fg = "#51576d" },
326 | { name = "cmake", text = "", fg = "#c6d0f5" },
327 | { name = "fodp", text = "", fg = "#ef9f76" },
328 | { name = "vi", text = "", fg = "#e5c890" },
329 | { name = "msf", text = "", fg = "#8caaee" },
330 | { name = "blp", text = "", fg = "#8caaee" },
331 | { name = "less", text = "", fg = "#414559" },
332 | { name = "sh", text = "", fg = "#51576d" },
333 | { name = "odg", text = "", fg = "#e5c890" },
334 | { name = "mint", text = "", fg = "#a6d189" },
335 | { name = "dll", text = "", fg = "#232634" },
336 | { name = "odf", text = "", fg = "#e78284" },
337 | { name = "sqlite3", text = "", fg = "#f2d5cf" },
338 | { name = "Dockerfile", text = "", fg = "#8caaee" },
339 | { name = "ksh", text = "", fg = "#51576d" },
340 | { name = "rmd", text = "", fg = "#85c1dc" },
341 | { name = "wv", text = "", fg = "#85c1dc" },
342 | { name = "xml", text = "", fg = "#ef9f76" },
343 | { name = "markdown", text = "", fg = "#c6d0f5" },
344 | { name = "qml", text = "", fg = "#a6d189" },
345 | { name = "3gp", text = "", fg = "#ef9f76" },
346 | { name = "pxi", text = "", fg = "#8caaee" },
347 | { name = "flac", text = "", fg = "#626880" },
348 | { name = "gpr", text = "", fg = "#ca9ee6" },
349 | { name = "huff", text = "", fg = "#51576d" },
350 | { name = "json", text = "", fg = "#e5c890" },
351 | { name = "gv", text = "", fg = "#51576d" },
352 | { name = "bmp", text = "", fg = "#ca9ee6" },
353 | { name = "lock", text = "", fg = "#b5bfe2" },
354 | { name = "sha384", text = "", fg = "#838ba7" },
355 | { name = "cobol", text = "⚙", fg = "#51576d" },
356 | { name = "cob", text = "⚙", fg = "#51576d" },
357 | { name = "java", text = "", fg = "#e78284" },
358 | { name = "cjs", text = "", fg = "#e5c890" },
359 | { name = "qm", text = "", fg = "#85c1dc" },
360 | { name = "ebuild", text = "", fg = "#414559" },
361 | { name = "mustache", text = "", fg = "#ef9f76" },
362 | { name = "terminal", text = "", fg = "#a6d189" },
363 | { name = "ejs", text = "", fg = "#e5c890" },
364 | { name = "brep", text = "", fg = "#a6d189" },
365 | { name = "rar", text = "", fg = "#e5c890" },
366 | { name = "gradle", text = "", fg = "#51576d" },
367 | { name = "gnumakefile", text = "", fg = "#737994" },
368 | { name = "applescript", text = "", fg = "#737994" },
369 | { name = "elm", text = "", fg = "#85c1dc" },
370 | { name = "ebook", text = "", fg = "#e5c890" },
371 | { name = "kra", text = "", fg = "#ca9ee6" },
372 | { name = "tf", text = "", fg = "#626880" },
373 | { name = "xls", text = "", fg = "#51576d" },
374 | { name = "fnl", text = "", fg = "#e5c890" },
375 | { name = "kdbx", text = "", fg = "#a6d189" },
376 | { name = "kicad_pcb", text = "", fg = "#f2d5cf" },
377 | { name = "cfg", text = "", fg = "#737994" },
378 | { name = "ape", text = "", fg = "#85c1dc" },
379 | { name = "org", text = "", fg = "#81c8be" },
380 | { name = "yml", text = "", fg = "#737994" },
381 | { name = "swift", text = "", fg = "#ef9f76" },
382 | { name = "eln", text = "", fg = "#737994" },
383 | { name = "sol", text = "", fg = "#85c1dc" },
384 | { name = "awk", text = "", fg = "#51576d" },
385 | { name = "7z", text = "", fg = "#e5c890" },
386 | { name = "apl", text = "⍝", fg = "#e5c890" },
387 | { name = "epp", text = "", fg = "#e5c890" },
388 | { name = "app", text = "", fg = "#414559" },
389 | { name = "dot", text = "", fg = "#51576d" },
390 | { name = "kpp", text = "", fg = "#ca9ee6" },
391 | { name = "eot", text = "", fg = "#f2d5cf" },
392 | { name = "hpp", text = "", fg = "#ca9ee6" },
393 | { name = "spec.tsx", text = "", fg = "#51576d" },
394 | { name = "hurl", text = "", fg = "#e78284" },
395 | { name = "cxxm", text = "", fg = "#85c1dc" },
396 | { name = "c", text = "", fg = "#8caaee" },
397 | { name = "fcmacro", text = "", fg = "#e78284" },
398 | { name = "sass", text = "", fg = "#e78284" },
399 | { name = "yaml", text = "", fg = "#737994" },
400 | { name = "xz", text = "", fg = "#e5c890" },
401 | { name = "material", text = "", fg = "#626880" },
402 | { name = "json5", text = "", fg = "#e5c890" },
403 | { name = "signature", text = "λ", fg = "#ef9f76" },
404 | { name = "3mf", text = "", fg = "#838ba7" },
405 | { name = "jpg", text = "", fg = "#ca9ee6" },
406 | { name = "xpi", text = "", fg = "#e78284" },
407 | { name = "fcmat", text = "", fg = "#e78284" },
408 | { name = "pot", text = "", fg = "#85c1dc" },
409 | { name = "bin", text = "", fg = "#414559" },
410 | { name = "xlsx", text = "", fg = "#51576d" },
411 | { name = "aac", text = "", fg = "#85c1dc" },
412 | { name = "kicad_sym", text = "", fg = "#f2d5cf" },
413 | { name = "xcstrings", text = "", fg = "#85c1dc" },
414 | { name = "lff", text = "", fg = "#f2d5cf" },
415 | { name = "xcf", text = "", fg = "#51576d" },
416 | { name = "azcli", text = "", fg = "#737994" },
417 | { name = "license", text = "", fg = "#e5c890" },
418 | { name = "jsonc", text = "", fg = "#e5c890" },
419 | { name = "xaml", text = "", fg = "#51576d" },
420 | { name = "md5", text = "", fg = "#838ba7" },
421 | { name = "xm", text = "", fg = "#85c1dc" },
422 | { name = "sln", text = "", fg = "#626880" },
423 | { name = "jl", text = "", fg = "#ca9ee6" },
424 | { name = "ml", text = "", fg = "#ef9f76" },
425 | { name = "http", text = "", fg = "#8caaee" },
426 | { name = "x", text = "", fg = "#8caaee" },
427 | { name = "wvc", text = "", fg = "#85c1dc" },
428 | { name = "wrz", text = "", fg = "#838ba7" },
429 | { name = "csproj", text = "", fg = "#51576d" },
430 | { name = "wrl", text = "", fg = "#838ba7" },
431 | { name = "wma", text = "", fg = "#85c1dc" },
432 | { name = "woff2", text = "", fg = "#f2d5cf" },
433 | { name = "woff", text = "", fg = "#f2d5cf" },
434 | { name = "tscn", text = "", fg = "#737994" },
435 | { name = "webmanifest", text = "", fg = "#e5c890" },
436 | { name = "webm", text = "", fg = "#ef9f76" },
437 | { name = "fcbak", text = "", fg = "#e78284" },
438 | { name = "log", text = "", fg = "#c6d0f5" },
439 | { name = "wav", text = "", fg = "#85c1dc" },
440 | { name = "wasm", text = "", fg = "#626880" },
441 | { name = "styl", text = "", fg = "#a6d189" },
442 | { name = "gif", text = "", fg = "#ca9ee6" },
443 | { name = "resi", text = "", fg = "#e78284" },
444 | { name = "aiff", text = "", fg = "#85c1dc" },
445 | { name = "sha256", text = "", fg = "#838ba7" },
446 | { name = "igs", text = "", fg = "#a6d189" },
447 | { name = "vsix", text = "", fg = "#626880" },
448 | { name = "vim", text = "", fg = "#a6d189" },
449 | { name = "diff", text = "", fg = "#51576d" },
450 | { name = "drl", text = "", fg = "#ea999c" },
451 | { name = "erl", text = "", fg = "#626880" },
452 | { name = "vhdl", text = "", fg = "#a6d189" },
453 | { name = "🔥", text = "", fg = "#ef9f76" },
454 | { name = "hrl", text = "", fg = "#626880" },
455 | { name = "fsi", text = "", fg = "#85c1dc" },
456 | { name = "mm", text = "", fg = "#85c1dc" },
457 | { name = "bz", text = "", fg = "#e5c890" },
458 | { name = "vh", text = "", fg = "#a6d189" },
459 | { name = "kdb", text = "", fg = "#a6d189" },
460 | { name = "gz", text = "", fg = "#e5c890" },
461 | { name = "cpp", text = "", fg = "#85c1dc" },
462 | { name = "ui", text = "", fg = "#626880" },
463 | { name = "txt", text = "", fg = "#a6d189" },
464 | { name = "spec.ts", text = "", fg = "#85c1dc" },
465 | { name = "ccm", text = "", fg = "#e78284" },
466 | { name = "typoscript", text = "", fg = "#ef9f76" },
467 | { name = "typ", text = "", fg = "#81c8be" },
468 | { name = "txz", text = "", fg = "#e5c890" },
469 | { name = "test.ts", text = "", fg = "#85c1dc" },
470 | { name = "tsx", text = "", fg = "#51576d" },
471 | { name = "mk", text = "", fg = "#737994" },
472 | { name = "webp", text = "", fg = "#ca9ee6" },
473 | { name = "opus", text = "", fg = "#626880" },
474 | { name = "bicep", text = "", fg = "#85c1dc" },
475 | { name = "ts", text = "", fg = "#85c1dc" },
476 | { name = "tres", text = "", fg = "#737994" },
477 | { name = "torrent", text = "", fg = "#81c8be" },
478 | { name = "cxx", text = "", fg = "#85c1dc" },
479 | { name = "iso", text = "", fg = "#f2d5cf" },
480 | { name = "ixx", text = "", fg = "#85c1dc" },
481 | { name = "hxx", text = "", fg = "#ca9ee6" },
482 | { name = "gql", text = "", fg = "#ca9ee6" },
483 | { name = "tmux", text = "", fg = "#a6d189" },
484 | { name = "ini", text = "", fg = "#737994" },
485 | { name = "m3u8", text = "", fg = "#ea999c" },
486 | { name = "image", text = "", fg = "#f2d5cf" },
487 | { name = "tfvars", text = "", fg = "#626880" },
488 | { name = "tex", text = "", fg = "#414559" },
489 | { name = "cbl", text = "⚙", fg = "#51576d" },
490 | { name = "flc", text = "", fg = "#f2d5cf" },
491 | { name = "elc", text = "", fg = "#737994" },
492 | { name = "test.tsx", text = "", fg = "#51576d" },
493 | { name = "twig", text = "", fg = "#a6d189" },
494 | { name = "sql", text = "", fg = "#f2d5cf" },
495 | { name = "test.jsx", text = "", fg = "#85c1dc" },
496 | { name = "htm", text = "", fg = "#e78284" },
497 | { name = "gcode", text = "", fg = "#626880" },
498 | { name = "test.js", text = "", fg = "#e5c890" },
499 | { name = "ino", text = "", fg = "#85c1dc" },
500 | { name = "tcl", text = "", fg = "#51576d" },
501 | { name = "cljs", text = "", fg = "#85c1dc" },
502 | { name = "tsconfig", text = "", fg = "#ef9f76" },
503 | { name = "img", text = "", fg = "#f2d5cf" },
504 | { name = "t", text = "", fg = "#85c1dc" },
505 | { name = "fcstd1", text = "", fg = "#e78284" },
506 | { name = "out", text = "", fg = "#414559" },
507 | { name = "jsx", text = "", fg = "#85c1dc" },
508 | { name = "bash", text = "", fg = "#a6d189" },
509 | { name = "edn", text = "", fg = "#85c1dc" },
510 | { name = "rss", text = "", fg = "#ef9f76" },
511 | { name = "flf", text = "", fg = "#f2d5cf" },
512 | { name = "cache", text = "", fg = "#f2d5cf" },
513 | { name = "sbt", text = "", fg = "#e78284" },
514 | { name = "cppm", text = "", fg = "#85c1dc" },
515 | { name = "svelte", text = "", fg = "#ef9f76" },
516 | { name = "mo", text = "∞", fg = "#838ba7" },
517 | { name = "sv", text = "", fg = "#a6d189" },
518 | { name = "ko", text = "", fg = "#f2d5cf" },
519 | { name = "suo", text = "", fg = "#626880" },
520 | { name = "sldasm", text = "", fg = "#a6d189" },
521 | { name = "icalendar", text = "", fg = "#303446" },
522 | { name = "go", text = "", fg = "#85c1dc" },
523 | { name = "sublime", text = "", fg = "#ef9f76" },
524 | { name = "stl", text = "", fg = "#838ba7" },
525 | { name = "mobi", text = "", fg = "#e5c890" },
526 | { name = "graphql", text = "", fg = "#ca9ee6" },
527 | { name = "m3u", text = "", fg = "#ea999c" },
528 | { name = "cpy", text = "⚙", fg = "#51576d" },
529 | { name = "kdenlive", text = "", fg = "#8caaee" },
530 | { name = "pyo", text = "", fg = "#e5c890" },
531 | { name = "po", text = "", fg = "#85c1dc" },
532 | { name = "scala", text = "", fg = "#e78284" },
533 | { name = "exs", text = "", fg = "#ca9ee6" },
534 | { name = "odp", text = "", fg = "#ef9f76" },
535 | { name = "dump", text = "", fg = "#f2d5cf" },
536 | { name = "stp", text = "", fg = "#a6d189" },
537 | { name = "step", text = "", fg = "#a6d189" },
538 | { name = "ste", text = "", fg = "#a6d189" },
539 | { name = "aif", text = "", fg = "#85c1dc" },
540 | { name = "strings", text = "", fg = "#85c1dc" },
541 | { name = "cp", text = "", fg = "#85c1dc" },
542 | { name = "fsscript", text = "", fg = "#85c1dc" },
543 | { name = "mli", text = "", fg = "#ef9f76" },
544 | { name = "bak", text = "", fg = "#737994" },
545 | { name = "ssa", text = "", fg = "#e5c890" },
546 | { name = "toml", text = "", fg = "#e78284" },
547 | { name = "makefile", text = "", fg = "#737994" },
548 | { name = "php", text = "", fg = "#ca9ee6" },
549 | { name = "zst", text = "", fg = "#e5c890" },
550 | { name = "spec.jsx", text = "", fg = "#85c1dc" },
551 | { name = "kbx", text = "", fg = "#626880" },
552 | { name = "fbx", text = "", fg = "#838ba7" },
553 | { name = "blend", text = "", fg = "#ef9f76" },
554 | { name = "ifc", text = "", fg = "#a6d189" },
555 | { name = "spec.js", text = "", fg = "#e5c890" },
556 | { name = "so", text = "", fg = "#f2d5cf" },
557 | { name = "desktop", text = "", fg = "#414559" },
558 | { name = "sml", text = "λ", fg = "#ef9f76" },
559 | { name = "slvs", text = "", fg = "#a6d189" },
560 | { name = "pp", text = "", fg = "#e5c890" },
561 | { name = "ps1", text = "", fg = "#737994" },
562 | { name = "dropbox", text = "", fg = "#626880" },
563 | { name = "kicad_mod", text = "", fg = "#f2d5cf" },
564 | { name = "bat", text = "", fg = "#a6d189" },
565 | { name = "slim", text = "", fg = "#e78284" },
566 | { name = "skp", text = "", fg = "#a6d189" },
567 | { name = "css", text = "", fg = "#8caaee" },
568 | { name = "xul", text = "", fg = "#ef9f76" },
569 | { name = "ige", text = "", fg = "#a6d189" },
570 | { name = "glb", text = "", fg = "#e5c890" },
571 | { name = "ppt", text = "", fg = "#e78284" },
572 | { name = "sha512", text = "", fg = "#838ba7" },
573 | { name = "ics", text = "", fg = "#303446" },
574 | { name = "mdx", text = "", fg = "#85c1dc" },
575 | { name = "sha1", text = "", fg = "#838ba7" },
576 | { name = "f3d", text = "", fg = "#a6d189" },
577 | { name = "ass", text = "", fg = "#e5c890" },
578 | { name = "godot", text = "", fg = "#737994" },
579 | { name = "ifb", text = "", fg = "#303446" },
580 | { name = "cson", text = "", fg = "#e5c890" },
581 | { name = "lib", text = "", fg = "#232634" },
582 | { name = "luac", text = "", fg = "#85c1dc" },
583 | { name = "heex", text = "", fg = "#ca9ee6" },
584 | { name = "scm", text = "", fg = "#f2d5cf" },
585 | { name = "psd1", text = "", fg = "#737994" },
586 | { name = "sc", text = "", fg = "#e78284" },
587 | { name = "scad", text = "", fg = "#e5c890" },
588 | { name = "kts", text = "", fg = "#737994" },
589 | { name = "svh", text = "", fg = "#a6d189" },
590 | { name = "mts", text = "", fg = "#85c1dc" },
591 | { name = "nfo", text = "", fg = "#e5c890" },
592 | { name = "pck", text = "", fg = "#737994" },
593 | { name = "rproj", text = "", fg = "#81c8be" },
594 | { name = "rlib", text = "", fg = "#ef9f76" },
595 | { name = "cljd", text = "", fg = "#85c1dc" },
596 | { name = "ods", text = "", fg = "#a6d189" },
597 | { name = "res", text = "", fg = "#e78284" },
598 | { name = "apk", text = "", fg = "#a6d189" },
599 | { name = "haml", text = "", fg = "#f2d5cf" },
600 | { name = "d.ts", text = "", fg = "#ef9f76" },
601 | { name = "razor", text = "", fg = "#51576d" },
602 | { name = "rake", text = "", fg = "#292c3c" },
603 | { name = "patch", text = "", fg = "#51576d" },
604 | { name = "cuh", text = "", fg = "#ca9ee6" },
605 | { name = "d", text = "", fg = "#e78284" },
606 | { name = "query", text = "", fg = "#a6d189" },
607 | { name = "psb", text = "", fg = "#85c1dc" },
608 | { name = "nu", text = ">", fg = "#81c8be" },
609 | { name = "mov", text = "", fg = "#ef9f76" },
610 | { name = "lrc", text = "", fg = "#e5c890" },
611 | { name = "pyx", text = "", fg = "#8caaee" },
612 | { name = "pyw", text = "", fg = "#8caaee" },
613 | { name = "cu", text = "", fg = "#a6d189" },
614 | { name = "bazel", text = "", fg = "#a6d189" },
615 | { name = "obj", text = "", fg = "#838ba7" },
616 | { name = "pyi", text = "", fg = "#e5c890" },
617 | { name = "pyd", text = "", fg = "#e5c890" },
618 | { name = "exe", text = "", fg = "#414559" },
619 | { name = "pyc", text = "", fg = "#e5c890" },
620 | { name = "fctb", text = "", fg = "#e78284" },
621 | { name = "part", text = "", fg = "#81c8be" },
622 | { name = "blade.php", text = "", fg = "#e78284" },
623 | { name = "git", text = "", fg = "#e78284" },
624 | { name = "psd", text = "", fg = "#85c1dc" },
625 | { name = "qss", text = "", fg = "#a6d189" },
626 | { name = "csv", text = "", fg = "#a6d189" },
627 | { name = "psm1", text = "", fg = "#737994" },
628 | { name = "dconf", text = "", fg = "#f2d5cf" },
629 | { name = "config.ru", text = "", fg = "#292c3c" },
630 | { name = "prisma", text = "", fg = "#737994" },
631 | { name = "conf", text = "", fg = "#737994" },
632 | { name = "clj", text = "", fg = "#a6d189" },
633 | { name = "o", text = "", fg = "#414559" },
634 | { name = "mp4", text = "", fg = "#ef9f76" },
635 | { name = "cc", text = "", fg = "#e78284" },
636 | { name = "kicad_prl", text = "", fg = "#f2d5cf" },
637 | { name = "bz3", text = "", fg = "#e5c890" },
638 | { name = "asc", text = "", fg = "#626880" },
639 | { name = "png", text = "", fg = "#ca9ee6" },
640 | { name = "android", text = "", fg = "#a6d189" },
641 | { name = "pm", text = "", fg = "#85c1dc" },
642 | { name = "h", text = "", fg = "#ca9ee6" },
643 | { name = "pls", text = "", fg = "#ea999c" },
644 | { name = "ipynb", text = "", fg = "#ef9f76" },
645 | { name = "pl", text = "", fg = "#85c1dc" },
646 | { name = "ads", text = "", fg = "#f2d5cf" },
647 | { name = "sqlite", text = "", fg = "#f2d5cf" },
648 | { name = "pdf", text = "", fg = "#e78284" },
649 | { name = "pcm", text = "", fg = "#626880" },
650 | { name = "ico", text = "", fg = "#e5c890" },
651 | { name = "a", text = "", fg = "#f2d5cf" },
652 | { name = "R", text = "", fg = "#626880" },
653 | { name = "ogg", text = "", fg = "#626880" },
654 | { name = "pxd", text = "", fg = "#8caaee" },
655 | { name = "kdenlivetitle", text = "", fg = "#8caaee" },
656 | { name = "jxl", text = "", fg = "#ca9ee6" },
657 | { name = "nswag", text = "", fg = "#a6d189" },
658 | { name = "nim", text = "", fg = "#e5c890" },
659 | { name = "bqn", text = "⎉", fg = "#626880" },
660 | { name = "cts", text = "", fg = "#85c1dc" },
661 | { name = "fcparam", text = "", fg = "#e78284" },
662 | { name = "rs", text = "", fg = "#ef9f76" },
663 | { name = "mpp", text = "", fg = "#85c1dc" },
664 | { name = "fdmdownload", text = "", fg = "#81c8be" },
665 | { name = "pptx", text = "", fg = "#e78284" },
666 | { name = "jpeg", text = "", fg = "#ca9ee6" },
667 | { name = "bib", text = "", fg = "#e5c890" },
668 | { name = "vhd", text = "", fg = "#a6d189" },
669 | { name = "m", text = "", fg = "#8caaee" },
670 | { name = "js", text = "", fg = "#e5c890" },
671 | { name = "eex", text = "", fg = "#ca9ee6" },
672 | { name = "tbc", text = "", fg = "#51576d" },
673 | { name = "astro", text = "", fg = "#e78284" },
674 | { name = "sha224", text = "", fg = "#838ba7" },
675 | { name = "xcplayground", text = "", fg = "#ef9f76" },
676 | { name = "el", text = "", fg = "#737994" },
677 | { name = "m4v", text = "", fg = "#ef9f76" },
678 | { name = "m4a", text = "", fg = "#85c1dc" },
679 | { name = "cs", text = "", fg = "#a6d189" },
680 | { name = "hs", text = "", fg = "#ca9ee6" },
681 | { name = "tgz", text = "", fg = "#e5c890" },
682 | { name = "fs", text = "", fg = "#85c1dc" },
683 | { name = "luau", text = "", fg = "#8caaee" },
684 | { name = "dxf", text = "", fg = "#a6d189" },
685 | { name = "download", text = "", fg = "#81c8be" },
686 | { name = "cast", text = "", fg = "#ef9f76" },
687 | { name = "qrc", text = "", fg = "#a6d189" },
688 | { name = "lua", text = "", fg = "#85c1dc" },
689 | { name = "lhs", text = "", fg = "#ca9ee6" },
690 | { name = "md", text = "", fg = "#c6d0f5" },
691 | { name = "leex", text = "", fg = "#ca9ee6" },
692 | { name = "ai", text = "", fg = "#e5c890" },
693 | { name = "lck", text = "", fg = "#b5bfe2" },
694 | { name = "kt", text = "", fg = "#737994" },
695 | { name = "bicepparam", text = "", fg = "#ca9ee6" },
696 | { name = "hex", text = "", fg = "#626880" },
697 | { name = "zig", text = "", fg = "#ef9f76" },
698 | { name = "bzl", text = "", fg = "#a6d189" },
699 | { name = "cljc", text = "", fg = "#a6d189" },
700 | { name = "kicad_dru", text = "", fg = "#f2d5cf" },
701 | { name = "fctl", text = "", fg = "#e78284" },
702 | { name = "f#", text = "", fg = "#85c1dc" },
703 | { name = "odt", text = "", fg = "#85c1dc" },
704 | { name = "conda", text = "", fg = "#a6d189" },
705 | { name = "vala", text = "", fg = "#51576d" },
706 | { name = "erb", text = "", fg = "#292c3c" },
707 | { name = "mp3", text = "", fg = "#85c1dc" },
708 | { name = "bz2", text = "", fg = "#e5c890" },
709 | { name = "coffee", text = "", fg = "#e5c890" },
710 | { name = "cr", text = "", fg = "#f2d5cf" },
711 | { name = "f90", text = "", fg = "#51576d" },
712 | { name = "jwmrc", text = "", fg = "#737994" },
713 | { name = "c++", text = "", fg = "#e78284" },
714 | { name = "fcscript", text = "", fg = "#e78284" },
715 | { name = "fods", text = "", fg = "#a6d189" },
716 | { name = "cue", text = "", fg = "#ea999c" },
717 | { name = "srt", text = "", fg = "#e5c890" },
718 | { name = "info", text = "", fg = "#e5c890" },
719 | { name = "hh", text = "", fg = "#ca9ee6" },
720 | { name = "sig", text = "λ", fg = "#ef9f76" },
721 | { name = "html", text = "", fg = "#e78284" },
722 | { name = "iges", text = "", fg = "#a6d189" },
723 | { name = "kicad_wks", text = "", fg = "#f2d5cf" },
724 | { name = "hbs", text = "", fg = "#ef9f76" },
725 | { name = "fcstd", text = "", fg = "#e78284" },
726 | { name = "gresource", text = "", fg = "#f2d5cf" },
727 | { name = "sub", text = "", fg = "#e5c890" },
728 | { name = "ical", text = "", fg = "#303446" },
729 | { name = "crdownload", text = "", fg = "#81c8be" },
730 | { name = "pub", text = "", fg = "#e5c890" },
731 | { name = "vue", text = "", fg = "#a6d189" },
732 | { name = "gd", text = "", fg = "#737994" },
733 | { name = "fsx", text = "", fg = "#85c1dc" },
734 | { name = "mkv", text = "", fg = "#ef9f76" },
735 | { name = "py", text = "", fg = "#e5c890" },
736 | { name = "kicad_sch", text = "", fg = "#f2d5cf" },
737 | { name = "epub", text = "", fg = "#e5c890" },
738 | { name = "env", text = "", fg = "#e5c890" },
739 | { name = "magnet", text = "", fg = "#e78284" },
740 | { name = "elf", text = "", fg = "#414559" },
741 | { name = "fodg", text = "", fg = "#e5c890" },
742 | { name = "svg", text = "", fg = "#e5c890" },
743 | { name = "dwg", text = "", fg = "#a6d189" },
744 | { name = "docx", text = "", fg = "#51576d" },
745 | { name = "pro", text = "", fg = "#e5c890" },
746 | { name = "db", text = "", fg = "#f2d5cf" },
747 | { name = "rb", text = "", fg = "#292c3c" },
748 | { name = "r", text = "", fg = "#626880" },
749 | { name = "scss", text = "", fg = "#e78284" },
750 | { name = "cow", text = "", fg = "#ef9f76" },
751 | { name = "gleam", text = "", fg = "#f4b8e4" },
752 | { name = "v", text = "", fg = "#a6d189" },
753 | { name = "kicad_pro", text = "", fg = "#f2d5cf" },
754 | { name = "liquid", text = "", fg = "#a6d189" },
755 | { name = "zip", text = "", fg = "#e5c890" },
756 | ]
757 |
--------------------------------------------------------------------------------
/themes/latte/catppuccin-latte-blue.toml:
--------------------------------------------------------------------------------
1 | [manager]
2 | cwd = { fg = "#179299" }
3 |
4 | hovered = { fg = "#eff1f5", bg = "#1e66f5" }
5 | preview_hovered = { fg = "#eff1f5", bg = "#4c4f69" }
6 |
7 | find_keyword = { fg = "#df8e1d", italic = true }
8 | find_position = { fg = "#ea76cb", bg = "reset", italic = true }
9 |
10 | marker_copied = { fg = "#40a02b", bg = "#40a02b" }
11 | marker_cut = { fg = "#d20f39", bg = "#d20f39" }
12 | marker_marked = { fg = "#179299", bg = "#179299" }
13 | marker_selected = { fg = "#1e66f5", bg = "#1e66f5" }
14 |
15 | tab_active = { fg = "#eff1f5", bg = "#4c4f69" }
16 | tab_inactive = { fg = "#4c4f69", bg = "#bcc0cc" }
17 | tab_width = 1
18 |
19 | count_copied = { fg = "#eff1f5", bg = "#40a02b" }
20 | count_cut = { fg = "#eff1f5", bg = "#d20f39" }
21 | count_selected = { fg = "#eff1f5", bg = "#1e66f5" }
22 |
23 | border_symbol = "│"
24 | border_style = { fg = "#8c8fa1" }
25 |
26 | syntect_theme = "~/.config/yazi/Catppuccin-latte.tmTheme"
27 |
28 | [mode]
29 | normal_main = { fg = "#eff1f5", bg = "#1e66f5", bold = true }
30 | normal_alt = { fg = "#1e66f5", bg = "#ccd0da"}
31 |
32 | select_main = { fg = "#eff1f5", bg = "#40a02b", bold = true }
33 | select_alt = { fg = "#40a02b", bg = "#ccd0da"}
34 |
35 | unset_main = { fg = "#eff1f5", bg = "#dd7878", bold = true }
36 | unset_alt = { fg = "#dd7878", bg = "#ccd0da"}
37 |
38 | [status]
39 | separator_open = ""
40 | separator_close = ""
41 |
42 | progress_label = { fg = "#ffffff", bold = true }
43 | progress_normal = { fg = "#1e66f5", bg = "#bcc0cc" }
44 | progress_error = { fg = "#d20f39", bg = "#bcc0cc" }
45 |
46 | perm_type = { fg = "#1e66f5" }
47 | perm_read = { fg = "#df8e1d" }
48 | perm_write = { fg = "#d20f39" }
49 | perm_exec = { fg = "#40a02b" }
50 | perm_sep = { fg = "#8c8fa1" }
51 |
52 | [input]
53 | border = { fg = "#1e66f5" }
54 | title = {}
55 | value = {}
56 | selected = { reversed = true }
57 |
58 | [pick]
59 | border = { fg = "#1e66f5" }
60 | active = { fg = "#ea76cb" }
61 | inactive = {}
62 |
63 | [confirm]
64 | border = { fg = "#1e66f5" }
65 | title = { fg = "#1e66f5" }
66 | content = {}
67 | list = {}
68 | btn_yes = { reversed = true }
69 | btn_no = {}
70 |
71 | [cmp]
72 | border = { fg = "#1e66f5" }
73 |
74 | [tasks]
75 | border = { fg = "#1e66f5" }
76 | title = {}
77 | hovered = { underline = true }
78 |
79 | [which]
80 | mask = { bg = "#ccd0da" }
81 | cand = { fg = "#179299" }
82 | rest = { fg = "#7c7f93" }
83 | desc = { fg = "#ea76cb" }
84 | separator = " "
85 | separator_style = { fg = "#acb0be" }
86 |
87 | [help]
88 | on = { fg = "#179299" }
89 | run = { fg = "#ea76cb" }
90 | desc = { fg = "#7c7f93" }
91 | hovered = { bg = "#acb0be", bold = true }
92 | footer = { fg = "#4c4f69", bg = "#bcc0cc" }
93 |
94 | [notify]
95 | title_info = { fg = "#179299" }
96 | title_warn = { fg = "#df8e1d" }
97 | title_error = { fg = "#d20f39" }
98 |
99 | [filetype]
100 | rules = [
101 | # Media
102 | { mime = "image/*", fg = "#179299" },
103 | { mime = "{audio,video}/*", fg = "#df8e1d" },
104 |
105 | # Archives
106 | { mime = "application/*zip", fg = "#ea76cb" },
107 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#ea76cb" },
108 |
109 | # Documents
110 | { mime = "application/{pdf,doc,rtf}", fg = "#40a02b" },
111 |
112 | # Fallback
113 | { name = "*", fg = "#4c4f69" },
114 | { name = "*/", fg = "#1e66f5" }
115 | ]
116 |
117 | [spot]
118 | border = { fg = "#1e66f5" }
119 | title = { fg = "#1e66f5" }
120 | tbl_cell = { fg = "#1e66f5", reversed = true }
121 | tbl_col = { bold = true }
122 |
123 | [icon]
124 | files = [
125 | { name = "kritadisplayrc", text = "", fg = "#ea76cb" },
126 | { name = ".gtkrc-2.0", text = "", fg = "#eff1f5" },
127 | { name = "bspwmrc", text = "", fg = "#4c4f69" },
128 | { name = "webpack", text = "", fg = "#209fb5" },
129 | { name = "tsconfig.json", text = "", fg = "#209fb5" },
130 | { name = ".vimrc", text = "", fg = "#40a02b" },
131 | { name = "gemfile$", text = "", fg = "#d20f39" },
132 | { name = "xmobarrc", text = "", fg = "#e64553" },
133 | { name = "avif", text = "", fg = "#7c7f93" },
134 | { name = "fp-info-cache", text = "", fg = "#eff1f5" },
135 | { name = ".zshrc", text = "", fg = "#40a02b" },
136 | { name = "robots.txt", text = "", fg = "#6c6f85" },
137 | { name = "dockerfile", text = "", fg = "#7287fd" },
138 | { name = ".git-blame-ignore-revs", text = "", fg = "#fe640b" },
139 | { name = ".nvmrc", text = "", fg = "#40a02b" },
140 | { name = "hyprpaper.conf", text = "", fg = "#209fb5" },
141 | { name = ".prettierignore", text = "", fg = "#7287fd" },
142 | { name = "rakefile", text = "", fg = "#d20f39" },
143 | { name = "code_of_conduct", text = "", fg = "#e64553" },
144 | { name = "cmakelists.txt", text = "", fg = "#dce0e8" },
145 | { name = ".env", text = "", fg = "#df8e1d" },
146 | { name = "copying.lesser", text = "", fg = "#40a02b" },
147 | { name = "readme", text = "", fg = "#eff1f5" },
148 | { name = "settings.gradle", text = "", fg = "#1e66f5" },
149 | { name = "gruntfile.coffee", text = "", fg = "#fe640b" },
150 | { name = ".eslintignore", text = "", fg = "#8839ef" },
151 | { name = "kalgebrarc", text = "", fg = "#04a5e5" },
152 | { name = "kdenliverc", text = "", fg = "#04a5e5" },
153 | { name = ".prettierrc.cjs", text = "", fg = "#7287fd" },
154 | { name = "cantorrc", text = "", fg = "#04a5e5" },
155 | { name = "rmd", text = "", fg = "#209fb5" },
156 | { name = "vagrantfile$", text = "", fg = "#1e66f5" },
157 | { name = ".Xauthority", text = "", fg = "#fe640b" },
158 | { name = "prettier.config.ts", text = "", fg = "#7287fd" },
159 | { name = "node_modules", text = "", fg = "#e64553" },
160 | { name = ".prettierrc.toml", text = "", fg = "#7287fd" },
161 | { name = "build.zig.zon", text = "", fg = "#df8e1d" },
162 | { name = ".ds_store", text = "", fg = "#4c4f69" },
163 | { name = "PKGBUILD", text = "", fg = "#04a5e5" },
164 | { name = ".prettierrc", text = "", fg = "#7287fd" },
165 | { name = ".bash_profile", text = "", fg = "#40a02b" },
166 | { name = ".npmignore", text = "", fg = "#e64553" },
167 | { name = ".mailmap", text = "", fg = "#fe640b" },
168 | { name = ".codespellrc", text = "", fg = "#40a02b" },
169 | { name = "svelte.config.js", text = "", fg = "#fe640b" },
170 | { name = "eslint.config.ts", text = "", fg = "#8839ef" },
171 | { name = "config", text = "", fg = "#7c7f93" },
172 | { name = ".gitlab-ci.yml", text = "", fg = "#e64553" },
173 | { name = ".gitconfig", text = "", fg = "#fe640b" },
174 | { name = "_gvimrc", text = "", fg = "#40a02b" },
175 | { name = ".xinitrc", text = "", fg = "#fe640b" },
176 | { name = "checkhealth", text = "", fg = "#04a5e5" },
177 | { name = "sxhkdrc", text = "", fg = "#4c4f69" },
178 | { name = ".bashrc", text = "", fg = "#40a02b" },
179 | { name = "tailwind.config.mjs", text = "", fg = "#209fb5" },
180 | { name = "ext_typoscript_setup.txt", text = "", fg = "#df8e1d" },
181 | { name = "commitlint.config.ts", text = "", fg = "#179299" },
182 | { name = "py.typed", text = "", fg = "#df8e1d" },
183 | { name = ".nanorc", text = "", fg = "#4c4f69" },
184 | { name = "commit_editmsg", text = "", fg = "#fe640b" },
185 | { name = ".luaurc", text = "", fg = "#04a5e5" },
186 | { name = "fp-lib-table", text = "", fg = "#eff1f5" },
187 | { name = ".editorconfig", text = "", fg = "#eff1f5" },
188 | { name = "justfile", text = "", fg = "#7c7f93" },
189 | { name = "kdeglobals", text = "", fg = "#04a5e5" },
190 | { name = "license.md", text = "", fg = "#df8e1d" },
191 | { name = ".clang-format", text = "", fg = "#7c7f93" },
192 | { name = "docker-compose.yaml", text = "", fg = "#7287fd" },
193 | { name = "copying", text = "", fg = "#40a02b" },
194 | { name = "go.mod", text = "", fg = "#209fb5" },
195 | { name = "lxqt.conf", text = "", fg = "#04a5e5" },
196 | { name = "brewfile", text = "", fg = "#d20f39" },
197 | { name = "gulpfile.coffee", text = "", fg = "#d20f39" },
198 | { name = ".dockerignore", text = "", fg = "#7287fd" },
199 | { name = ".settings.json", text = "", fg = "#8839ef" },
200 | { name = "tailwind.config.js", text = "", fg = "#209fb5" },
201 | { name = ".clang-tidy", text = "", fg = "#7c7f93" },
202 | { name = ".gvimrc", text = "", fg = "#40a02b" },
203 | { name = "nuxt.config.cjs", text = "", fg = "#40a02b" },
204 | { name = "xsettingsd.conf", text = "", fg = "#fe640b" },
205 | { name = "nuxt.config.js", text = "", fg = "#40a02b" },
206 | { name = "eslint.config.cjs", text = "", fg = "#8839ef" },
207 | { name = "sym-lib-table", text = "", fg = "#eff1f5" },
208 | { name = ".condarc", text = "", fg = "#40a02b" },
209 | { name = "xmonad.hs", text = "", fg = "#e64553" },
210 | { name = "tmux.conf", text = "", fg = "#40a02b" },
211 | { name = "xmobarrc.hs", text = "", fg = "#e64553" },
212 | { name = ".prettierrc.yaml", text = "", fg = "#7287fd" },
213 | { name = ".pre-commit-config.yaml", text = "", fg = "#df8e1d" },
214 | { name = "i3blocks.conf", text = "", fg = "#e6e9ef" },
215 | { name = "xorg.conf", text = "", fg = "#fe640b" },
216 | { name = ".zshenv", text = "", fg = "#40a02b" },
217 | { name = "vlcrc", text = "", fg = "#fe640b" },
218 | { name = "license", text = "", fg = "#df8e1d" },
219 | { name = "unlicense", text = "", fg = "#df8e1d" },
220 | { name = "tmux.conf.local", text = "", fg = "#40a02b" },
221 | { name = ".SRCINFO", text = "", fg = "#04a5e5" },
222 | { name = "tailwind.config.ts", text = "", fg = "#209fb5" },
223 | { name = "security.md", text = "", fg = "#bcc0cc" },
224 | { name = "security", text = "", fg = "#bcc0cc" },
225 | { name = ".eslintrc", text = "", fg = "#8839ef" },
226 | { name = "gradle.properties", text = "", fg = "#1e66f5" },
227 | { name = "code_of_conduct.md", text = "", fg = "#e64553" },
228 | { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#fe640b" },
229 | { name = "PrusaSlicer.ini", text = "", fg = "#fe640b" },
230 | { name = "procfile", text = "", fg = "#7c7f93" },
231 | { name = "mpv.conf", text = "", fg = "#4c4f69" },
232 | { name = ".prettierrc.json5", text = "", fg = "#7287fd" },
233 | { name = "i3status.conf", text = "", fg = "#e6e9ef" },
234 | { name = "prettier.config.mjs", text = "", fg = "#7287fd" },
235 | { name = ".pylintrc", text = "", fg = "#7c7f93" },
236 | { name = "prettier.config.cjs", text = "", fg = "#7287fd" },
237 | { name = ".luacheckrc", text = "", fg = "#04a5e5" },
238 | { name = "containerfile", text = "", fg = "#7287fd" },
239 | { name = "eslint.config.mjs", text = "", fg = "#8839ef" },
240 | { name = "gruntfile.js", text = "", fg = "#fe640b" },
241 | { name = "bun.lockb", text = "", fg = "#eff1f5" },
242 | { name = ".gitattributes", text = "", fg = "#fe640b" },
243 | { name = "gruntfile.ts", text = "", fg = "#fe640b" },
244 | { name = "pom.xml", text = "", fg = "#d20f39" },
245 | { name = "favicon.ico", text = "", fg = "#40a02b" },
246 | { name = "package-lock.json", text = "", fg = "#d20f39" },
247 | { name = "build", text = "", fg = "#40a02b" },
248 | { name = "package.json", text = "", fg = "#e64553" },
249 | { name = "nuxt.config.ts", text = "", fg = "#40a02b" },
250 | { name = "nuxt.config.mjs", text = "", fg = "#40a02b" },
251 | { name = "mix.lock", text = "", fg = "#7c7f93" },
252 | { name = "makefile", text = "", fg = "#7c7f93" },
253 | { name = "gulpfile.js", text = "", fg = "#d20f39" },
254 | { name = "lxde-rc.xml", text = "", fg = "#8c8fa1" },
255 | { name = "kritarc", text = "", fg = "#ea76cb" },
256 | { name = "gtkrc", text = "", fg = "#eff1f5" },
257 | { name = "ionic.config.json", text = "", fg = "#7287fd" },
258 | { name = ".prettierrc.mjs", text = "", fg = "#7287fd" },
259 | { name = ".prettierrc.yml", text = "", fg = "#7287fd" },
260 | { name = ".npmrc", text = "", fg = "#e64553" },
261 | { name = "weston.ini", text = "", fg = "#df8e1d" },
262 | { name = "gulpfile.babel.js", text = "", fg = "#d20f39" },
263 | { name = "i18n.config.ts", text = "", fg = "#7287fd" },
264 | { name = "commitlint.config.js", text = "", fg = "#179299" },
265 | { name = ".gitmodules", text = "", fg = "#fe640b" },
266 | { name = "gradle-wrapper.properties", text = "", fg = "#1e66f5" },
267 | { name = "hypridle.conf", text = "", fg = "#209fb5" },
268 | { name = "vercel.json", text = "▲", fg = "#eff1f5" },
269 | { name = "hyprlock.conf", text = "", fg = "#209fb5" },
270 | { name = "go.sum", text = "", fg = "#209fb5" },
271 | { name = "kdenlive-layoutsrc", text = "", fg = "#04a5e5" },
272 | { name = "gruntfile.babel.js", text = "", fg = "#fe640b" },
273 | { name = "compose.yml", text = "", fg = "#7287fd" },
274 | { name = "i18n.config.js", text = "", fg = "#7287fd" },
275 | { name = "readme.md", text = "", fg = "#eff1f5" },
276 | { name = "gradlew", text = "", fg = "#1e66f5" },
277 | { name = "go.work", text = "", fg = "#209fb5" },
278 | { name = "gulpfile.ts", text = "", fg = "#d20f39" },
279 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
280 | { name = "FreeCAD.conf", text = "", fg = "#d20f39" },
281 | { name = "compose.yaml", text = "", fg = "#7287fd" },
282 | { name = "eslint.config.js", text = "", fg = "#8839ef" },
283 | { name = "hyprland.conf", text = "", fg = "#209fb5" },
284 | { name = "docker-compose.yml", text = "", fg = "#7287fd" },
285 | { name = "groovy", text = "", fg = "#5c5f77" },
286 | { name = "QtProject.conf", text = "", fg = "#40a02b" },
287 | { name = "platformio.ini", text = "", fg = "#fe640b" },
288 | { name = "build.gradle", text = "", fg = "#1e66f5" },
289 | { name = ".nuxtrc", text = "", fg = "#40a02b" },
290 | { name = "_vimrc", text = "", fg = "#40a02b" },
291 | { name = ".zprofile", text = "", fg = "#40a02b" },
292 | { name = ".xsession", text = "", fg = "#fe640b" },
293 | { name = "prettier.config.js", text = "", fg = "#7287fd" },
294 | { name = ".babelrc", text = "", fg = "#40a02b" },
295 | { name = "workspace", text = "", fg = "#40a02b" },
296 | { name = ".prettierrc.json", text = "", fg = "#7287fd" },
297 | { name = ".prettierrc.js", text = "", fg = "#7287fd" },
298 | { name = ".Xresources", text = "", fg = "#fe640b" },
299 | { name = ".gitignore", text = "", fg = "#fe640b" },
300 | { name = ".justfile", text = "", fg = "#7c7f93" },
301 | ]
302 | exts = [
303 | { name = "otf", text = "", fg = "#eff1f5" },
304 | { name = "import", text = "", fg = "#eff1f5" },
305 | { name = "krz", text = "", fg = "#ea76cb" },
306 | { name = "adb", text = "", fg = "#dce0e8" },
307 | { name = "ttf", text = "", fg = "#eff1f5" },
308 | { name = "webpack", text = "", fg = "#209fb5" },
309 | { name = "dart", text = "", fg = "#1e66f5" },
310 | { name = "vsh", text = "", fg = "#7287fd" },
311 | { name = "doc", text = "", fg = "#1e66f5" },
312 | { name = "zsh", text = "", fg = "#40a02b" },
313 | { name = "ex", text = "", fg = "#7c7f93" },
314 | { name = "hx", text = "", fg = "#df8e1d" },
315 | { name = "fodt", text = "", fg = "#04a5e5" },
316 | { name = "mojo", text = "", fg = "#fe640b" },
317 | { name = "templ", text = "", fg = "#df8e1d" },
318 | { name = "nix", text = "", fg = "#04a5e5" },
319 | { name = "cshtml", text = "", fg = "#8839ef" },
320 | { name = "fish", text = "", fg = "#5c5f77" },
321 | { name = "ply", text = "", fg = "#8c8fa1" },
322 | { name = "sldprt", text = "", fg = "#40a02b" },
323 | { name = "gemspec", text = "", fg = "#d20f39" },
324 | { name = "mjs", text = "", fg = "#df8e1d" },
325 | { name = "csh", text = "", fg = "#5c5f77" },
326 | { name = "cmake", text = "", fg = "#dce0e8" },
327 | { name = "fodp", text = "", fg = "#df8e1d" },
328 | { name = "vi", text = "", fg = "#df8e1d" },
329 | { name = "msf", text = "", fg = "#1e66f5" },
330 | { name = "blp", text = "", fg = "#7287fd" },
331 | { name = "less", text = "", fg = "#4c4f69" },
332 | { name = "sh", text = "", fg = "#5c5f77" },
333 | { name = "odg", text = "", fg = "#eff1f5" },
334 | { name = "mint", text = "", fg = "#40a02b" },
335 | { name = "dll", text = "", fg = "#4c4f69" },
336 | { name = "odf", text = "", fg = "#ea76cb" },
337 | { name = "sqlite3", text = "", fg = "#dce0e8" },
338 | { name = "Dockerfile", text = "", fg = "#7287fd" },
339 | { name = "ksh", text = "", fg = "#5c5f77" },
340 | { name = "rmd", text = "", fg = "#209fb5" },
341 | { name = "wv", text = "", fg = "#04a5e5" },
342 | { name = "xml", text = "", fg = "#fe640b" },
343 | { name = "markdown", text = "", fg = "#4c4f69" },
344 | { name = "qml", text = "", fg = "#40a02b" },
345 | { name = "3gp", text = "", fg = "#df8e1d" },
346 | { name = "pxi", text = "", fg = "#04a5e5" },
347 | { name = "flac", text = "", fg = "#1e66f5" },
348 | { name = "gpr", text = "", fg = "#ea76cb" },
349 | { name = "huff", text = "", fg = "#8839ef" },
350 | { name = "json", text = "", fg = "#40a02b" },
351 | { name = "gv", text = "", fg = "#1e66f5" },
352 | { name = "bmp", text = "", fg = "#7c7f93" },
353 | { name = "lock", text = "", fg = "#bcc0cc" },
354 | { name = "sha384", text = "", fg = "#7c7f93" },
355 | { name = "cobol", text = "⚙", fg = "#1e66f5" },
356 | { name = "cob", text = "⚙", fg = "#1e66f5" },
357 | { name = "java", text = "", fg = "#d20f39" },
358 | { name = "cjs", text = "", fg = "#40a02b" },
359 | { name = "qm", text = "", fg = "#209fb5" },
360 | { name = "ebuild", text = "", fg = "#4c4f69" },
361 | { name = "mustache", text = "", fg = "#fe640b" },
362 | { name = "terminal", text = "", fg = "#40a02b" },
363 | { name = "ejs", text = "", fg = "#40a02b" },
364 | { name = "brep", text = "", fg = "#40a02b" },
365 | { name = "rar", text = "", fg = "#df8e1d" },
366 | { name = "gradle", text = "", fg = "#1e66f5" },
367 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
368 | { name = "applescript", text = "", fg = "#7c7f93" },
369 | { name = "elm", text = "", fg = "#209fb5" },
370 | { name = "ebook", text = "", fg = "#df8e1d" },
371 | { name = "kra", text = "", fg = "#ea76cb" },
372 | { name = "tf", text = "", fg = "#8839ef" },
373 | { name = "xls", text = "", fg = "#40a02b" },
374 | { name = "fnl", text = "", fg = "#eff1f5" },
375 | { name = "kdbx", text = "", fg = "#40a02b" },
376 | { name = "kicad_pcb", text = "", fg = "#eff1f5" },
377 | { name = "cfg", text = "", fg = "#7c7f93" },
378 | { name = "ape", text = "", fg = "#04a5e5" },
379 | { name = "org", text = "", fg = "#179299" },
380 | { name = "yml", text = "", fg = "#7c7f93" },
381 | { name = "swift", text = "", fg = "#fe640b" },
382 | { name = "eln", text = "", fg = "#7c7f93" },
383 | { name = "sol", text = "", fg = "#209fb5" },
384 | { name = "awk", text = "", fg = "#5c5f77" },
385 | { name = "7z", text = "", fg = "#df8e1d" },
386 | { name = "apl", text = "⍝", fg = "#df8e1d" },
387 | { name = "epp", text = "", fg = "#df8e1d" },
388 | { name = "app", text = "", fg = "#d20f39" },
389 | { name = "dot", text = "", fg = "#1e66f5" },
390 | { name = "kpp", text = "", fg = "#ea76cb" },
391 | { name = "eot", text = "", fg = "#eff1f5" },
392 | { name = "hpp", text = "", fg = "#7c7f93" },
393 | { name = "spec.tsx", text = "", fg = "#1e66f5" },
394 | { name = "hurl", text = "", fg = "#e64553" },
395 | { name = "cxxm", text = "", fg = "#209fb5" },
396 | { name = "c", text = "", fg = "#7287fd" },
397 | { name = "fcmacro", text = "", fg = "#d20f39" },
398 | { name = "sass", text = "", fg = "#dd7878" },
399 | { name = "yaml", text = "", fg = "#7c7f93" },
400 | { name = "xz", text = "", fg = "#df8e1d" },
401 | { name = "material", text = "", fg = "#ea76cb" },
402 | { name = "json5", text = "", fg = "#40a02b" },
403 | { name = "signature", text = "λ", fg = "#fe640b" },
404 | { name = "3mf", text = "", fg = "#8c8fa1" },
405 | { name = "jpg", text = "", fg = "#7c7f93" },
406 | { name = "xpi", text = "", fg = "#fe640b" },
407 | { name = "fcmat", text = "", fg = "#d20f39" },
408 | { name = "pot", text = "", fg = "#209fb5" },
409 | { name = "bin", text = "", fg = "#d20f39" },
410 | { name = "xlsx", text = "", fg = "#40a02b" },
411 | { name = "aac", text = "", fg = "#04a5e5" },
412 | { name = "kicad_sym", text = "", fg = "#eff1f5" },
413 | { name = "xcstrings", text = "", fg = "#209fb5" },
414 | { name = "lff", text = "", fg = "#eff1f5" },
415 | { name = "xcf", text = "", fg = "#5c5f77" },
416 | { name = "azcli", text = "", fg = "#1e66f5" },
417 | { name = "license", text = "", fg = "#40a02b" },
418 | { name = "jsonc", text = "", fg = "#40a02b" },
419 | { name = "xaml", text = "", fg = "#8839ef" },
420 | { name = "md5", text = "", fg = "#7c7f93" },
421 | { name = "xm", text = "", fg = "#209fb5" },
422 | { name = "sln", text = "", fg = "#8839ef" },
423 | { name = "jl", text = "", fg = "#ea76cb" },
424 | { name = "ml", text = "", fg = "#fe640b" },
425 | { name = "http", text = "", fg = "#04a5e5" },
426 | { name = "x", text = "", fg = "#7287fd" },
427 | { name = "wvc", text = "", fg = "#04a5e5" },
428 | { name = "wrz", text = "", fg = "#8c8fa1" },
429 | { name = "csproj", text = "", fg = "#8839ef" },
430 | { name = "wrl", text = "", fg = "#8c8fa1" },
431 | { name = "wma", text = "", fg = "#04a5e5" },
432 | { name = "woff2", text = "", fg = "#eff1f5" },
433 | { name = "woff", text = "", fg = "#eff1f5" },
434 | { name = "tscn", text = "", fg = "#7c7f93" },
435 | { name = "webmanifest", text = "", fg = "#df8e1d" },
436 | { name = "webm", text = "", fg = "#df8e1d" },
437 | { name = "fcbak", text = "", fg = "#d20f39" },
438 | { name = "log", text = "", fg = "#4c4f69" },
439 | { name = "wav", text = "", fg = "#04a5e5" },
440 | { name = "wasm", text = "", fg = "#8839ef" },
441 | { name = "styl", text = "", fg = "#40a02b" },
442 | { name = "gif", text = "", fg = "#7c7f93" },
443 | { name = "resi", text = "", fg = "#dd7878" },
444 | { name = "aiff", text = "", fg = "#04a5e5" },
445 | { name = "sha256", text = "", fg = "#7c7f93" },
446 | { name = "igs", text = "", fg = "#40a02b" },
447 | { name = "vsix", text = "", fg = "#8839ef" },
448 | { name = "vim", text = "", fg = "#40a02b" },
449 | { name = "diff", text = "", fg = "#4c4f69" },
450 | { name = "drl", text = "", fg = "#dc8a78" },
451 | { name = "erl", text = "", fg = "#ea76cb" },
452 | { name = "vhdl", text = "", fg = "#40a02b" },
453 | { name = "🔥", text = "", fg = "#fe640b" },
454 | { name = "hrl", text = "", fg = "#ea76cb" },
455 | { name = "fsi", text = "", fg = "#209fb5" },
456 | { name = "mm", text = "", fg = "#209fb5" },
457 | { name = "bz", text = "", fg = "#df8e1d" },
458 | { name = "vh", text = "", fg = "#40a02b" },
459 | { name = "kdb", text = "", fg = "#40a02b" },
460 | { name = "gz", text = "", fg = "#df8e1d" },
461 | { name = "cpp", text = "", fg = "#209fb5" },
462 | { name = "ui", text = "", fg = "#1e66f5" },
463 | { name = "txt", text = "", fg = "#40a02b" },
464 | { name = "spec.ts", text = "", fg = "#209fb5" },
465 | { name = "ccm", text = "", fg = "#e64553" },
466 | { name = "typoscript", text = "", fg = "#df8e1d" },
467 | { name = "typ", text = "", fg = "#209fb5" },
468 | { name = "txz", text = "", fg = "#df8e1d" },
469 | { name = "test.ts", text = "", fg = "#209fb5" },
470 | { name = "tsx", text = "", fg = "#1e66f5" },
471 | { name = "mk", text = "", fg = "#7c7f93" },
472 | { name = "webp", text = "", fg = "#7c7f93" },
473 | { name = "opus", text = "", fg = "#1e66f5" },
474 | { name = "bicep", text = "", fg = "#209fb5" },
475 | { name = "ts", text = "", fg = "#209fb5" },
476 | { name = "tres", text = "", fg = "#7c7f93" },
477 | { name = "torrent", text = "", fg = "#40a02b" },
478 | { name = "cxx", text = "", fg = "#209fb5" },
479 | { name = "iso", text = "", fg = "#bcc0cc" },
480 | { name = "ixx", text = "", fg = "#209fb5" },
481 | { name = "hxx", text = "", fg = "#7c7f93" },
482 | { name = "gql", text = "", fg = "#ea76cb" },
483 | { name = "tmux", text = "", fg = "#40a02b" },
484 | { name = "ini", text = "", fg = "#7c7f93" },
485 | { name = "m3u8", text = "", fg = "#dd7878" },
486 | { name = "image", text = "", fg = "#bcc0cc" },
487 | { name = "tfvars", text = "", fg = "#8839ef" },
488 | { name = "tex", text = "", fg = "#40a02b" },
489 | { name = "cbl", text = "⚙", fg = "#1e66f5" },
490 | { name = "flc", text = "", fg = "#eff1f5" },
491 | { name = "elc", text = "", fg = "#7c7f93" },
492 | { name = "test.tsx", text = "", fg = "#1e66f5" },
493 | { name = "twig", text = "", fg = "#40a02b" },
494 | { name = "sql", text = "", fg = "#dce0e8" },
495 | { name = "test.jsx", text = "", fg = "#209fb5" },
496 | { name = "htm", text = "", fg = "#fe640b" },
497 | { name = "gcode", text = "", fg = "#1e66f5" },
498 | { name = "test.js", text = "", fg = "#40a02b" },
499 | { name = "ino", text = "", fg = "#209fb5" },
500 | { name = "tcl", text = "", fg = "#1e66f5" },
501 | { name = "cljs", text = "", fg = "#209fb5" },
502 | { name = "tsconfig", text = "", fg = "#df8e1d" },
503 | { name = "img", text = "", fg = "#bcc0cc" },
504 | { name = "t", text = "", fg = "#209fb5" },
505 | { name = "fcstd1", text = "", fg = "#d20f39" },
506 | { name = "out", text = "", fg = "#d20f39" },
507 | { name = "jsx", text = "", fg = "#209fb5" },
508 | { name = "bash", text = "", fg = "#40a02b" },
509 | { name = "edn", text = "", fg = "#209fb5" },
510 | { name = "rss", text = "", fg = "#df8e1d" },
511 | { name = "flf", text = "", fg = "#eff1f5" },
512 | { name = "cache", text = "", fg = "#eff1f5" },
513 | { name = "sbt", text = "", fg = "#d20f39" },
514 | { name = "cppm", text = "", fg = "#209fb5" },
515 | { name = "svelte", text = "", fg = "#fe640b" },
516 | { name = "mo", text = "∞", fg = "#7287fd" },
517 | { name = "sv", text = "", fg = "#40a02b" },
518 | { name = "ko", text = "", fg = "#e6e9ef" },
519 | { name = "suo", text = "", fg = "#8839ef" },
520 | { name = "sldasm", text = "", fg = "#40a02b" },
521 | { name = "icalendar", text = "", fg = "#4c4f69" },
522 | { name = "go", text = "", fg = "#209fb5" },
523 | { name = "sublime", text = "", fg = "#fe640b" },
524 | { name = "stl", text = "", fg = "#8c8fa1" },
525 | { name = "mobi", text = "", fg = "#df8e1d" },
526 | { name = "graphql", text = "", fg = "#ea76cb" },
527 | { name = "m3u", text = "", fg = "#dd7878" },
528 | { name = "cpy", text = "⚙", fg = "#1e66f5" },
529 | { name = "kdenlive", text = "", fg = "#04a5e5" },
530 | { name = "pyo", text = "", fg = "#df8e1d" },
531 | { name = "po", text = "", fg = "#209fb5" },
532 | { name = "scala", text = "", fg = "#d20f39" },
533 | { name = "exs", text = "", fg = "#7c7f93" },
534 | { name = "odp", text = "", fg = "#df8e1d" },
535 | { name = "dump", text = "", fg = "#dce0e8" },
536 | { name = "stp", text = "", fg = "#40a02b" },
537 | { name = "step", text = "", fg = "#40a02b" },
538 | { name = "ste", text = "", fg = "#40a02b" },
539 | { name = "aif", text = "", fg = "#04a5e5" },
540 | { name = "strings", text = "", fg = "#209fb5" },
541 | { name = "cp", text = "", fg = "#209fb5" },
542 | { name = "fsscript", text = "", fg = "#209fb5" },
543 | { name = "mli", text = "", fg = "#fe640b" },
544 | { name = "bak", text = "", fg = "#7c7f93" },
545 | { name = "ssa", text = "", fg = "#df8e1d" },
546 | { name = "toml", text = "", fg = "#d20f39" },
547 | { name = "makefile", text = "", fg = "#7c7f93" },
548 | { name = "php", text = "", fg = "#7c7f93" },
549 | { name = "zst", text = "", fg = "#df8e1d" },
550 | { name = "spec.jsx", text = "", fg = "#209fb5" },
551 | { name = "kbx", text = "", fg = "#7c7f93" },
552 | { name = "fbx", text = "", fg = "#8c8fa1" },
553 | { name = "blend", text = "", fg = "#fe640b" },
554 | { name = "ifc", text = "", fg = "#40a02b" },
555 | { name = "spec.js", text = "", fg = "#40a02b" },
556 | { name = "so", text = "", fg = "#e6e9ef" },
557 | { name = "desktop", text = "", fg = "#4c4f69" },
558 | { name = "sml", text = "λ", fg = "#fe640b" },
559 | { name = "slvs", text = "", fg = "#40a02b" },
560 | { name = "pp", text = "", fg = "#df8e1d" },
561 | { name = "ps1", text = "", fg = "#1e66f5" },
562 | { name = "dropbox", text = "", fg = "#1e66f5" },
563 | { name = "kicad_mod", text = "", fg = "#eff1f5" },
564 | { name = "bat", text = "", fg = "#40a02b" },
565 | { name = "slim", text = "", fg = "#fe640b" },
566 | { name = "skp", text = "", fg = "#40a02b" },
567 | { name = "css", text = "", fg = "#04a5e5" },
568 | { name = "xul", text = "", fg = "#fe640b" },
569 | { name = "ige", text = "", fg = "#40a02b" },
570 | { name = "glb", text = "", fg = "#df8e1d" },
571 | { name = "ppt", text = "", fg = "#e64553" },
572 | { name = "sha512", text = "", fg = "#7c7f93" },
573 | { name = "ics", text = "", fg = "#4c4f69" },
574 | { name = "mdx", text = "", fg = "#209fb5" },
575 | { name = "sha1", text = "", fg = "#7c7f93" },
576 | { name = "f3d", text = "", fg = "#40a02b" },
577 | { name = "ass", text = "", fg = "#df8e1d" },
578 | { name = "godot", text = "", fg = "#7c7f93" },
579 | { name = "ifb", text = "", fg = "#4c4f69" },
580 | { name = "cson", text = "", fg = "#40a02b" },
581 | { name = "lib", text = "", fg = "#4c4f69" },
582 | { name = "luac", text = "", fg = "#04a5e5" },
583 | { name = "heex", text = "", fg = "#7c7f93" },
584 | { name = "scm", text = "", fg = "#eff1f5" },
585 | { name = "psd1", text = "", fg = "#7287fd" },
586 | { name = "sc", text = "", fg = "#d20f39" },
587 | { name = "scad", text = "", fg = "#df8e1d" },
588 | { name = "kts", text = "", fg = "#8839ef" },
589 | { name = "svh", text = "", fg = "#40a02b" },
590 | { name = "mts", text = "", fg = "#209fb5" },
591 | { name = "nfo", text = "", fg = "#eff1f5" },
592 | { name = "pck", text = "", fg = "#7c7f93" },
593 | { name = "rproj", text = "", fg = "#40a02b" },
594 | { name = "rlib", text = "", fg = "#dc8a78" },
595 | { name = "cljd", text = "", fg = "#209fb5" },
596 | { name = "ods", text = "", fg = "#40a02b" },
597 | { name = "res", text = "", fg = "#d20f39" },
598 | { name = "apk", text = "", fg = "#40a02b" },
599 | { name = "haml", text = "", fg = "#eff1f5" },
600 | { name = "d.ts", text = "", fg = "#df8e1d" },
601 | { name = "razor", text = "", fg = "#8839ef" },
602 | { name = "rake", text = "", fg = "#d20f39" },
603 | { name = "patch", text = "", fg = "#4c4f69" },
604 | { name = "cuh", text = "", fg = "#7c7f93" },
605 | { name = "d", text = "", fg = "#d20f39" },
606 | { name = "query", text = "", fg = "#40a02b" },
607 | { name = "psb", text = "", fg = "#209fb5" },
608 | { name = "nu", text = ">", fg = "#40a02b" },
609 | { name = "mov", text = "", fg = "#df8e1d" },
610 | { name = "lrc", text = "", fg = "#df8e1d" },
611 | { name = "pyx", text = "", fg = "#04a5e5" },
612 | { name = "pyw", text = "", fg = "#04a5e5" },
613 | { name = "cu", text = "", fg = "#40a02b" },
614 | { name = "bazel", text = "", fg = "#40a02b" },
615 | { name = "obj", text = "", fg = "#8c8fa1" },
616 | { name = "pyi", text = "", fg = "#df8e1d" },
617 | { name = "pyd", text = "", fg = "#df8e1d" },
618 | { name = "exe", text = "", fg = "#d20f39" },
619 | { name = "pyc", text = "", fg = "#df8e1d" },
620 | { name = "fctb", text = "", fg = "#d20f39" },
621 | { name = "part", text = "", fg = "#40a02b" },
622 | { name = "blade.php", text = "", fg = "#e64553" },
623 | { name = "git", text = "", fg = "#fe640b" },
624 | { name = "psd", text = "", fg = "#209fb5" },
625 | { name = "qss", text = "", fg = "#40a02b" },
626 | { name = "csv", text = "", fg = "#40a02b" },
627 | { name = "psm1", text = "", fg = "#7287fd" },
628 | { name = "dconf", text = "", fg = "#eff1f5" },
629 | { name = "config.ru", text = "", fg = "#d20f39" },
630 | { name = "prisma", text = "", fg = "#1e66f5" },
631 | { name = "conf", text = "", fg = "#7c7f93" },
632 | { name = "clj", text = "", fg = "#40a02b" },
633 | { name = "o", text = "", fg = "#d20f39" },
634 | { name = "mp4", text = "", fg = "#df8e1d" },
635 | { name = "cc", text = "", fg = "#e64553" },
636 | { name = "kicad_prl", text = "", fg = "#eff1f5" },
637 | { name = "bz3", text = "", fg = "#df8e1d" },
638 | { name = "asc", text = "", fg = "#6c6f85" },
639 | { name = "png", text = "", fg = "#7c7f93" },
640 | { name = "android", text = "", fg = "#40a02b" },
641 | { name = "pm", text = "", fg = "#209fb5" },
642 | { name = "h", text = "", fg = "#7c7f93" },
643 | { name = "pls", text = "", fg = "#dd7878" },
644 | { name = "ipynb", text = "", fg = "#fe640b" },
645 | { name = "pl", text = "", fg = "#209fb5" },
646 | { name = "ads", text = "", fg = "#eff1f5" },
647 | { name = "sqlite", text = "", fg = "#dce0e8" },
648 | { name = "pdf", text = "", fg = "#d20f39" },
649 | { name = "pcm", text = "", fg = "#1e66f5" },
650 | { name = "ico", text = "", fg = "#40a02b" },
651 | { name = "a", text = "", fg = "#e6e9ef" },
652 | { name = "R", text = "", fg = "#1e66f5" },
653 | { name = "ogg", text = "", fg = "#1e66f5" },
654 | { name = "pxd", text = "", fg = "#04a5e5" },
655 | { name = "kdenlivetitle", text = "", fg = "#04a5e5" },
656 | { name = "jxl", text = "", fg = "#7c7f93" },
657 | { name = "nswag", text = "", fg = "#40a02b" },
658 | { name = "nim", text = "", fg = "#df8e1d" },
659 | { name = "bqn", text = "⎉", fg = "#179299" },
660 | { name = "cts", text = "", fg = "#209fb5" },
661 | { name = "fcparam", text = "", fg = "#d20f39" },
662 | { name = "rs", text = "", fg = "#dc8a78" },
663 | { name = "mpp", text = "", fg = "#209fb5" },
664 | { name = "fdmdownload", text = "", fg = "#40a02b" },
665 | { name = "pptx", text = "", fg = "#e64553" },
666 | { name = "jpeg", text = "", fg = "#7c7f93" },
667 | { name = "bib", text = "", fg = "#40a02b" },
668 | { name = "vhd", text = "", fg = "#40a02b" },
669 | { name = "m", text = "", fg = "#7287fd" },
670 | { name = "js", text = "", fg = "#40a02b" },
671 | { name = "eex", text = "", fg = "#7c7f93" },
672 | { name = "tbc", text = "", fg = "#1e66f5" },
673 | { name = "astro", text = "", fg = "#e64553" },
674 | { name = "sha224", text = "", fg = "#7c7f93" },
675 | { name = "xcplayground", text = "", fg = "#fe640b" },
676 | { name = "el", text = "", fg = "#7c7f93" },
677 | { name = "m4v", text = "", fg = "#df8e1d" },
678 | { name = "m4a", text = "", fg = "#04a5e5" },
679 | { name = "cs", text = "", fg = "#40a02b" },
680 | { name = "hs", text = "", fg = "#7c7f93" },
681 | { name = "tgz", text = "", fg = "#df8e1d" },
682 | { name = "fs", text = "", fg = "#209fb5" },
683 | { name = "luau", text = "", fg = "#04a5e5" },
684 | { name = "dxf", text = "", fg = "#40a02b" },
685 | { name = "download", text = "", fg = "#40a02b" },
686 | { name = "cast", text = "", fg = "#df8e1d" },
687 | { name = "qrc", text = "", fg = "#40a02b" },
688 | { name = "lua", text = "", fg = "#04a5e5" },
689 | { name = "lhs", text = "", fg = "#7c7f93" },
690 | { name = "md", text = "", fg = "#4c4f69" },
691 | { name = "leex", text = "", fg = "#7c7f93" },
692 | { name = "ai", text = "", fg = "#40a02b" },
693 | { name = "lck", text = "", fg = "#bcc0cc" },
694 | { name = "kt", text = "", fg = "#8839ef" },
695 | { name = "bicepparam", text = "", fg = "#7c7f93" },
696 | { name = "hex", text = "", fg = "#1e66f5" },
697 | { name = "zig", text = "", fg = "#df8e1d" },
698 | { name = "bzl", text = "", fg = "#40a02b" },
699 | { name = "cljc", text = "", fg = "#40a02b" },
700 | { name = "kicad_dru", text = "", fg = "#eff1f5" },
701 | { name = "fctl", text = "", fg = "#d20f39" },
702 | { name = "f#", text = "", fg = "#209fb5" },
703 | { name = "odt", text = "", fg = "#04a5e5" },
704 | { name = "conda", text = "", fg = "#40a02b" },
705 | { name = "vala", text = "", fg = "#8839ef" },
706 | { name = "erb", text = "", fg = "#d20f39" },
707 | { name = "mp3", text = "", fg = "#04a5e5" },
708 | { name = "bz2", text = "", fg = "#df8e1d" },
709 | { name = "coffee", text = "", fg = "#40a02b" },
710 | { name = "cr", text = "", fg = "#ccd0da" },
711 | { name = "f90", text = "", fg = "#5c5f77" },
712 | { name = "jwmrc", text = "", fg = "#1e66f5" },
713 | { name = "c++", text = "", fg = "#e64553" },
714 | { name = "fcscript", text = "", fg = "#d20f39" },
715 | { name = "fods", text = "", fg = "#40a02b" },
716 | { name = "cue", text = "", fg = "#dd7878" },
717 | { name = "srt", text = "", fg = "#df8e1d" },
718 | { name = "info", text = "", fg = "#eff1f5" },
719 | { name = "hh", text = "", fg = "#7c7f93" },
720 | { name = "sig", text = "λ", fg = "#fe640b" },
721 | { name = "html", text = "", fg = "#fe640b" },
722 | { name = "iges", text = "", fg = "#40a02b" },
723 | { name = "kicad_wks", text = "", fg = "#eff1f5" },
724 | { name = "hbs", text = "", fg = "#fe640b" },
725 | { name = "fcstd", text = "", fg = "#d20f39" },
726 | { name = "gresource", text = "", fg = "#eff1f5" },
727 | { name = "sub", text = "", fg = "#df8e1d" },
728 | { name = "ical", text = "", fg = "#4c4f69" },
729 | { name = "crdownload", text = "", fg = "#40a02b" },
730 | { name = "pub", text = "", fg = "#df8e1d" },
731 | { name = "vue", text = "", fg = "#40a02b" },
732 | { name = "gd", text = "", fg = "#7c7f93" },
733 | { name = "fsx", text = "", fg = "#209fb5" },
734 | { name = "mkv", text = "", fg = "#df8e1d" },
735 | { name = "py", text = "", fg = "#df8e1d" },
736 | { name = "kicad_sch", text = "", fg = "#eff1f5" },
737 | { name = "epub", text = "", fg = "#df8e1d" },
738 | { name = "env", text = "", fg = "#df8e1d" },
739 | { name = "magnet", text = "", fg = "#d20f39" },
740 | { name = "elf", text = "", fg = "#d20f39" },
741 | { name = "fodg", text = "", fg = "#eff1f5" },
742 | { name = "svg", text = "", fg = "#df8e1d" },
743 | { name = "dwg", text = "", fg = "#40a02b" },
744 | { name = "docx", text = "", fg = "#1e66f5" },
745 | { name = "pro", text = "", fg = "#df8e1d" },
746 | { name = "db", text = "", fg = "#dce0e8" },
747 | { name = "rb", text = "", fg = "#d20f39" },
748 | { name = "r", text = "", fg = "#1e66f5" },
749 | { name = "scss", text = "", fg = "#dd7878" },
750 | { name = "cow", text = "", fg = "#fe640b" },
751 | { name = "gleam", text = "", fg = "#ea76cb" },
752 | { name = "v", text = "", fg = "#40a02b" },
753 | { name = "kicad_pro", text = "", fg = "#eff1f5" },
754 | { name = "liquid", text = "", fg = "#40a02b" },
755 | { name = "zip", text = "", fg = "#df8e1d" },
756 | ]
757 |
--------------------------------------------------------------------------------
/themes/latte/catppuccin-latte-green.toml:
--------------------------------------------------------------------------------
1 | [manager]
2 | cwd = { fg = "#179299" }
3 |
4 | hovered = { fg = "#eff1f5", bg = "#40a02b" }
5 | preview_hovered = { fg = "#eff1f5", bg = "#4c4f69" }
6 |
7 | find_keyword = { fg = "#df8e1d", italic = true }
8 | find_position = { fg = "#ea76cb", bg = "reset", italic = true }
9 |
10 | marker_copied = { fg = "#40a02b", bg = "#40a02b" }
11 | marker_cut = { fg = "#d20f39", bg = "#d20f39" }
12 | marker_marked = { fg = "#179299", bg = "#179299" }
13 | marker_selected = { fg = "#40a02b", bg = "#40a02b" }
14 |
15 | tab_active = { fg = "#eff1f5", bg = "#4c4f69" }
16 | tab_inactive = { fg = "#4c4f69", bg = "#bcc0cc" }
17 | tab_width = 1
18 |
19 | count_copied = { fg = "#eff1f5", bg = "#40a02b" }
20 | count_cut = { fg = "#eff1f5", bg = "#d20f39" }
21 | count_selected = { fg = "#eff1f5", bg = "#40a02b" }
22 |
23 | border_symbol = "│"
24 | border_style = { fg = "#8c8fa1" }
25 |
26 | syntect_theme = "~/.config/yazi/Catppuccin-latte.tmTheme"
27 |
28 | [mode]
29 | normal_main = { fg = "#eff1f5", bg = "#40a02b", bold = true }
30 | normal_alt = { fg = "#40a02b", bg = "#ccd0da"}
31 |
32 | select_main = { fg = "#eff1f5", bg = "#40a02b", bold = true }
33 | select_alt = { fg = "#40a02b", bg = "#ccd0da"}
34 |
35 | unset_main = { fg = "#eff1f5", bg = "#dd7878", bold = true }
36 | unset_alt = { fg = "#dd7878", bg = "#ccd0da"}
37 |
38 | [status]
39 | separator_open = ""
40 | separator_close = ""
41 |
42 | progress_label = { fg = "#ffffff", bold = true }
43 | progress_normal = { fg = "#1e66f5", bg = "#bcc0cc" }
44 | progress_error = { fg = "#d20f39", bg = "#bcc0cc" }
45 |
46 | perm_type = { fg = "#1e66f5" }
47 | perm_read = { fg = "#df8e1d" }
48 | perm_write = { fg = "#d20f39" }
49 | perm_exec = { fg = "#40a02b" }
50 | perm_sep = { fg = "#8c8fa1" }
51 |
52 | [input]
53 | border = { fg = "#40a02b" }
54 | title = {}
55 | value = {}
56 | selected = { reversed = true }
57 |
58 | [pick]
59 | border = { fg = "#40a02b" }
60 | active = { fg = "#ea76cb" }
61 | inactive = {}
62 |
63 | [confirm]
64 | border = { fg = "#40a02b" }
65 | title = { fg = "#40a02b" }
66 | content = {}
67 | list = {}
68 | btn_yes = { reversed = true }
69 | btn_no = {}
70 |
71 | [cmp]
72 | border = { fg = "#40a02b" }
73 |
74 | [tasks]
75 | border = { fg = "#40a02b" }
76 | title = {}
77 | hovered = { underline = true }
78 |
79 | [which]
80 | mask = { bg = "#ccd0da" }
81 | cand = { fg = "#179299" }
82 | rest = { fg = "#7c7f93" }
83 | desc = { fg = "#ea76cb" }
84 | separator = " "
85 | separator_style = { fg = "#acb0be" }
86 |
87 | [help]
88 | on = { fg = "#179299" }
89 | run = { fg = "#ea76cb" }
90 | desc = { fg = "#7c7f93" }
91 | hovered = { bg = "#acb0be", bold = true }
92 | footer = { fg = "#4c4f69", bg = "#bcc0cc" }
93 |
94 | [notify]
95 | title_info = { fg = "#179299" }
96 | title_warn = { fg = "#df8e1d" }
97 | title_error = { fg = "#d20f39" }
98 |
99 | [filetype]
100 | rules = [
101 | # Media
102 | { mime = "image/*", fg = "#179299" },
103 | { mime = "{audio,video}/*", fg = "#df8e1d" },
104 |
105 | # Archives
106 | { mime = "application/*zip", fg = "#ea76cb" },
107 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#ea76cb" },
108 |
109 | # Documents
110 | { mime = "application/{pdf,doc,rtf}", fg = "#40a02b" },
111 |
112 | # Fallback
113 | { name = "*", fg = "#4c4f69" },
114 | { name = "*/", fg = "#40a02b" }
115 | ]
116 |
117 | [spot]
118 | border = { fg = "#40a02b" }
119 | title = { fg = "#40a02b" }
120 | tbl_cell = { fg = "#40a02b", reversed = true }
121 | tbl_col = { bold = true }
122 |
123 | [icon]
124 | files = [
125 | { name = "kritadisplayrc", text = "", fg = "#ea76cb" },
126 | { name = ".gtkrc-2.0", text = "", fg = "#eff1f5" },
127 | { name = "bspwmrc", text = "", fg = "#4c4f69" },
128 | { name = "webpack", text = "", fg = "#209fb5" },
129 | { name = "tsconfig.json", text = "", fg = "#209fb5" },
130 | { name = ".vimrc", text = "", fg = "#40a02b" },
131 | { name = "gemfile$", text = "", fg = "#d20f39" },
132 | { name = "xmobarrc", text = "", fg = "#e64553" },
133 | { name = "avif", text = "", fg = "#7c7f93" },
134 | { name = "fp-info-cache", text = "", fg = "#eff1f5" },
135 | { name = ".zshrc", text = "", fg = "#40a02b" },
136 | { name = "robots.txt", text = "", fg = "#6c6f85" },
137 | { name = "dockerfile", text = "", fg = "#7287fd" },
138 | { name = ".git-blame-ignore-revs", text = "", fg = "#fe640b" },
139 | { name = ".nvmrc", text = "", fg = "#40a02b" },
140 | { name = "hyprpaper.conf", text = "", fg = "#209fb5" },
141 | { name = ".prettierignore", text = "", fg = "#7287fd" },
142 | { name = "rakefile", text = "", fg = "#d20f39" },
143 | { name = "code_of_conduct", text = "", fg = "#e64553" },
144 | { name = "cmakelists.txt", text = "", fg = "#dce0e8" },
145 | { name = ".env", text = "", fg = "#df8e1d" },
146 | { name = "copying.lesser", text = "", fg = "#40a02b" },
147 | { name = "readme", text = "", fg = "#eff1f5" },
148 | { name = "settings.gradle", text = "", fg = "#1e66f5" },
149 | { name = "gruntfile.coffee", text = "", fg = "#fe640b" },
150 | { name = ".eslintignore", text = "", fg = "#8839ef" },
151 | { name = "kalgebrarc", text = "", fg = "#04a5e5" },
152 | { name = "kdenliverc", text = "", fg = "#04a5e5" },
153 | { name = ".prettierrc.cjs", text = "", fg = "#7287fd" },
154 | { name = "cantorrc", text = "", fg = "#04a5e5" },
155 | { name = "rmd", text = "", fg = "#209fb5" },
156 | { name = "vagrantfile$", text = "", fg = "#1e66f5" },
157 | { name = ".Xauthority", text = "", fg = "#fe640b" },
158 | { name = "prettier.config.ts", text = "", fg = "#7287fd" },
159 | { name = "node_modules", text = "", fg = "#e64553" },
160 | { name = ".prettierrc.toml", text = "", fg = "#7287fd" },
161 | { name = "build.zig.zon", text = "", fg = "#df8e1d" },
162 | { name = ".ds_store", text = "", fg = "#4c4f69" },
163 | { name = "PKGBUILD", text = "", fg = "#04a5e5" },
164 | { name = ".prettierrc", text = "", fg = "#7287fd" },
165 | { name = ".bash_profile", text = "", fg = "#40a02b" },
166 | { name = ".npmignore", text = "", fg = "#e64553" },
167 | { name = ".mailmap", text = "", fg = "#fe640b" },
168 | { name = ".codespellrc", text = "", fg = "#40a02b" },
169 | { name = "svelte.config.js", text = "", fg = "#fe640b" },
170 | { name = "eslint.config.ts", text = "", fg = "#8839ef" },
171 | { name = "config", text = "", fg = "#7c7f93" },
172 | { name = ".gitlab-ci.yml", text = "", fg = "#e64553" },
173 | { name = ".gitconfig", text = "", fg = "#fe640b" },
174 | { name = "_gvimrc", text = "", fg = "#40a02b" },
175 | { name = ".xinitrc", text = "", fg = "#fe640b" },
176 | { name = "checkhealth", text = "", fg = "#04a5e5" },
177 | { name = "sxhkdrc", text = "", fg = "#4c4f69" },
178 | { name = ".bashrc", text = "", fg = "#40a02b" },
179 | { name = "tailwind.config.mjs", text = "", fg = "#209fb5" },
180 | { name = "ext_typoscript_setup.txt", text = "", fg = "#df8e1d" },
181 | { name = "commitlint.config.ts", text = "", fg = "#179299" },
182 | { name = "py.typed", text = "", fg = "#df8e1d" },
183 | { name = ".nanorc", text = "", fg = "#4c4f69" },
184 | { name = "commit_editmsg", text = "", fg = "#fe640b" },
185 | { name = ".luaurc", text = "", fg = "#04a5e5" },
186 | { name = "fp-lib-table", text = "", fg = "#eff1f5" },
187 | { name = ".editorconfig", text = "", fg = "#eff1f5" },
188 | { name = "justfile", text = "", fg = "#7c7f93" },
189 | { name = "kdeglobals", text = "", fg = "#04a5e5" },
190 | { name = "license.md", text = "", fg = "#df8e1d" },
191 | { name = ".clang-format", text = "", fg = "#7c7f93" },
192 | { name = "docker-compose.yaml", text = "", fg = "#7287fd" },
193 | { name = "copying", text = "", fg = "#40a02b" },
194 | { name = "go.mod", text = "", fg = "#209fb5" },
195 | { name = "lxqt.conf", text = "", fg = "#04a5e5" },
196 | { name = "brewfile", text = "", fg = "#d20f39" },
197 | { name = "gulpfile.coffee", text = "", fg = "#d20f39" },
198 | { name = ".dockerignore", text = "", fg = "#7287fd" },
199 | { name = ".settings.json", text = "", fg = "#8839ef" },
200 | { name = "tailwind.config.js", text = "", fg = "#209fb5" },
201 | { name = ".clang-tidy", text = "", fg = "#7c7f93" },
202 | { name = ".gvimrc", text = "", fg = "#40a02b" },
203 | { name = "nuxt.config.cjs", text = "", fg = "#40a02b" },
204 | { name = "xsettingsd.conf", text = "", fg = "#fe640b" },
205 | { name = "nuxt.config.js", text = "", fg = "#40a02b" },
206 | { name = "eslint.config.cjs", text = "", fg = "#8839ef" },
207 | { name = "sym-lib-table", text = "", fg = "#eff1f5" },
208 | { name = ".condarc", text = "", fg = "#40a02b" },
209 | { name = "xmonad.hs", text = "", fg = "#e64553" },
210 | { name = "tmux.conf", text = "", fg = "#40a02b" },
211 | { name = "xmobarrc.hs", text = "", fg = "#e64553" },
212 | { name = ".prettierrc.yaml", text = "", fg = "#7287fd" },
213 | { name = ".pre-commit-config.yaml", text = "", fg = "#df8e1d" },
214 | { name = "i3blocks.conf", text = "", fg = "#e6e9ef" },
215 | { name = "xorg.conf", text = "", fg = "#fe640b" },
216 | { name = ".zshenv", text = "", fg = "#40a02b" },
217 | { name = "vlcrc", text = "", fg = "#fe640b" },
218 | { name = "license", text = "", fg = "#df8e1d" },
219 | { name = "unlicense", text = "", fg = "#df8e1d" },
220 | { name = "tmux.conf.local", text = "", fg = "#40a02b" },
221 | { name = ".SRCINFO", text = "", fg = "#04a5e5" },
222 | { name = "tailwind.config.ts", text = "", fg = "#209fb5" },
223 | { name = "security.md", text = "", fg = "#bcc0cc" },
224 | { name = "security", text = "", fg = "#bcc0cc" },
225 | { name = ".eslintrc", text = "", fg = "#8839ef" },
226 | { name = "gradle.properties", text = "", fg = "#1e66f5" },
227 | { name = "code_of_conduct.md", text = "", fg = "#e64553" },
228 | { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#fe640b" },
229 | { name = "PrusaSlicer.ini", text = "", fg = "#fe640b" },
230 | { name = "procfile", text = "", fg = "#7c7f93" },
231 | { name = "mpv.conf", text = "", fg = "#4c4f69" },
232 | { name = ".prettierrc.json5", text = "", fg = "#7287fd" },
233 | { name = "i3status.conf", text = "", fg = "#e6e9ef" },
234 | { name = "prettier.config.mjs", text = "", fg = "#7287fd" },
235 | { name = ".pylintrc", text = "", fg = "#7c7f93" },
236 | { name = "prettier.config.cjs", text = "", fg = "#7287fd" },
237 | { name = ".luacheckrc", text = "", fg = "#04a5e5" },
238 | { name = "containerfile", text = "", fg = "#7287fd" },
239 | { name = "eslint.config.mjs", text = "", fg = "#8839ef" },
240 | { name = "gruntfile.js", text = "", fg = "#fe640b" },
241 | { name = "bun.lockb", text = "", fg = "#eff1f5" },
242 | { name = ".gitattributes", text = "", fg = "#fe640b" },
243 | { name = "gruntfile.ts", text = "", fg = "#fe640b" },
244 | { name = "pom.xml", text = "", fg = "#d20f39" },
245 | { name = "favicon.ico", text = "", fg = "#40a02b" },
246 | { name = "package-lock.json", text = "", fg = "#d20f39" },
247 | { name = "build", text = "", fg = "#40a02b" },
248 | { name = "package.json", text = "", fg = "#e64553" },
249 | { name = "nuxt.config.ts", text = "", fg = "#40a02b" },
250 | { name = "nuxt.config.mjs", text = "", fg = "#40a02b" },
251 | { name = "mix.lock", text = "", fg = "#7c7f93" },
252 | { name = "makefile", text = "", fg = "#7c7f93" },
253 | { name = "gulpfile.js", text = "", fg = "#d20f39" },
254 | { name = "lxde-rc.xml", text = "", fg = "#8c8fa1" },
255 | { name = "kritarc", text = "", fg = "#ea76cb" },
256 | { name = "gtkrc", text = "", fg = "#eff1f5" },
257 | { name = "ionic.config.json", text = "", fg = "#7287fd" },
258 | { name = ".prettierrc.mjs", text = "", fg = "#7287fd" },
259 | { name = ".prettierrc.yml", text = "", fg = "#7287fd" },
260 | { name = ".npmrc", text = "", fg = "#e64553" },
261 | { name = "weston.ini", text = "", fg = "#df8e1d" },
262 | { name = "gulpfile.babel.js", text = "", fg = "#d20f39" },
263 | { name = "i18n.config.ts", text = "", fg = "#7287fd" },
264 | { name = "commitlint.config.js", text = "", fg = "#179299" },
265 | { name = ".gitmodules", text = "", fg = "#fe640b" },
266 | { name = "gradle-wrapper.properties", text = "", fg = "#1e66f5" },
267 | { name = "hypridle.conf", text = "", fg = "#209fb5" },
268 | { name = "vercel.json", text = "▲", fg = "#eff1f5" },
269 | { name = "hyprlock.conf", text = "", fg = "#209fb5" },
270 | { name = "go.sum", text = "", fg = "#209fb5" },
271 | { name = "kdenlive-layoutsrc", text = "", fg = "#04a5e5" },
272 | { name = "gruntfile.babel.js", text = "", fg = "#fe640b" },
273 | { name = "compose.yml", text = "", fg = "#7287fd" },
274 | { name = "i18n.config.js", text = "", fg = "#7287fd" },
275 | { name = "readme.md", text = "", fg = "#eff1f5" },
276 | { name = "gradlew", text = "", fg = "#1e66f5" },
277 | { name = "go.work", text = "", fg = "#209fb5" },
278 | { name = "gulpfile.ts", text = "", fg = "#d20f39" },
279 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
280 | { name = "FreeCAD.conf", text = "", fg = "#d20f39" },
281 | { name = "compose.yaml", text = "", fg = "#7287fd" },
282 | { name = "eslint.config.js", text = "", fg = "#8839ef" },
283 | { name = "hyprland.conf", text = "", fg = "#209fb5" },
284 | { name = "docker-compose.yml", text = "", fg = "#7287fd" },
285 | { name = "groovy", text = "", fg = "#5c5f77" },
286 | { name = "QtProject.conf", text = "", fg = "#40a02b" },
287 | { name = "platformio.ini", text = "", fg = "#fe640b" },
288 | { name = "build.gradle", text = "", fg = "#1e66f5" },
289 | { name = ".nuxtrc", text = "", fg = "#40a02b" },
290 | { name = "_vimrc", text = "", fg = "#40a02b" },
291 | { name = ".zprofile", text = "", fg = "#40a02b" },
292 | { name = ".xsession", text = "", fg = "#fe640b" },
293 | { name = "prettier.config.js", text = "", fg = "#7287fd" },
294 | { name = ".babelrc", text = "", fg = "#40a02b" },
295 | { name = "workspace", text = "", fg = "#40a02b" },
296 | { name = ".prettierrc.json", text = "", fg = "#7287fd" },
297 | { name = ".prettierrc.js", text = "", fg = "#7287fd" },
298 | { name = ".Xresources", text = "", fg = "#fe640b" },
299 | { name = ".gitignore", text = "", fg = "#fe640b" },
300 | { name = ".justfile", text = "", fg = "#7c7f93" },
301 | ]
302 | exts = [
303 | { name = "otf", text = "", fg = "#eff1f5" },
304 | { name = "import", text = "", fg = "#eff1f5" },
305 | { name = "krz", text = "", fg = "#ea76cb" },
306 | { name = "adb", text = "", fg = "#dce0e8" },
307 | { name = "ttf", text = "", fg = "#eff1f5" },
308 | { name = "webpack", text = "", fg = "#209fb5" },
309 | { name = "dart", text = "", fg = "#1e66f5" },
310 | { name = "vsh", text = "", fg = "#7287fd" },
311 | { name = "doc", text = "", fg = "#1e66f5" },
312 | { name = "zsh", text = "", fg = "#40a02b" },
313 | { name = "ex", text = "", fg = "#7c7f93" },
314 | { name = "hx", text = "", fg = "#df8e1d" },
315 | { name = "fodt", text = "", fg = "#04a5e5" },
316 | { name = "mojo", text = "", fg = "#fe640b" },
317 | { name = "templ", text = "", fg = "#df8e1d" },
318 | { name = "nix", text = "", fg = "#04a5e5" },
319 | { name = "cshtml", text = "", fg = "#8839ef" },
320 | { name = "fish", text = "", fg = "#5c5f77" },
321 | { name = "ply", text = "", fg = "#8c8fa1" },
322 | { name = "sldprt", text = "", fg = "#40a02b" },
323 | { name = "gemspec", text = "", fg = "#d20f39" },
324 | { name = "mjs", text = "", fg = "#df8e1d" },
325 | { name = "csh", text = "", fg = "#5c5f77" },
326 | { name = "cmake", text = "", fg = "#dce0e8" },
327 | { name = "fodp", text = "", fg = "#df8e1d" },
328 | { name = "vi", text = "", fg = "#df8e1d" },
329 | { name = "msf", text = "", fg = "#1e66f5" },
330 | { name = "blp", text = "", fg = "#7287fd" },
331 | { name = "less", text = "", fg = "#4c4f69" },
332 | { name = "sh", text = "", fg = "#5c5f77" },
333 | { name = "odg", text = "", fg = "#eff1f5" },
334 | { name = "mint", text = "", fg = "#40a02b" },
335 | { name = "dll", text = "", fg = "#4c4f69" },
336 | { name = "odf", text = "", fg = "#ea76cb" },
337 | { name = "sqlite3", text = "", fg = "#dce0e8" },
338 | { name = "Dockerfile", text = "", fg = "#7287fd" },
339 | { name = "ksh", text = "", fg = "#5c5f77" },
340 | { name = "rmd", text = "", fg = "#209fb5" },
341 | { name = "wv", text = "", fg = "#04a5e5" },
342 | { name = "xml", text = "", fg = "#fe640b" },
343 | { name = "markdown", text = "", fg = "#4c4f69" },
344 | { name = "qml", text = "", fg = "#40a02b" },
345 | { name = "3gp", text = "", fg = "#df8e1d" },
346 | { name = "pxi", text = "", fg = "#04a5e5" },
347 | { name = "flac", text = "", fg = "#1e66f5" },
348 | { name = "gpr", text = "", fg = "#ea76cb" },
349 | { name = "huff", text = "", fg = "#8839ef" },
350 | { name = "json", text = "", fg = "#40a02b" },
351 | { name = "gv", text = "", fg = "#1e66f5" },
352 | { name = "bmp", text = "", fg = "#7c7f93" },
353 | { name = "lock", text = "", fg = "#bcc0cc" },
354 | { name = "sha384", text = "", fg = "#7c7f93" },
355 | { name = "cobol", text = "⚙", fg = "#1e66f5" },
356 | { name = "cob", text = "⚙", fg = "#1e66f5" },
357 | { name = "java", text = "", fg = "#d20f39" },
358 | { name = "cjs", text = "", fg = "#40a02b" },
359 | { name = "qm", text = "", fg = "#209fb5" },
360 | { name = "ebuild", text = "", fg = "#4c4f69" },
361 | { name = "mustache", text = "", fg = "#fe640b" },
362 | { name = "terminal", text = "", fg = "#40a02b" },
363 | { name = "ejs", text = "", fg = "#40a02b" },
364 | { name = "brep", text = "", fg = "#40a02b" },
365 | { name = "rar", text = "", fg = "#df8e1d" },
366 | { name = "gradle", text = "", fg = "#1e66f5" },
367 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
368 | { name = "applescript", text = "", fg = "#7c7f93" },
369 | { name = "elm", text = "", fg = "#209fb5" },
370 | { name = "ebook", text = "", fg = "#df8e1d" },
371 | { name = "kra", text = "", fg = "#ea76cb" },
372 | { name = "tf", text = "", fg = "#8839ef" },
373 | { name = "xls", text = "", fg = "#40a02b" },
374 | { name = "fnl", text = "", fg = "#eff1f5" },
375 | { name = "kdbx", text = "", fg = "#40a02b" },
376 | { name = "kicad_pcb", text = "", fg = "#eff1f5" },
377 | { name = "cfg", text = "", fg = "#7c7f93" },
378 | { name = "ape", text = "", fg = "#04a5e5" },
379 | { name = "org", text = "", fg = "#179299" },
380 | { name = "yml", text = "", fg = "#7c7f93" },
381 | { name = "swift", text = "", fg = "#fe640b" },
382 | { name = "eln", text = "", fg = "#7c7f93" },
383 | { name = "sol", text = "", fg = "#209fb5" },
384 | { name = "awk", text = "", fg = "#5c5f77" },
385 | { name = "7z", text = "", fg = "#df8e1d" },
386 | { name = "apl", text = "⍝", fg = "#df8e1d" },
387 | { name = "epp", text = "", fg = "#df8e1d" },
388 | { name = "app", text = "", fg = "#d20f39" },
389 | { name = "dot", text = "", fg = "#1e66f5" },
390 | { name = "kpp", text = "", fg = "#ea76cb" },
391 | { name = "eot", text = "", fg = "#eff1f5" },
392 | { name = "hpp", text = "", fg = "#7c7f93" },
393 | { name = "spec.tsx", text = "", fg = "#1e66f5" },
394 | { name = "hurl", text = "", fg = "#e64553" },
395 | { name = "cxxm", text = "", fg = "#209fb5" },
396 | { name = "c", text = "", fg = "#7287fd" },
397 | { name = "fcmacro", text = "", fg = "#d20f39" },
398 | { name = "sass", text = "", fg = "#dd7878" },
399 | { name = "yaml", text = "", fg = "#7c7f93" },
400 | { name = "xz", text = "", fg = "#df8e1d" },
401 | { name = "material", text = "", fg = "#ea76cb" },
402 | { name = "json5", text = "", fg = "#40a02b" },
403 | { name = "signature", text = "λ", fg = "#fe640b" },
404 | { name = "3mf", text = "", fg = "#8c8fa1" },
405 | { name = "jpg", text = "", fg = "#7c7f93" },
406 | { name = "xpi", text = "", fg = "#fe640b" },
407 | { name = "fcmat", text = "", fg = "#d20f39" },
408 | { name = "pot", text = "", fg = "#209fb5" },
409 | { name = "bin", text = "", fg = "#d20f39" },
410 | { name = "xlsx", text = "", fg = "#40a02b" },
411 | { name = "aac", text = "", fg = "#04a5e5" },
412 | { name = "kicad_sym", text = "", fg = "#eff1f5" },
413 | { name = "xcstrings", text = "", fg = "#209fb5" },
414 | { name = "lff", text = "", fg = "#eff1f5" },
415 | { name = "xcf", text = "", fg = "#5c5f77" },
416 | { name = "azcli", text = "", fg = "#1e66f5" },
417 | { name = "license", text = "", fg = "#40a02b" },
418 | { name = "jsonc", text = "", fg = "#40a02b" },
419 | { name = "xaml", text = "", fg = "#8839ef" },
420 | { name = "md5", text = "", fg = "#7c7f93" },
421 | { name = "xm", text = "", fg = "#209fb5" },
422 | { name = "sln", text = "", fg = "#8839ef" },
423 | { name = "jl", text = "", fg = "#ea76cb" },
424 | { name = "ml", text = "", fg = "#fe640b" },
425 | { name = "http", text = "", fg = "#04a5e5" },
426 | { name = "x", text = "", fg = "#7287fd" },
427 | { name = "wvc", text = "", fg = "#04a5e5" },
428 | { name = "wrz", text = "", fg = "#8c8fa1" },
429 | { name = "csproj", text = "", fg = "#8839ef" },
430 | { name = "wrl", text = "", fg = "#8c8fa1" },
431 | { name = "wma", text = "", fg = "#04a5e5" },
432 | { name = "woff2", text = "", fg = "#eff1f5" },
433 | { name = "woff", text = "", fg = "#eff1f5" },
434 | { name = "tscn", text = "", fg = "#7c7f93" },
435 | { name = "webmanifest", text = "", fg = "#df8e1d" },
436 | { name = "webm", text = "", fg = "#df8e1d" },
437 | { name = "fcbak", text = "", fg = "#d20f39" },
438 | { name = "log", text = "", fg = "#4c4f69" },
439 | { name = "wav", text = "", fg = "#04a5e5" },
440 | { name = "wasm", text = "", fg = "#8839ef" },
441 | { name = "styl", text = "", fg = "#40a02b" },
442 | { name = "gif", text = "", fg = "#7c7f93" },
443 | { name = "resi", text = "", fg = "#dd7878" },
444 | { name = "aiff", text = "", fg = "#04a5e5" },
445 | { name = "sha256", text = "", fg = "#7c7f93" },
446 | { name = "igs", text = "", fg = "#40a02b" },
447 | { name = "vsix", text = "", fg = "#8839ef" },
448 | { name = "vim", text = "", fg = "#40a02b" },
449 | { name = "diff", text = "", fg = "#4c4f69" },
450 | { name = "drl", text = "", fg = "#dc8a78" },
451 | { name = "erl", text = "", fg = "#ea76cb" },
452 | { name = "vhdl", text = "", fg = "#40a02b" },
453 | { name = "🔥", text = "", fg = "#fe640b" },
454 | { name = "hrl", text = "", fg = "#ea76cb" },
455 | { name = "fsi", text = "", fg = "#209fb5" },
456 | { name = "mm", text = "", fg = "#209fb5" },
457 | { name = "bz", text = "", fg = "#df8e1d" },
458 | { name = "vh", text = "", fg = "#40a02b" },
459 | { name = "kdb", text = "", fg = "#40a02b" },
460 | { name = "gz", text = "", fg = "#df8e1d" },
461 | { name = "cpp", text = "", fg = "#209fb5" },
462 | { name = "ui", text = "", fg = "#1e66f5" },
463 | { name = "txt", text = "", fg = "#40a02b" },
464 | { name = "spec.ts", text = "", fg = "#209fb5" },
465 | { name = "ccm", text = "", fg = "#e64553" },
466 | { name = "typoscript", text = "", fg = "#df8e1d" },
467 | { name = "typ", text = "", fg = "#209fb5" },
468 | { name = "txz", text = "", fg = "#df8e1d" },
469 | { name = "test.ts", text = "", fg = "#209fb5" },
470 | { name = "tsx", text = "", fg = "#1e66f5" },
471 | { name = "mk", text = "", fg = "#7c7f93" },
472 | { name = "webp", text = "", fg = "#7c7f93" },
473 | { name = "opus", text = "", fg = "#1e66f5" },
474 | { name = "bicep", text = "", fg = "#209fb5" },
475 | { name = "ts", text = "", fg = "#209fb5" },
476 | { name = "tres", text = "", fg = "#7c7f93" },
477 | { name = "torrent", text = "", fg = "#40a02b" },
478 | { name = "cxx", text = "", fg = "#209fb5" },
479 | { name = "iso", text = "", fg = "#bcc0cc" },
480 | { name = "ixx", text = "", fg = "#209fb5" },
481 | { name = "hxx", text = "", fg = "#7c7f93" },
482 | { name = "gql", text = "", fg = "#ea76cb" },
483 | { name = "tmux", text = "", fg = "#40a02b" },
484 | { name = "ini", text = "", fg = "#7c7f93" },
485 | { name = "m3u8", text = "", fg = "#dd7878" },
486 | { name = "image", text = "", fg = "#bcc0cc" },
487 | { name = "tfvars", text = "", fg = "#8839ef" },
488 | { name = "tex", text = "", fg = "#40a02b" },
489 | { name = "cbl", text = "⚙", fg = "#1e66f5" },
490 | { name = "flc", text = "", fg = "#eff1f5" },
491 | { name = "elc", text = "", fg = "#7c7f93" },
492 | { name = "test.tsx", text = "", fg = "#1e66f5" },
493 | { name = "twig", text = "", fg = "#40a02b" },
494 | { name = "sql", text = "", fg = "#dce0e8" },
495 | { name = "test.jsx", text = "", fg = "#209fb5" },
496 | { name = "htm", text = "", fg = "#fe640b" },
497 | { name = "gcode", text = "", fg = "#1e66f5" },
498 | { name = "test.js", text = "", fg = "#40a02b" },
499 | { name = "ino", text = "", fg = "#209fb5" },
500 | { name = "tcl", text = "", fg = "#1e66f5" },
501 | { name = "cljs", text = "", fg = "#209fb5" },
502 | { name = "tsconfig", text = "", fg = "#df8e1d" },
503 | { name = "img", text = "", fg = "#bcc0cc" },
504 | { name = "t", text = "", fg = "#209fb5" },
505 | { name = "fcstd1", text = "", fg = "#d20f39" },
506 | { name = "out", text = "", fg = "#d20f39" },
507 | { name = "jsx", text = "", fg = "#209fb5" },
508 | { name = "bash", text = "", fg = "#40a02b" },
509 | { name = "edn", text = "", fg = "#209fb5" },
510 | { name = "rss", text = "", fg = "#df8e1d" },
511 | { name = "flf", text = "", fg = "#eff1f5" },
512 | { name = "cache", text = "", fg = "#eff1f5" },
513 | { name = "sbt", text = "", fg = "#d20f39" },
514 | { name = "cppm", text = "", fg = "#209fb5" },
515 | { name = "svelte", text = "", fg = "#fe640b" },
516 | { name = "mo", text = "∞", fg = "#7287fd" },
517 | { name = "sv", text = "", fg = "#40a02b" },
518 | { name = "ko", text = "", fg = "#e6e9ef" },
519 | { name = "suo", text = "", fg = "#8839ef" },
520 | { name = "sldasm", text = "", fg = "#40a02b" },
521 | { name = "icalendar", text = "", fg = "#4c4f69" },
522 | { name = "go", text = "", fg = "#209fb5" },
523 | { name = "sublime", text = "", fg = "#fe640b" },
524 | { name = "stl", text = "", fg = "#8c8fa1" },
525 | { name = "mobi", text = "", fg = "#df8e1d" },
526 | { name = "graphql", text = "", fg = "#ea76cb" },
527 | { name = "m3u", text = "", fg = "#dd7878" },
528 | { name = "cpy", text = "⚙", fg = "#1e66f5" },
529 | { name = "kdenlive", text = "", fg = "#04a5e5" },
530 | { name = "pyo", text = "", fg = "#df8e1d" },
531 | { name = "po", text = "", fg = "#209fb5" },
532 | { name = "scala", text = "", fg = "#d20f39" },
533 | { name = "exs", text = "", fg = "#7c7f93" },
534 | { name = "odp", text = "", fg = "#df8e1d" },
535 | { name = "dump", text = "", fg = "#dce0e8" },
536 | { name = "stp", text = "", fg = "#40a02b" },
537 | { name = "step", text = "", fg = "#40a02b" },
538 | { name = "ste", text = "", fg = "#40a02b" },
539 | { name = "aif", text = "", fg = "#04a5e5" },
540 | { name = "strings", text = "", fg = "#209fb5" },
541 | { name = "cp", text = "", fg = "#209fb5" },
542 | { name = "fsscript", text = "", fg = "#209fb5" },
543 | { name = "mli", text = "", fg = "#fe640b" },
544 | { name = "bak", text = "", fg = "#7c7f93" },
545 | { name = "ssa", text = "", fg = "#df8e1d" },
546 | { name = "toml", text = "", fg = "#d20f39" },
547 | { name = "makefile", text = "", fg = "#7c7f93" },
548 | { name = "php", text = "", fg = "#7c7f93" },
549 | { name = "zst", text = "", fg = "#df8e1d" },
550 | { name = "spec.jsx", text = "", fg = "#209fb5" },
551 | { name = "kbx", text = "", fg = "#7c7f93" },
552 | { name = "fbx", text = "", fg = "#8c8fa1" },
553 | { name = "blend", text = "", fg = "#fe640b" },
554 | { name = "ifc", text = "", fg = "#40a02b" },
555 | { name = "spec.js", text = "", fg = "#40a02b" },
556 | { name = "so", text = "", fg = "#e6e9ef" },
557 | { name = "desktop", text = "", fg = "#4c4f69" },
558 | { name = "sml", text = "λ", fg = "#fe640b" },
559 | { name = "slvs", text = "", fg = "#40a02b" },
560 | { name = "pp", text = "", fg = "#df8e1d" },
561 | { name = "ps1", text = "", fg = "#1e66f5" },
562 | { name = "dropbox", text = "", fg = "#1e66f5" },
563 | { name = "kicad_mod", text = "", fg = "#eff1f5" },
564 | { name = "bat", text = "", fg = "#40a02b" },
565 | { name = "slim", text = "", fg = "#fe640b" },
566 | { name = "skp", text = "", fg = "#40a02b" },
567 | { name = "css", text = "", fg = "#04a5e5" },
568 | { name = "xul", text = "", fg = "#fe640b" },
569 | { name = "ige", text = "", fg = "#40a02b" },
570 | { name = "glb", text = "", fg = "#df8e1d" },
571 | { name = "ppt", text = "", fg = "#e64553" },
572 | { name = "sha512", text = "", fg = "#7c7f93" },
573 | { name = "ics", text = "", fg = "#4c4f69" },
574 | { name = "mdx", text = "", fg = "#209fb5" },
575 | { name = "sha1", text = "", fg = "#7c7f93" },
576 | { name = "f3d", text = "", fg = "#40a02b" },
577 | { name = "ass", text = "", fg = "#df8e1d" },
578 | { name = "godot", text = "", fg = "#7c7f93" },
579 | { name = "ifb", text = "", fg = "#4c4f69" },
580 | { name = "cson", text = "", fg = "#40a02b" },
581 | { name = "lib", text = "", fg = "#4c4f69" },
582 | { name = "luac", text = "", fg = "#04a5e5" },
583 | { name = "heex", text = "", fg = "#7c7f93" },
584 | { name = "scm", text = "", fg = "#eff1f5" },
585 | { name = "psd1", text = "", fg = "#7287fd" },
586 | { name = "sc", text = "", fg = "#d20f39" },
587 | { name = "scad", text = "", fg = "#df8e1d" },
588 | { name = "kts", text = "", fg = "#8839ef" },
589 | { name = "svh", text = "", fg = "#40a02b" },
590 | { name = "mts", text = "", fg = "#209fb5" },
591 | { name = "nfo", text = "", fg = "#eff1f5" },
592 | { name = "pck", text = "", fg = "#7c7f93" },
593 | { name = "rproj", text = "", fg = "#40a02b" },
594 | { name = "rlib", text = "", fg = "#dc8a78" },
595 | { name = "cljd", text = "", fg = "#209fb5" },
596 | { name = "ods", text = "", fg = "#40a02b" },
597 | { name = "res", text = "", fg = "#d20f39" },
598 | { name = "apk", text = "", fg = "#40a02b" },
599 | { name = "haml", text = "", fg = "#eff1f5" },
600 | { name = "d.ts", text = "", fg = "#df8e1d" },
601 | { name = "razor", text = "", fg = "#8839ef" },
602 | { name = "rake", text = "", fg = "#d20f39" },
603 | { name = "patch", text = "", fg = "#4c4f69" },
604 | { name = "cuh", text = "", fg = "#7c7f93" },
605 | { name = "d", text = "", fg = "#d20f39" },
606 | { name = "query", text = "", fg = "#40a02b" },
607 | { name = "psb", text = "", fg = "#209fb5" },
608 | { name = "nu", text = ">", fg = "#40a02b" },
609 | { name = "mov", text = "", fg = "#df8e1d" },
610 | { name = "lrc", text = "", fg = "#df8e1d" },
611 | { name = "pyx", text = "", fg = "#04a5e5" },
612 | { name = "pyw", text = "", fg = "#04a5e5" },
613 | { name = "cu", text = "", fg = "#40a02b" },
614 | { name = "bazel", text = "", fg = "#40a02b" },
615 | { name = "obj", text = "", fg = "#8c8fa1" },
616 | { name = "pyi", text = "", fg = "#df8e1d" },
617 | { name = "pyd", text = "", fg = "#df8e1d" },
618 | { name = "exe", text = "", fg = "#d20f39" },
619 | { name = "pyc", text = "", fg = "#df8e1d" },
620 | { name = "fctb", text = "", fg = "#d20f39" },
621 | { name = "part", text = "", fg = "#40a02b" },
622 | { name = "blade.php", text = "", fg = "#e64553" },
623 | { name = "git", text = "", fg = "#fe640b" },
624 | { name = "psd", text = "", fg = "#209fb5" },
625 | { name = "qss", text = "", fg = "#40a02b" },
626 | { name = "csv", text = "", fg = "#40a02b" },
627 | { name = "psm1", text = "", fg = "#7287fd" },
628 | { name = "dconf", text = "", fg = "#eff1f5" },
629 | { name = "config.ru", text = "", fg = "#d20f39" },
630 | { name = "prisma", text = "", fg = "#1e66f5" },
631 | { name = "conf", text = "", fg = "#7c7f93" },
632 | { name = "clj", text = "", fg = "#40a02b" },
633 | { name = "o", text = "", fg = "#d20f39" },
634 | { name = "mp4", text = "", fg = "#df8e1d" },
635 | { name = "cc", text = "", fg = "#e64553" },
636 | { name = "kicad_prl", text = "", fg = "#eff1f5" },
637 | { name = "bz3", text = "", fg = "#df8e1d" },
638 | { name = "asc", text = "", fg = "#6c6f85" },
639 | { name = "png", text = "", fg = "#7c7f93" },
640 | { name = "android", text = "", fg = "#40a02b" },
641 | { name = "pm", text = "", fg = "#209fb5" },
642 | { name = "h", text = "", fg = "#7c7f93" },
643 | { name = "pls", text = "", fg = "#dd7878" },
644 | { name = "ipynb", text = "", fg = "#fe640b" },
645 | { name = "pl", text = "", fg = "#209fb5" },
646 | { name = "ads", text = "", fg = "#eff1f5" },
647 | { name = "sqlite", text = "", fg = "#dce0e8" },
648 | { name = "pdf", text = "", fg = "#d20f39" },
649 | { name = "pcm", text = "", fg = "#1e66f5" },
650 | { name = "ico", text = "", fg = "#40a02b" },
651 | { name = "a", text = "", fg = "#e6e9ef" },
652 | { name = "R", text = "", fg = "#1e66f5" },
653 | { name = "ogg", text = "", fg = "#1e66f5" },
654 | { name = "pxd", text = "", fg = "#04a5e5" },
655 | { name = "kdenlivetitle", text = "", fg = "#04a5e5" },
656 | { name = "jxl", text = "", fg = "#7c7f93" },
657 | { name = "nswag", text = "", fg = "#40a02b" },
658 | { name = "nim", text = "", fg = "#df8e1d" },
659 | { name = "bqn", text = "⎉", fg = "#179299" },
660 | { name = "cts", text = "", fg = "#209fb5" },
661 | { name = "fcparam", text = "", fg = "#d20f39" },
662 | { name = "rs", text = "", fg = "#dc8a78" },
663 | { name = "mpp", text = "", fg = "#209fb5" },
664 | { name = "fdmdownload", text = "", fg = "#40a02b" },
665 | { name = "pptx", text = "", fg = "#e64553" },
666 | { name = "jpeg", text = "", fg = "#7c7f93" },
667 | { name = "bib", text = "", fg = "#40a02b" },
668 | { name = "vhd", text = "", fg = "#40a02b" },
669 | { name = "m", text = "", fg = "#7287fd" },
670 | { name = "js", text = "", fg = "#40a02b" },
671 | { name = "eex", text = "", fg = "#7c7f93" },
672 | { name = "tbc", text = "", fg = "#1e66f5" },
673 | { name = "astro", text = "", fg = "#e64553" },
674 | { name = "sha224", text = "", fg = "#7c7f93" },
675 | { name = "xcplayground", text = "", fg = "#fe640b" },
676 | { name = "el", text = "", fg = "#7c7f93" },
677 | { name = "m4v", text = "", fg = "#df8e1d" },
678 | { name = "m4a", text = "", fg = "#04a5e5" },
679 | { name = "cs", text = "", fg = "#40a02b" },
680 | { name = "hs", text = "", fg = "#7c7f93" },
681 | { name = "tgz", text = "", fg = "#df8e1d" },
682 | { name = "fs", text = "", fg = "#209fb5" },
683 | { name = "luau", text = "", fg = "#04a5e5" },
684 | { name = "dxf", text = "", fg = "#40a02b" },
685 | { name = "download", text = "", fg = "#40a02b" },
686 | { name = "cast", text = "", fg = "#df8e1d" },
687 | { name = "qrc", text = "", fg = "#40a02b" },
688 | { name = "lua", text = "", fg = "#04a5e5" },
689 | { name = "lhs", text = "", fg = "#7c7f93" },
690 | { name = "md", text = "", fg = "#4c4f69" },
691 | { name = "leex", text = "", fg = "#7c7f93" },
692 | { name = "ai", text = "", fg = "#40a02b" },
693 | { name = "lck", text = "", fg = "#bcc0cc" },
694 | { name = "kt", text = "", fg = "#8839ef" },
695 | { name = "bicepparam", text = "", fg = "#7c7f93" },
696 | { name = "hex", text = "", fg = "#1e66f5" },
697 | { name = "zig", text = "", fg = "#df8e1d" },
698 | { name = "bzl", text = "", fg = "#40a02b" },
699 | { name = "cljc", text = "", fg = "#40a02b" },
700 | { name = "kicad_dru", text = "", fg = "#eff1f5" },
701 | { name = "fctl", text = "", fg = "#d20f39" },
702 | { name = "f#", text = "", fg = "#209fb5" },
703 | { name = "odt", text = "", fg = "#04a5e5" },
704 | { name = "conda", text = "", fg = "#40a02b" },
705 | { name = "vala", text = "", fg = "#8839ef" },
706 | { name = "erb", text = "", fg = "#d20f39" },
707 | { name = "mp3", text = "", fg = "#04a5e5" },
708 | { name = "bz2", text = "", fg = "#df8e1d" },
709 | { name = "coffee", text = "", fg = "#40a02b" },
710 | { name = "cr", text = "", fg = "#ccd0da" },
711 | { name = "f90", text = "", fg = "#5c5f77" },
712 | { name = "jwmrc", text = "", fg = "#1e66f5" },
713 | { name = "c++", text = "", fg = "#e64553" },
714 | { name = "fcscript", text = "", fg = "#d20f39" },
715 | { name = "fods", text = "", fg = "#40a02b" },
716 | { name = "cue", text = "", fg = "#dd7878" },
717 | { name = "srt", text = "", fg = "#df8e1d" },
718 | { name = "info", text = "", fg = "#eff1f5" },
719 | { name = "hh", text = "", fg = "#7c7f93" },
720 | { name = "sig", text = "λ", fg = "#fe640b" },
721 | { name = "html", text = "", fg = "#fe640b" },
722 | { name = "iges", text = "", fg = "#40a02b" },
723 | { name = "kicad_wks", text = "", fg = "#eff1f5" },
724 | { name = "hbs", text = "", fg = "#fe640b" },
725 | { name = "fcstd", text = "", fg = "#d20f39" },
726 | { name = "gresource", text = "", fg = "#eff1f5" },
727 | { name = "sub", text = "", fg = "#df8e1d" },
728 | { name = "ical", text = "", fg = "#4c4f69" },
729 | { name = "crdownload", text = "", fg = "#40a02b" },
730 | { name = "pub", text = "", fg = "#df8e1d" },
731 | { name = "vue", text = "", fg = "#40a02b" },
732 | { name = "gd", text = "", fg = "#7c7f93" },
733 | { name = "fsx", text = "", fg = "#209fb5" },
734 | { name = "mkv", text = "", fg = "#df8e1d" },
735 | { name = "py", text = "", fg = "#df8e1d" },
736 | { name = "kicad_sch", text = "", fg = "#eff1f5" },
737 | { name = "epub", text = "", fg = "#df8e1d" },
738 | { name = "env", text = "", fg = "#df8e1d" },
739 | { name = "magnet", text = "", fg = "#d20f39" },
740 | { name = "elf", text = "", fg = "#d20f39" },
741 | { name = "fodg", text = "", fg = "#eff1f5" },
742 | { name = "svg", text = "", fg = "#df8e1d" },
743 | { name = "dwg", text = "", fg = "#40a02b" },
744 | { name = "docx", text = "", fg = "#1e66f5" },
745 | { name = "pro", text = "", fg = "#df8e1d" },
746 | { name = "db", text = "", fg = "#dce0e8" },
747 | { name = "rb", text = "", fg = "#d20f39" },
748 | { name = "r", text = "", fg = "#1e66f5" },
749 | { name = "scss", text = "", fg = "#dd7878" },
750 | { name = "cow", text = "", fg = "#fe640b" },
751 | { name = "gleam", text = "", fg = "#ea76cb" },
752 | { name = "v", text = "", fg = "#40a02b" },
753 | { name = "kicad_pro", text = "", fg = "#eff1f5" },
754 | { name = "liquid", text = "", fg = "#40a02b" },
755 | { name = "zip", text = "", fg = "#df8e1d" },
756 | ]
757 |
--------------------------------------------------------------------------------
/themes/latte/catppuccin-latte-maroon.toml:
--------------------------------------------------------------------------------
1 | [manager]
2 | cwd = { fg = "#179299" }
3 |
4 | hovered = { fg = "#eff1f5", bg = "#e64553" }
5 | preview_hovered = { fg = "#eff1f5", bg = "#4c4f69" }
6 |
7 | find_keyword = { fg = "#df8e1d", italic = true }
8 | find_position = { fg = "#ea76cb", bg = "reset", italic = true }
9 |
10 | marker_copied = { fg = "#40a02b", bg = "#40a02b" }
11 | marker_cut = { fg = "#d20f39", bg = "#d20f39" }
12 | marker_marked = { fg = "#179299", bg = "#179299" }
13 | marker_selected = { fg = "#e64553", bg = "#e64553" }
14 |
15 | tab_active = { fg = "#eff1f5", bg = "#4c4f69" }
16 | tab_inactive = { fg = "#4c4f69", bg = "#bcc0cc" }
17 | tab_width = 1
18 |
19 | count_copied = { fg = "#eff1f5", bg = "#40a02b" }
20 | count_cut = { fg = "#eff1f5", bg = "#d20f39" }
21 | count_selected = { fg = "#eff1f5", bg = "#e64553" }
22 |
23 | border_symbol = "│"
24 | border_style = { fg = "#8c8fa1" }
25 |
26 | syntect_theme = "~/.config/yazi/Catppuccin-latte.tmTheme"
27 |
28 | [mode]
29 | normal_main = { fg = "#eff1f5", bg = "#e64553", bold = true }
30 | normal_alt = { fg = "#e64553", bg = "#ccd0da"}
31 |
32 | select_main = { fg = "#eff1f5", bg = "#40a02b", bold = true }
33 | select_alt = { fg = "#40a02b", bg = "#ccd0da"}
34 |
35 | unset_main = { fg = "#eff1f5", bg = "#dd7878", bold = true }
36 | unset_alt = { fg = "#dd7878", bg = "#ccd0da"}
37 |
38 | [status]
39 | separator_open = ""
40 | separator_close = ""
41 |
42 | progress_label = { fg = "#ffffff", bold = true }
43 | progress_normal = { fg = "#1e66f5", bg = "#bcc0cc" }
44 | progress_error = { fg = "#d20f39", bg = "#bcc0cc" }
45 |
46 | perm_type = { fg = "#1e66f5" }
47 | perm_read = { fg = "#df8e1d" }
48 | perm_write = { fg = "#d20f39" }
49 | perm_exec = { fg = "#40a02b" }
50 | perm_sep = { fg = "#8c8fa1" }
51 |
52 | [input]
53 | border = { fg = "#e64553" }
54 | title = {}
55 | value = {}
56 | selected = { reversed = true }
57 |
58 | [pick]
59 | border = { fg = "#e64553" }
60 | active = { fg = "#ea76cb" }
61 | inactive = {}
62 |
63 | [confirm]
64 | border = { fg = "#e64553" }
65 | title = { fg = "#e64553" }
66 | content = {}
67 | list = {}
68 | btn_yes = { reversed = true }
69 | btn_no = {}
70 |
71 | [cmp]
72 | border = { fg = "#e64553" }
73 |
74 | [tasks]
75 | border = { fg = "#e64553" }
76 | title = {}
77 | hovered = { underline = true }
78 |
79 | [which]
80 | mask = { bg = "#ccd0da" }
81 | cand = { fg = "#179299" }
82 | rest = { fg = "#7c7f93" }
83 | desc = { fg = "#ea76cb" }
84 | separator = " "
85 | separator_style = { fg = "#acb0be" }
86 |
87 | [help]
88 | on = { fg = "#179299" }
89 | run = { fg = "#ea76cb" }
90 | desc = { fg = "#7c7f93" }
91 | hovered = { bg = "#acb0be", bold = true }
92 | footer = { fg = "#4c4f69", bg = "#bcc0cc" }
93 |
94 | [notify]
95 | title_info = { fg = "#179299" }
96 | title_warn = { fg = "#df8e1d" }
97 | title_error = { fg = "#d20f39" }
98 |
99 | [filetype]
100 | rules = [
101 | # Media
102 | { mime = "image/*", fg = "#179299" },
103 | { mime = "{audio,video}/*", fg = "#df8e1d" },
104 |
105 | # Archives
106 | { mime = "application/*zip", fg = "#ea76cb" },
107 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#ea76cb" },
108 |
109 | # Documents
110 | { mime = "application/{pdf,doc,rtf}", fg = "#40a02b" },
111 |
112 | # Fallback
113 | { name = "*", fg = "#4c4f69" },
114 | { name = "*/", fg = "#e64553" }
115 | ]
116 |
117 | [spot]
118 | border = { fg = "#e64553" }
119 | title = { fg = "#e64553" }
120 | tbl_cell = { fg = "#e64553", reversed = true }
121 | tbl_col = { bold = true }
122 |
123 | [icon]
124 | files = [
125 | { name = "kritadisplayrc", text = "", fg = "#ea76cb" },
126 | { name = ".gtkrc-2.0", text = "", fg = "#eff1f5" },
127 | { name = "bspwmrc", text = "", fg = "#4c4f69" },
128 | { name = "webpack", text = "", fg = "#209fb5" },
129 | { name = "tsconfig.json", text = "", fg = "#209fb5" },
130 | { name = ".vimrc", text = "", fg = "#40a02b" },
131 | { name = "gemfile$", text = "", fg = "#d20f39" },
132 | { name = "xmobarrc", text = "", fg = "#e64553" },
133 | { name = "avif", text = "", fg = "#7c7f93" },
134 | { name = "fp-info-cache", text = "", fg = "#eff1f5" },
135 | { name = ".zshrc", text = "", fg = "#40a02b" },
136 | { name = "robots.txt", text = "", fg = "#6c6f85" },
137 | { name = "dockerfile", text = "", fg = "#7287fd" },
138 | { name = ".git-blame-ignore-revs", text = "", fg = "#fe640b" },
139 | { name = ".nvmrc", text = "", fg = "#40a02b" },
140 | { name = "hyprpaper.conf", text = "", fg = "#209fb5" },
141 | { name = ".prettierignore", text = "", fg = "#7287fd" },
142 | { name = "rakefile", text = "", fg = "#d20f39" },
143 | { name = "code_of_conduct", text = "", fg = "#e64553" },
144 | { name = "cmakelists.txt", text = "", fg = "#dce0e8" },
145 | { name = ".env", text = "", fg = "#df8e1d" },
146 | { name = "copying.lesser", text = "", fg = "#40a02b" },
147 | { name = "readme", text = "", fg = "#eff1f5" },
148 | { name = "settings.gradle", text = "", fg = "#1e66f5" },
149 | { name = "gruntfile.coffee", text = "", fg = "#fe640b" },
150 | { name = ".eslintignore", text = "", fg = "#8839ef" },
151 | { name = "kalgebrarc", text = "", fg = "#04a5e5" },
152 | { name = "kdenliverc", text = "", fg = "#04a5e5" },
153 | { name = ".prettierrc.cjs", text = "", fg = "#7287fd" },
154 | { name = "cantorrc", text = "", fg = "#04a5e5" },
155 | { name = "rmd", text = "", fg = "#209fb5" },
156 | { name = "vagrantfile$", text = "", fg = "#1e66f5" },
157 | { name = ".Xauthority", text = "", fg = "#fe640b" },
158 | { name = "prettier.config.ts", text = "", fg = "#7287fd" },
159 | { name = "node_modules", text = "", fg = "#e64553" },
160 | { name = ".prettierrc.toml", text = "", fg = "#7287fd" },
161 | { name = "build.zig.zon", text = "", fg = "#df8e1d" },
162 | { name = ".ds_store", text = "", fg = "#4c4f69" },
163 | { name = "PKGBUILD", text = "", fg = "#04a5e5" },
164 | { name = ".prettierrc", text = "", fg = "#7287fd" },
165 | { name = ".bash_profile", text = "", fg = "#40a02b" },
166 | { name = ".npmignore", text = "", fg = "#e64553" },
167 | { name = ".mailmap", text = "", fg = "#fe640b" },
168 | { name = ".codespellrc", text = "", fg = "#40a02b" },
169 | { name = "svelte.config.js", text = "", fg = "#fe640b" },
170 | { name = "eslint.config.ts", text = "", fg = "#8839ef" },
171 | { name = "config", text = "", fg = "#7c7f93" },
172 | { name = ".gitlab-ci.yml", text = "", fg = "#e64553" },
173 | { name = ".gitconfig", text = "", fg = "#fe640b" },
174 | { name = "_gvimrc", text = "", fg = "#40a02b" },
175 | { name = ".xinitrc", text = "", fg = "#fe640b" },
176 | { name = "checkhealth", text = "", fg = "#04a5e5" },
177 | { name = "sxhkdrc", text = "", fg = "#4c4f69" },
178 | { name = ".bashrc", text = "", fg = "#40a02b" },
179 | { name = "tailwind.config.mjs", text = "", fg = "#209fb5" },
180 | { name = "ext_typoscript_setup.txt", text = "", fg = "#df8e1d" },
181 | { name = "commitlint.config.ts", text = "", fg = "#179299" },
182 | { name = "py.typed", text = "", fg = "#df8e1d" },
183 | { name = ".nanorc", text = "", fg = "#4c4f69" },
184 | { name = "commit_editmsg", text = "", fg = "#fe640b" },
185 | { name = ".luaurc", text = "", fg = "#04a5e5" },
186 | { name = "fp-lib-table", text = "", fg = "#eff1f5" },
187 | { name = ".editorconfig", text = "", fg = "#eff1f5" },
188 | { name = "justfile", text = "", fg = "#7c7f93" },
189 | { name = "kdeglobals", text = "", fg = "#04a5e5" },
190 | { name = "license.md", text = "", fg = "#df8e1d" },
191 | { name = ".clang-format", text = "", fg = "#7c7f93" },
192 | { name = "docker-compose.yaml", text = "", fg = "#7287fd" },
193 | { name = "copying", text = "", fg = "#40a02b" },
194 | { name = "go.mod", text = "", fg = "#209fb5" },
195 | { name = "lxqt.conf", text = "", fg = "#04a5e5" },
196 | { name = "brewfile", text = "", fg = "#d20f39" },
197 | { name = "gulpfile.coffee", text = "", fg = "#d20f39" },
198 | { name = ".dockerignore", text = "", fg = "#7287fd" },
199 | { name = ".settings.json", text = "", fg = "#8839ef" },
200 | { name = "tailwind.config.js", text = "", fg = "#209fb5" },
201 | { name = ".clang-tidy", text = "", fg = "#7c7f93" },
202 | { name = ".gvimrc", text = "", fg = "#40a02b" },
203 | { name = "nuxt.config.cjs", text = "", fg = "#40a02b" },
204 | { name = "xsettingsd.conf", text = "", fg = "#fe640b" },
205 | { name = "nuxt.config.js", text = "", fg = "#40a02b" },
206 | { name = "eslint.config.cjs", text = "", fg = "#8839ef" },
207 | { name = "sym-lib-table", text = "", fg = "#eff1f5" },
208 | { name = ".condarc", text = "", fg = "#40a02b" },
209 | { name = "xmonad.hs", text = "", fg = "#e64553" },
210 | { name = "tmux.conf", text = "", fg = "#40a02b" },
211 | { name = "xmobarrc.hs", text = "", fg = "#e64553" },
212 | { name = ".prettierrc.yaml", text = "", fg = "#7287fd" },
213 | { name = ".pre-commit-config.yaml", text = "", fg = "#df8e1d" },
214 | { name = "i3blocks.conf", text = "", fg = "#e6e9ef" },
215 | { name = "xorg.conf", text = "", fg = "#fe640b" },
216 | { name = ".zshenv", text = "", fg = "#40a02b" },
217 | { name = "vlcrc", text = "", fg = "#fe640b" },
218 | { name = "license", text = "", fg = "#df8e1d" },
219 | { name = "unlicense", text = "", fg = "#df8e1d" },
220 | { name = "tmux.conf.local", text = "", fg = "#40a02b" },
221 | { name = ".SRCINFO", text = "", fg = "#04a5e5" },
222 | { name = "tailwind.config.ts", text = "", fg = "#209fb5" },
223 | { name = "security.md", text = "", fg = "#bcc0cc" },
224 | { name = "security", text = "", fg = "#bcc0cc" },
225 | { name = ".eslintrc", text = "", fg = "#8839ef" },
226 | { name = "gradle.properties", text = "", fg = "#1e66f5" },
227 | { name = "code_of_conduct.md", text = "", fg = "#e64553" },
228 | { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#fe640b" },
229 | { name = "PrusaSlicer.ini", text = "", fg = "#fe640b" },
230 | { name = "procfile", text = "", fg = "#7c7f93" },
231 | { name = "mpv.conf", text = "", fg = "#4c4f69" },
232 | { name = ".prettierrc.json5", text = "", fg = "#7287fd" },
233 | { name = "i3status.conf", text = "", fg = "#e6e9ef" },
234 | { name = "prettier.config.mjs", text = "", fg = "#7287fd" },
235 | { name = ".pylintrc", text = "", fg = "#7c7f93" },
236 | { name = "prettier.config.cjs", text = "", fg = "#7287fd" },
237 | { name = ".luacheckrc", text = "", fg = "#04a5e5" },
238 | { name = "containerfile", text = "", fg = "#7287fd" },
239 | { name = "eslint.config.mjs", text = "", fg = "#8839ef" },
240 | { name = "gruntfile.js", text = "", fg = "#fe640b" },
241 | { name = "bun.lockb", text = "", fg = "#eff1f5" },
242 | { name = ".gitattributes", text = "", fg = "#fe640b" },
243 | { name = "gruntfile.ts", text = "", fg = "#fe640b" },
244 | { name = "pom.xml", text = "", fg = "#d20f39" },
245 | { name = "favicon.ico", text = "", fg = "#40a02b" },
246 | { name = "package-lock.json", text = "", fg = "#d20f39" },
247 | { name = "build", text = "", fg = "#40a02b" },
248 | { name = "package.json", text = "", fg = "#e64553" },
249 | { name = "nuxt.config.ts", text = "", fg = "#40a02b" },
250 | { name = "nuxt.config.mjs", text = "", fg = "#40a02b" },
251 | { name = "mix.lock", text = "", fg = "#7c7f93" },
252 | { name = "makefile", text = "", fg = "#7c7f93" },
253 | { name = "gulpfile.js", text = "", fg = "#d20f39" },
254 | { name = "lxde-rc.xml", text = "", fg = "#8c8fa1" },
255 | { name = "kritarc", text = "", fg = "#ea76cb" },
256 | { name = "gtkrc", text = "", fg = "#eff1f5" },
257 | { name = "ionic.config.json", text = "", fg = "#7287fd" },
258 | { name = ".prettierrc.mjs", text = "", fg = "#7287fd" },
259 | { name = ".prettierrc.yml", text = "", fg = "#7287fd" },
260 | { name = ".npmrc", text = "", fg = "#e64553" },
261 | { name = "weston.ini", text = "", fg = "#df8e1d" },
262 | { name = "gulpfile.babel.js", text = "", fg = "#d20f39" },
263 | { name = "i18n.config.ts", text = "", fg = "#7287fd" },
264 | { name = "commitlint.config.js", text = "", fg = "#179299" },
265 | { name = ".gitmodules", text = "", fg = "#fe640b" },
266 | { name = "gradle-wrapper.properties", text = "", fg = "#1e66f5" },
267 | { name = "hypridle.conf", text = "", fg = "#209fb5" },
268 | { name = "vercel.json", text = "▲", fg = "#eff1f5" },
269 | { name = "hyprlock.conf", text = "", fg = "#209fb5" },
270 | { name = "go.sum", text = "", fg = "#209fb5" },
271 | { name = "kdenlive-layoutsrc", text = "", fg = "#04a5e5" },
272 | { name = "gruntfile.babel.js", text = "", fg = "#fe640b" },
273 | { name = "compose.yml", text = "", fg = "#7287fd" },
274 | { name = "i18n.config.js", text = "", fg = "#7287fd" },
275 | { name = "readme.md", text = "", fg = "#eff1f5" },
276 | { name = "gradlew", text = "", fg = "#1e66f5" },
277 | { name = "go.work", text = "", fg = "#209fb5" },
278 | { name = "gulpfile.ts", text = "", fg = "#d20f39" },
279 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
280 | { name = "FreeCAD.conf", text = "", fg = "#d20f39" },
281 | { name = "compose.yaml", text = "", fg = "#7287fd" },
282 | { name = "eslint.config.js", text = "", fg = "#8839ef" },
283 | { name = "hyprland.conf", text = "", fg = "#209fb5" },
284 | { name = "docker-compose.yml", text = "", fg = "#7287fd" },
285 | { name = "groovy", text = "", fg = "#5c5f77" },
286 | { name = "QtProject.conf", text = "", fg = "#40a02b" },
287 | { name = "platformio.ini", text = "", fg = "#fe640b" },
288 | { name = "build.gradle", text = "", fg = "#1e66f5" },
289 | { name = ".nuxtrc", text = "", fg = "#40a02b" },
290 | { name = "_vimrc", text = "", fg = "#40a02b" },
291 | { name = ".zprofile", text = "", fg = "#40a02b" },
292 | { name = ".xsession", text = "", fg = "#fe640b" },
293 | { name = "prettier.config.js", text = "", fg = "#7287fd" },
294 | { name = ".babelrc", text = "", fg = "#40a02b" },
295 | { name = "workspace", text = "", fg = "#40a02b" },
296 | { name = ".prettierrc.json", text = "", fg = "#7287fd" },
297 | { name = ".prettierrc.js", text = "", fg = "#7287fd" },
298 | { name = ".Xresources", text = "", fg = "#fe640b" },
299 | { name = ".gitignore", text = "", fg = "#fe640b" },
300 | { name = ".justfile", text = "", fg = "#7c7f93" },
301 | ]
302 | exts = [
303 | { name = "otf", text = "", fg = "#eff1f5" },
304 | { name = "import", text = "", fg = "#eff1f5" },
305 | { name = "krz", text = "", fg = "#ea76cb" },
306 | { name = "adb", text = "", fg = "#dce0e8" },
307 | { name = "ttf", text = "", fg = "#eff1f5" },
308 | { name = "webpack", text = "", fg = "#209fb5" },
309 | { name = "dart", text = "", fg = "#1e66f5" },
310 | { name = "vsh", text = "", fg = "#7287fd" },
311 | { name = "doc", text = "", fg = "#1e66f5" },
312 | { name = "zsh", text = "", fg = "#40a02b" },
313 | { name = "ex", text = "", fg = "#7c7f93" },
314 | { name = "hx", text = "", fg = "#df8e1d" },
315 | { name = "fodt", text = "", fg = "#04a5e5" },
316 | { name = "mojo", text = "", fg = "#fe640b" },
317 | { name = "templ", text = "", fg = "#df8e1d" },
318 | { name = "nix", text = "", fg = "#04a5e5" },
319 | { name = "cshtml", text = "", fg = "#8839ef" },
320 | { name = "fish", text = "", fg = "#5c5f77" },
321 | { name = "ply", text = "", fg = "#8c8fa1" },
322 | { name = "sldprt", text = "", fg = "#40a02b" },
323 | { name = "gemspec", text = "", fg = "#d20f39" },
324 | { name = "mjs", text = "", fg = "#df8e1d" },
325 | { name = "csh", text = "", fg = "#5c5f77" },
326 | { name = "cmake", text = "", fg = "#dce0e8" },
327 | { name = "fodp", text = "", fg = "#df8e1d" },
328 | { name = "vi", text = "", fg = "#df8e1d" },
329 | { name = "msf", text = "", fg = "#1e66f5" },
330 | { name = "blp", text = "", fg = "#7287fd" },
331 | { name = "less", text = "", fg = "#4c4f69" },
332 | { name = "sh", text = "", fg = "#5c5f77" },
333 | { name = "odg", text = "", fg = "#eff1f5" },
334 | { name = "mint", text = "", fg = "#40a02b" },
335 | { name = "dll", text = "", fg = "#4c4f69" },
336 | { name = "odf", text = "", fg = "#ea76cb" },
337 | { name = "sqlite3", text = "", fg = "#dce0e8" },
338 | { name = "Dockerfile", text = "", fg = "#7287fd" },
339 | { name = "ksh", text = "", fg = "#5c5f77" },
340 | { name = "rmd", text = "", fg = "#209fb5" },
341 | { name = "wv", text = "", fg = "#04a5e5" },
342 | { name = "xml", text = "", fg = "#fe640b" },
343 | { name = "markdown", text = "", fg = "#4c4f69" },
344 | { name = "qml", text = "", fg = "#40a02b" },
345 | { name = "3gp", text = "", fg = "#df8e1d" },
346 | { name = "pxi", text = "", fg = "#04a5e5" },
347 | { name = "flac", text = "", fg = "#1e66f5" },
348 | { name = "gpr", text = "", fg = "#ea76cb" },
349 | { name = "huff", text = "", fg = "#8839ef" },
350 | { name = "json", text = "", fg = "#40a02b" },
351 | { name = "gv", text = "", fg = "#1e66f5" },
352 | { name = "bmp", text = "", fg = "#7c7f93" },
353 | { name = "lock", text = "", fg = "#bcc0cc" },
354 | { name = "sha384", text = "", fg = "#7c7f93" },
355 | { name = "cobol", text = "⚙", fg = "#1e66f5" },
356 | { name = "cob", text = "⚙", fg = "#1e66f5" },
357 | { name = "java", text = "", fg = "#d20f39" },
358 | { name = "cjs", text = "", fg = "#40a02b" },
359 | { name = "qm", text = "", fg = "#209fb5" },
360 | { name = "ebuild", text = "", fg = "#4c4f69" },
361 | { name = "mustache", text = "", fg = "#fe640b" },
362 | { name = "terminal", text = "", fg = "#40a02b" },
363 | { name = "ejs", text = "", fg = "#40a02b" },
364 | { name = "brep", text = "", fg = "#40a02b" },
365 | { name = "rar", text = "", fg = "#df8e1d" },
366 | { name = "gradle", text = "", fg = "#1e66f5" },
367 | { name = "gnumakefile", text = "", fg = "#7c7f93" },
368 | { name = "applescript", text = "", fg = "#7c7f93" },
369 | { name = "elm", text = "", fg = "#209fb5" },
370 | { name = "ebook", text = "", fg = "#df8e1d" },
371 | { name = "kra", text = "", fg = "#ea76cb" },
372 | { name = "tf", text = "", fg = "#8839ef" },
373 | { name = "xls", text = "", fg = "#40a02b" },
374 | { name = "fnl", text = "", fg = "#eff1f5" },
375 | { name = "kdbx", text = "", fg = "#40a02b" },
376 | { name = "kicad_pcb", text = "", fg = "#eff1f5" },
377 | { name = "cfg", text = "", fg = "#7c7f93" },
378 | { name = "ape", text = "", fg = "#04a5e5" },
379 | { name = "org", text = "", fg = "#179299" },
380 | { name = "yml", text = "", fg = "#7c7f93" },
381 | { name = "swift", text = "", fg = "#fe640b" },
382 | { name = "eln", text = "", fg = "#7c7f93" },
383 | { name = "sol", text = "", fg = "#209fb5" },
384 | { name = "awk", text = "", fg = "#5c5f77" },
385 | { name = "7z", text = "", fg = "#df8e1d" },
386 | { name = "apl", text = "⍝", fg = "#df8e1d" },
387 | { name = "epp", text = "", fg = "#df8e1d" },
388 | { name = "app", text = "", fg = "#d20f39" },
389 | { name = "dot", text = "", fg = "#1e66f5" },
390 | { name = "kpp", text = "", fg = "#ea76cb" },
391 | { name = "eot", text = "", fg = "#eff1f5" },
392 | { name = "hpp", text = "", fg = "#7c7f93" },
393 | { name = "spec.tsx", text = "", fg = "#1e66f5" },
394 | { name = "hurl", text = "", fg = "#e64553" },
395 | { name = "cxxm", text = "", fg = "#209fb5" },
396 | { name = "c", text = "", fg = "#7287fd" },
397 | { name = "fcmacro", text = "", fg = "#d20f39" },
398 | { name = "sass", text = "", fg = "#dd7878" },
399 | { name = "yaml", text = "", fg = "#7c7f93" },
400 | { name = "xz", text = "", fg = "#df8e1d" },
401 | { name = "material", text = "", fg = "#ea76cb" },
402 | { name = "json5", text = "", fg = "#40a02b" },
403 | { name = "signature", text = "λ", fg = "#fe640b" },
404 | { name = "3mf", text = "", fg = "#8c8fa1" },
405 | { name = "jpg", text = "", fg = "#7c7f93" },
406 | { name = "xpi", text = "", fg = "#fe640b" },
407 | { name = "fcmat", text = "", fg = "#d20f39" },
408 | { name = "pot", text = "", fg = "#209fb5" },
409 | { name = "bin", text = "", fg = "#d20f39" },
410 | { name = "xlsx", text = "", fg = "#40a02b" },
411 | { name = "aac", text = "", fg = "#04a5e5" },
412 | { name = "kicad_sym", text = "", fg = "#eff1f5" },
413 | { name = "xcstrings", text = "", fg = "#209fb5" },
414 | { name = "lff", text = "", fg = "#eff1f5" },
415 | { name = "xcf", text = "", fg = "#5c5f77" },
416 | { name = "azcli", text = "", fg = "#1e66f5" },
417 | { name = "license", text = "", fg = "#40a02b" },
418 | { name = "jsonc", text = "", fg = "#40a02b" },
419 | { name = "xaml", text = "", fg = "#8839ef" },
420 | { name = "md5", text = "", fg = "#7c7f93" },
421 | { name = "xm", text = "", fg = "#209fb5" },
422 | { name = "sln", text = "", fg = "#8839ef" },
423 | { name = "jl", text = "", fg = "#ea76cb" },
424 | { name = "ml", text = "", fg = "#fe640b" },
425 | { name = "http", text = "", fg = "#04a5e5" },
426 | { name = "x", text = "", fg = "#7287fd" },
427 | { name = "wvc", text = "", fg = "#04a5e5" },
428 | { name = "wrz", text = "", fg = "#8c8fa1" },
429 | { name = "csproj", text = "", fg = "#8839ef" },
430 | { name = "wrl", text = "", fg = "#8c8fa1" },
431 | { name = "wma", text = "", fg = "#04a5e5" },
432 | { name = "woff2", text = "", fg = "#eff1f5" },
433 | { name = "woff", text = "", fg = "#eff1f5" },
434 | { name = "tscn", text = "", fg = "#7c7f93" },
435 | { name = "webmanifest", text = "", fg = "#df8e1d" },
436 | { name = "webm", text = "", fg = "#df8e1d" },
437 | { name = "fcbak", text = "", fg = "#d20f39" },
438 | { name = "log", text = "", fg = "#4c4f69" },
439 | { name = "wav", text = "", fg = "#04a5e5" },
440 | { name = "wasm", text = "", fg = "#8839ef" },
441 | { name = "styl", text = "", fg = "#40a02b" },
442 | { name = "gif", text = "", fg = "#7c7f93" },
443 | { name = "resi", text = "", fg = "#dd7878" },
444 | { name = "aiff", text = "", fg = "#04a5e5" },
445 | { name = "sha256", text = "", fg = "#7c7f93" },
446 | { name = "igs", text = "", fg = "#40a02b" },
447 | { name = "vsix", text = "", fg = "#8839ef" },
448 | { name = "vim", text = "", fg = "#40a02b" },
449 | { name = "diff", text = "", fg = "#4c4f69" },
450 | { name = "drl", text = "", fg = "#dc8a78" },
451 | { name = "erl", text = "", fg = "#ea76cb" },
452 | { name = "vhdl", text = "", fg = "#40a02b" },
453 | { name = "🔥", text = "", fg = "#fe640b" },
454 | { name = "hrl", text = "", fg = "#ea76cb" },
455 | { name = "fsi", text = "", fg = "#209fb5" },
456 | { name = "mm", text = "", fg = "#209fb5" },
457 | { name = "bz", text = "", fg = "#df8e1d" },
458 | { name = "vh", text = "", fg = "#40a02b" },
459 | { name = "kdb", text = "", fg = "#40a02b" },
460 | { name = "gz", text = "", fg = "#df8e1d" },
461 | { name = "cpp", text = "", fg = "#209fb5" },
462 | { name = "ui", text = "", fg = "#1e66f5" },
463 | { name = "txt", text = "", fg = "#40a02b" },
464 | { name = "spec.ts", text = "", fg = "#209fb5" },
465 | { name = "ccm", text = "", fg = "#e64553" },
466 | { name = "typoscript", text = "", fg = "#df8e1d" },
467 | { name = "typ", text = "", fg = "#209fb5" },
468 | { name = "txz", text = "", fg = "#df8e1d" },
469 | { name = "test.ts", text = "", fg = "#209fb5" },
470 | { name = "tsx", text = "", fg = "#1e66f5" },
471 | { name = "mk", text = "", fg = "#7c7f93" },
472 | { name = "webp", text = "", fg = "#7c7f93" },
473 | { name = "opus", text = "", fg = "#1e66f5" },
474 | { name = "bicep", text = "", fg = "#209fb5" },
475 | { name = "ts", text = "", fg = "#209fb5" },
476 | { name = "tres", text = "", fg = "#7c7f93" },
477 | { name = "torrent", text = "", fg = "#40a02b" },
478 | { name = "cxx", text = "", fg = "#209fb5" },
479 | { name = "iso", text = "", fg = "#bcc0cc" },
480 | { name = "ixx", text = "", fg = "#209fb5" },
481 | { name = "hxx", text = "", fg = "#7c7f93" },
482 | { name = "gql", text = "", fg = "#ea76cb" },
483 | { name = "tmux", text = "", fg = "#40a02b" },
484 | { name = "ini", text = "", fg = "#7c7f93" },
485 | { name = "m3u8", text = "", fg = "#dd7878" },
486 | { name = "image", text = "", fg = "#bcc0cc" },
487 | { name = "tfvars", text = "", fg = "#8839ef" },
488 | { name = "tex", text = "", fg = "#40a02b" },
489 | { name = "cbl", text = "⚙", fg = "#1e66f5" },
490 | { name = "flc", text = "", fg = "#eff1f5" },
491 | { name = "elc", text = "", fg = "#7c7f93" },
492 | { name = "test.tsx", text = "", fg = "#1e66f5" },
493 | { name = "twig", text = "", fg = "#40a02b" },
494 | { name = "sql", text = "", fg = "#dce0e8" },
495 | { name = "test.jsx", text = "", fg = "#209fb5" },
496 | { name = "htm", text = "", fg = "#fe640b" },
497 | { name = "gcode", text = "", fg = "#1e66f5" },
498 | { name = "test.js", text = "", fg = "#40a02b" },
499 | { name = "ino", text = "", fg = "#209fb5" },
500 | { name = "tcl", text = "", fg = "#1e66f5" },
501 | { name = "cljs", text = "", fg = "#209fb5" },
502 | { name = "tsconfig", text = "", fg = "#df8e1d" },
503 | { name = "img", text = "", fg = "#bcc0cc" },
504 | { name = "t", text = "", fg = "#209fb5" },
505 | { name = "fcstd1", text = "", fg = "#d20f39" },
506 | { name = "out", text = "", fg = "#d20f39" },
507 | { name = "jsx", text = "", fg = "#209fb5" },
508 | { name = "bash", text = "", fg = "#40a02b" },
509 | { name = "edn", text = "", fg = "#209fb5" },
510 | { name = "rss", text = "", fg = "#df8e1d" },
511 | { name = "flf", text = "", fg = "#eff1f5" },
512 | { name = "cache", text = "", fg = "#eff1f5" },
513 | { name = "sbt", text = "", fg = "#d20f39" },
514 | { name = "cppm", text = "", fg = "#209fb5" },
515 | { name = "svelte", text = "", fg = "#fe640b" },
516 | { name = "mo", text = "∞", fg = "#7287fd" },
517 | { name = "sv", text = "", fg = "#40a02b" },
518 | { name = "ko", text = "", fg = "#e6e9ef" },
519 | { name = "suo", text = "", fg = "#8839ef" },
520 | { name = "sldasm", text = "", fg = "#40a02b" },
521 | { name = "icalendar", text = "", fg = "#4c4f69" },
522 | { name = "go", text = "", fg = "#209fb5" },
523 | { name = "sublime", text = "", fg = "#fe640b" },
524 | { name = "stl", text = "", fg = "#8c8fa1" },
525 | { name = "mobi", text = "", fg = "#df8e1d" },
526 | { name = "graphql", text = "", fg = "#ea76cb" },
527 | { name = "m3u", text = "", fg = "#dd7878" },
528 | { name = "cpy", text = "⚙", fg = "#1e66f5" },
529 | { name = "kdenlive", text = "", fg = "#04a5e5" },
530 | { name = "pyo", text = "", fg = "#df8e1d" },
531 | { name = "po", text = "", fg = "#209fb5" },
532 | { name = "scala", text = "", fg = "#d20f39" },
533 | { name = "exs", text = "", fg = "#7c7f93" },
534 | { name = "odp", text = "", fg = "#df8e1d" },
535 | { name = "dump", text = "", fg = "#dce0e8" },
536 | { name = "stp", text = "", fg = "#40a02b" },
537 | { name = "step", text = "", fg = "#40a02b" },
538 | { name = "ste", text = "", fg = "#40a02b" },
539 | { name = "aif", text = "", fg = "#04a5e5" },
540 | { name = "strings", text = "", fg = "#209fb5" },
541 | { name = "cp", text = "", fg = "#209fb5" },
542 | { name = "fsscript", text = "", fg = "#209fb5" },
543 | { name = "mli", text = "", fg = "#fe640b" },
544 | { name = "bak", text = "", fg = "#7c7f93" },
545 | { name = "ssa", text = "", fg = "#df8e1d" },
546 | { name = "toml", text = "", fg = "#d20f39" },
547 | { name = "makefile", text = "", fg = "#7c7f93" },
548 | { name = "php", text = "", fg = "#7c7f93" },
549 | { name = "zst", text = "", fg = "#df8e1d" },
550 | { name = "spec.jsx", text = "", fg = "#209fb5" },
551 | { name = "kbx", text = "", fg = "#7c7f93" },
552 | { name = "fbx", text = "", fg = "#8c8fa1" },
553 | { name = "blend", text = "", fg = "#fe640b" },
554 | { name = "ifc", text = "", fg = "#40a02b" },
555 | { name = "spec.js", text = "", fg = "#40a02b" },
556 | { name = "so", text = "", fg = "#e6e9ef" },
557 | { name = "desktop", text = "", fg = "#4c4f69" },
558 | { name = "sml", text = "λ", fg = "#fe640b" },
559 | { name = "slvs", text = "", fg = "#40a02b" },
560 | { name = "pp", text = "", fg = "#df8e1d" },
561 | { name = "ps1", text = "", fg = "#1e66f5" },
562 | { name = "dropbox", text = "", fg = "#1e66f5" },
563 | { name = "kicad_mod", text = "", fg = "#eff1f5" },
564 | { name = "bat", text = "", fg = "#40a02b" },
565 | { name = "slim", text = "", fg = "#fe640b" },
566 | { name = "skp", text = "", fg = "#40a02b" },
567 | { name = "css", text = "", fg = "#04a5e5" },
568 | { name = "xul", text = "", fg = "#fe640b" },
569 | { name = "ige", text = "", fg = "#40a02b" },
570 | { name = "glb", text = "", fg = "#df8e1d" },
571 | { name = "ppt", text = "", fg = "#e64553" },
572 | { name = "sha512", text = "", fg = "#7c7f93" },
573 | { name = "ics", text = "", fg = "#4c4f69" },
574 | { name = "mdx", text = "", fg = "#209fb5" },
575 | { name = "sha1", text = "", fg = "#7c7f93" },
576 | { name = "f3d", text = "", fg = "#40a02b" },
577 | { name = "ass", text = "", fg = "#df8e1d" },
578 | { name = "godot", text = "", fg = "#7c7f93" },
579 | { name = "ifb", text = "", fg = "#4c4f69" },
580 | { name = "cson", text = "", fg = "#40a02b" },
581 | { name = "lib", text = "", fg = "#4c4f69" },
582 | { name = "luac", text = "", fg = "#04a5e5" },
583 | { name = "heex", text = "", fg = "#7c7f93" },
584 | { name = "scm", text = "", fg = "#eff1f5" },
585 | { name = "psd1", text = "", fg = "#7287fd" },
586 | { name = "sc", text = "", fg = "#d20f39" },
587 | { name = "scad", text = "", fg = "#df8e1d" },
588 | { name = "kts", text = "", fg = "#8839ef" },
589 | { name = "svh", text = "", fg = "#40a02b" },
590 | { name = "mts", text = "", fg = "#209fb5" },
591 | { name = "nfo", text = "", fg = "#eff1f5" },
592 | { name = "pck", text = "", fg = "#7c7f93" },
593 | { name = "rproj", text = "", fg = "#40a02b" },
594 | { name = "rlib", text = "", fg = "#dc8a78" },
595 | { name = "cljd", text = "", fg = "#209fb5" },
596 | { name = "ods", text = "", fg = "#40a02b" },
597 | { name = "res", text = "", fg = "#d20f39" },
598 | { name = "apk", text = "", fg = "#40a02b" },
599 | { name = "haml", text = "", fg = "#eff1f5" },
600 | { name = "d.ts", text = "", fg = "#df8e1d" },
601 | { name = "razor", text = "", fg = "#8839ef" },
602 | { name = "rake", text = "", fg = "#d20f39" },
603 | { name = "patch", text = "", fg = "#4c4f69" },
604 | { name = "cuh", text = "", fg = "#7c7f93" },
605 | { name = "d", text = "", fg = "#d20f39" },
606 | { name = "query", text = "", fg = "#40a02b" },
607 | { name = "psb", text = "", fg = "#209fb5" },
608 | { name = "nu", text = ">", fg = "#40a02b" },
609 | { name = "mov", text = "", fg = "#df8e1d" },
610 | { name = "lrc", text = "", fg = "#df8e1d" },
611 | { name = "pyx", text = "", fg = "#04a5e5" },
612 | { name = "pyw", text = "", fg = "#04a5e5" },
613 | { name = "cu", text = "", fg = "#40a02b" },
614 | { name = "bazel", text = "", fg = "#40a02b" },
615 | { name = "obj", text = "", fg = "#8c8fa1" },
616 | { name = "pyi", text = "", fg = "#df8e1d" },
617 | { name = "pyd", text = "", fg = "#df8e1d" },
618 | { name = "exe", text = "", fg = "#d20f39" },
619 | { name = "pyc", text = "", fg = "#df8e1d" },
620 | { name = "fctb", text = "", fg = "#d20f39" },
621 | { name = "part", text = "", fg = "#40a02b" },
622 | { name = "blade.php", text = "", fg = "#e64553" },
623 | { name = "git", text = "", fg = "#fe640b" },
624 | { name = "psd", text = "", fg = "#209fb5" },
625 | { name = "qss", text = "", fg = "#40a02b" },
626 | { name = "csv", text = "", fg = "#40a02b" },
627 | { name = "psm1", text = "", fg = "#7287fd" },
628 | { name = "dconf", text = "", fg = "#eff1f5" },
629 | { name = "config.ru", text = "", fg = "#d20f39" },
630 | { name = "prisma", text = "", fg = "#1e66f5" },
631 | { name = "conf", text = "", fg = "#7c7f93" },
632 | { name = "clj", text = "", fg = "#40a02b" },
633 | { name = "o", text = "", fg = "#d20f39" },
634 | { name = "mp4", text = "", fg = "#df8e1d" },
635 | { name = "cc", text = "", fg = "#e64553" },
636 | { name = "kicad_prl", text = "", fg = "#eff1f5" },
637 | { name = "bz3", text = "", fg = "#df8e1d" },
638 | { name = "asc", text = "", fg = "#6c6f85" },
639 | { name = "png", text = "", fg = "#7c7f93" },
640 | { name = "android", text = "", fg = "#40a02b" },
641 | { name = "pm", text = "", fg = "#209fb5" },
642 | { name = "h", text = "", fg = "#7c7f93" },
643 | { name = "pls", text = "", fg = "#dd7878" },
644 | { name = "ipynb", text = "", fg = "#fe640b" },
645 | { name = "pl", text = "", fg = "#209fb5" },
646 | { name = "ads", text = "", fg = "#eff1f5" },
647 | { name = "sqlite", text = "", fg = "#dce0e8" },
648 | { name = "pdf", text = "", fg = "#d20f39" },
649 | { name = "pcm", text = "", fg = "#1e66f5" },
650 | { name = "ico", text = "", fg = "#40a02b" },
651 | { name = "a", text = "", fg = "#e6e9ef" },
652 | { name = "R", text = "", fg = "#1e66f5" },
653 | { name = "ogg", text = "", fg = "#1e66f5" },
654 | { name = "pxd", text = "", fg = "#04a5e5" },
655 | { name = "kdenlivetitle", text = "", fg = "#04a5e5" },
656 | { name = "jxl", text = "", fg = "#7c7f93" },
657 | { name = "nswag", text = "", fg = "#40a02b" },
658 | { name = "nim", text = "", fg = "#df8e1d" },
659 | { name = "bqn", text = "⎉", fg = "#179299" },
660 | { name = "cts", text = "", fg = "#209fb5" },
661 | { name = "fcparam", text = "", fg = "#d20f39" },
662 | { name = "rs", text = "", fg = "#dc8a78" },
663 | { name = "mpp", text = "", fg = "#209fb5" },
664 | { name = "fdmdownload", text = "", fg = "#40a02b" },
665 | { name = "pptx", text = "", fg = "#e64553" },
666 | { name = "jpeg", text = "", fg = "#7c7f93" },
667 | { name = "bib", text = "", fg = "#40a02b" },
668 | { name = "vhd", text = "", fg = "#40a02b" },
669 | { name = "m", text = "", fg = "#7287fd" },
670 | { name = "js", text = "", fg = "#40a02b" },
671 | { name = "eex", text = "", fg = "#7c7f93" },
672 | { name = "tbc", text = "", fg = "#1e66f5" },
673 | { name = "astro", text = "", fg = "#e64553" },
674 | { name = "sha224", text = "", fg = "#7c7f93" },
675 | { name = "xcplayground", text = "", fg = "#fe640b" },
676 | { name = "el", text = "", fg = "#7c7f93" },
677 | { name = "m4v", text = "", fg = "#df8e1d" },
678 | { name = "m4a", text = "", fg = "#04a5e5" },
679 | { name = "cs", text = "", fg = "#40a02b" },
680 | { name = "hs", text = "", fg = "#7c7f93" },
681 | { name = "tgz", text = "", fg = "#df8e1d" },
682 | { name = "fs", text = "", fg = "#209fb5" },
683 | { name = "luau", text = "", fg = "#04a5e5" },
684 | { name = "dxf", text = "", fg = "#40a02b" },
685 | { name = "download", text = "", fg = "#40a02b" },
686 | { name = "cast", text = "", fg = "#df8e1d" },
687 | { name = "qrc", text = "", fg = "#40a02b" },
688 | { name = "lua", text = "", fg = "#04a5e5" },
689 | { name = "lhs", text = "", fg = "#7c7f93" },
690 | { name = "md", text = "", fg = "#4c4f69" },
691 | { name = "leex", text = "", fg = "#7c7f93" },
692 | { name = "ai", text = "", fg = "#40a02b" },
693 | { name = "lck", text = "", fg = "#bcc0cc" },
694 | { name = "kt", text = "", fg = "#8839ef" },
695 | { name = "bicepparam", text = "", fg = "#7c7f93" },
696 | { name = "hex", text = "", fg = "#1e66f5" },
697 | { name = "zig", text = "", fg = "#df8e1d" },
698 | { name = "bzl", text = "", fg = "#40a02b" },
699 | { name = "cljc", text = "", fg = "#40a02b" },
700 | { name = "kicad_dru", text = "", fg = "#eff1f5" },
701 | { name = "fctl", text = "", fg = "#d20f39" },
702 | { name = "f#", text = "", fg = "#209fb5" },
703 | { name = "odt", text = "", fg = "#04a5e5" },
704 | { name = "conda", text = "", fg = "#40a02b" },
705 | { name = "vala", text = "", fg = "#8839ef" },
706 | { name = "erb", text = "", fg = "#d20f39" },
707 | { name = "mp3", text = "", fg = "#04a5e5" },
708 | { name = "bz2", text = "", fg = "#df8e1d" },
709 | { name = "coffee", text = "", fg = "#40a02b" },
710 | { name = "cr", text = "", fg = "#ccd0da" },
711 | { name = "f90", text = "", fg = "#5c5f77" },
712 | { name = "jwmrc", text = "", fg = "#1e66f5" },
713 | { name = "c++", text = "", fg = "#e64553" },
714 | { name = "fcscript", text = "", fg = "#d20f39" },
715 | { name = "fods", text = "", fg = "#40a02b" },
716 | { name = "cue", text = "", fg = "#dd7878" },
717 | { name = "srt", text = "", fg = "#df8e1d" },
718 | { name = "info", text = "", fg = "#eff1f5" },
719 | { name = "hh", text = "", fg = "#7c7f93" },
720 | { name = "sig", text = "λ", fg = "#fe640b" },
721 | { name = "html", text = "", fg = "#fe640b" },
722 | { name = "iges", text = "", fg = "#40a02b" },
723 | { name = "kicad_wks", text = "", fg = "#eff1f5" },
724 | { name = "hbs", text = "", fg = "#fe640b" },
725 | { name = "fcstd", text = "", fg = "#d20f39" },
726 | { name = "gresource", text = "", fg = "#eff1f5" },
727 | { name = "sub", text = "", fg = "#df8e1d" },
728 | { name = "ical", text = "", fg = "#4c4f69" },
729 | { name = "crdownload", text = "", fg = "#40a02b" },
730 | { name = "pub", text = "", fg = "#df8e1d" },
731 | { name = "vue", text = "", fg = "#40a02b" },
732 | { name = "gd", text = "", fg = "#7c7f93" },
733 | { name = "fsx", text = "", fg = "#209fb5" },
734 | { name = "mkv", text = "", fg = "#df8e1d" },
735 | { name = "py", text = "", fg = "#df8e1d" },
736 | { name = "kicad_sch", text = "", fg = "#eff1f5" },
737 | { name = "epub", text = "", fg = "#df8e1d" },
738 | { name = "env", text = "", fg = "#df8e1d" },
739 | { name = "magnet", text = "", fg = "#d20f39" },
740 | { name = "elf", text = "", fg = "#d20f39" },
741 | { name = "fodg", text = "", fg = "#eff1f5" },
742 | { name = "svg", text = "", fg = "#df8e1d" },
743 | { name = "dwg", text = "", fg = "#40a02b" },
744 | { name = "docx", text = "", fg = "#1e66f5" },
745 | { name = "pro", text = "", fg = "#df8e1d" },
746 | { name = "db", text = "", fg = "#dce0e8" },
747 | { name = "rb", text = "", fg = "#d20f39" },
748 | { name = "r", text = "", fg = "#1e66f5" },
749 | { name = "scss", text = "", fg = "#dd7878" },
750 | { name = "cow", text = "", fg = "#fe640b" },
751 | { name = "gleam", text = "", fg = "#ea76cb" },
752 | { name = "v", text = "", fg = "#40a02b" },
753 | { name = "kicad_pro", text = "", fg = "#eff1f5" },
754 | { name = "liquid", text = "", fg = "#40a02b" },
755 | { name = "zip", text = "", fg = "#df8e1d" },
756 | ]
757 |
--------------------------------------------------------------------------------
/yazi.tera:
--------------------------------------------------------------------------------
1 | ---
2 | whiskers:
3 | version: "2.2.0"
4 | matrix:
5 | - flavor
6 | - accent
7 | filename: "themes/{{ flavor.identifier }}/catppuccin-{{ flavor.identifier }}-{{ accent }}.toml"
8 | hex_format: "#{{r}}{{g}}{{b}}{{z}}"
9 | ---
10 |
11 | {%- set accent = flavor.colors[accent] -%}
12 |
13 | [manager]
14 | cwd = { fg = "{{ teal.hex }}" }
15 |
16 | hovered = { fg = "{{ base.hex }}", bg = "{{ accent.hex }}" }
17 | preview_hovered = { fg = "{{ base.hex }}", bg = "{{ text.hex }}" }
18 |
19 | find_keyword = { fg = "{{ yellow.hex }}", italic = true }
20 | find_position = { fg = "{{ pink.hex }}", bg = "reset", italic = true }
21 |
22 | marker_copied = { fg = "{{ green.hex }}", bg = "{{ green.hex }}" }
23 | marker_cut = { fg = "{{ red.hex }}", bg = "{{ red.hex }}" }
24 | marker_marked = { fg = "{{ teal.hex }}", bg = "{{ teal.hex }}" }
25 | marker_selected = { fg = "{{ accent.hex }}", bg = "{{ accent.hex }}" }
26 |
27 | tab_active = { fg = "{{ base.hex }}", bg = "{{ text.hex }}" }
28 | tab_inactive = { fg = "{{ text.hex }}", bg = "{{ surface1.hex }}" }
29 | tab_width = 1
30 |
31 | count_copied = { fg = "{{ base.hex }}", bg = "{{ green.hex }}" }
32 | count_cut = { fg = "{{ base.hex }}", bg = "{{ red.hex }}" }
33 | count_selected = { fg = "{{ base.hex }}", bg = "{{ accent.hex }}" }
34 |
35 | border_symbol = "│"
36 | border_style = { fg = "{{ overlay1.hex }}" }
37 |
38 | syntect_theme = "~/.config/yazi/Catppuccin-{{ flavor.identifier }}.tmTheme"
39 |
40 | [mode]
41 | normal_main = { fg = "{{ base.hex }}", bg = "{{ accent.hex }}", bold = true }
42 | normal_alt = { fg = "{{ accent.hex }}", bg = "{{ surface0.hex }}"}
43 |
44 | select_main = { fg = "{{ base.hex }}", bg = "{{ green.hex }}", bold = true }
45 | select_alt = { fg = "{{ green.hex }}", bg = "{{ surface0.hex }}"}
46 |
47 | unset_main = { fg = "{{ base.hex }}", bg = "{{ flamingo.hex }}", bold = true }
48 | unset_alt = { fg = "{{ flamingo.hex }}", bg = "{{ surface0.hex }}"}
49 |
50 | [status]
51 | separator_open = ""
52 | separator_close = ""
53 |
54 | progress_label = { fg = "#ffffff", bold = true }
55 | progress_normal = { fg = "{{ blue.hex }}", bg = "{{ surface1.hex }}" }
56 | progress_error = { fg = "{{ red.hex }}", bg = "{{ surface1.hex }}" }
57 |
58 | perm_type = { fg = "{{ blue.hex }}" }
59 | perm_read = { fg = "{{ yellow.hex }}" }
60 | perm_write = { fg = "{{ red.hex }}" }
61 | perm_exec = { fg = "{{ green.hex }}" }
62 | perm_sep = { fg = "{{ overlay1.hex }}" }
63 |
64 | [input]
65 | border = { fg = "{{ accent.hex }}" }
66 | title = {}
67 | value = {}
68 | selected = { reversed = true }
69 |
70 | [pick]
71 | border = { fg = "{{ accent.hex }}" }
72 | active = { fg = "{{ pink.hex }}" }
73 | inactive = {}
74 |
75 | [confirm]
76 | border = { fg = "{{ accent.hex }}" }
77 | title = { fg = "{{ accent.hex }}" }
78 | content = {}
79 | list = {}
80 | btn_yes = { reversed = true }
81 | btn_no = {}
82 |
83 | [cmp]
84 | border = { fg = "{{ accent.hex }}" }
85 |
86 | [tasks]
87 | border = { fg = "{{ accent.hex }}" }
88 | title = {}
89 | hovered = { underline = true }
90 |
91 | [which]
92 | mask = { bg = "{{ surface0.hex }}" }
93 | cand = { fg = "{{ teal.hex }}" }
94 | rest = { fg = "{{ overlay2.hex }}" }
95 | desc = { fg = "{{ pink.hex }}" }
96 | separator = " "
97 | separator_style = { fg = "{{ surface2.hex }}" }
98 |
99 | [help]
100 | on = { fg = "{{ teal.hex }}" }
101 | run = { fg = "{{ pink.hex }}" }
102 | desc = { fg = "{{ overlay2.hex }}" }
103 | hovered = { bg = "{{ surface2.hex }}", bold = true }
104 | footer = { fg = "{{ text.hex }}", bg = "{{ surface1.hex }}" }
105 |
106 | [notify]
107 | title_info = { fg = "{{ teal.hex }}" }
108 | title_warn = { fg = "{{ yellow.hex }}" }
109 | title_error = { fg = "{{ red.hex }}" }
110 |
111 | [filetype]
112 | rules = [
113 | # Media
114 | { mime = "image/*", fg = "{{ teal.hex }}" },
115 | { mime = "{audio,video}/*", fg = "{{ yellow.hex }}" },
116 |
117 | # Archives
118 | { mime = "application/*zip", fg = "{{ pink.hex }}" },
119 | { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "{{ pink.hex }}" },
120 |
121 | # Documents
122 | { mime = "application/{pdf,doc,rtf}", fg = "{{ green.hex }}" },
123 |
124 | # Fallback
125 | { name = "*", fg = "{{ text.hex }}" },
126 | { name = "*/", fg = "{{ accent.hex }}" }
127 | ]
128 |
129 | [spot]
130 | border = { fg = "{{ accent.hex }}" }
131 | title = { fg = "{{ accent.hex }}" }
132 | tbl_cell = { fg = "{{ accent.hex }}", reversed = true }
133 | tbl_col = { bold = true }
134 |
--------------------------------------------------------------------------------