diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..d5c69af
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,7 @@
+starship.toml filter=catppuccin-normalize
+gitconfig filter=catppuccin-normalize
+atuin/config.toml filter=catppuccin-normalize
+zellij/config.kdl filter=catppuccin-normalize
+btop/btop.conf filter=catppuccin-normalize
+k9s/config.yaml filter=catppuccin-normalize
+tmux/tmux.conf filter=catppuccin-normalize
diff --git a/.gitignore b/.gitignore
index 356ab25..f2ce812 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,8 @@ tmux/plugins
actionlint
stylua
stylua.zip
+
+# Theme-switched symlinks (dark/light variant files are tracked instead)
+bottom/bottom.toml
+eza/theme.yml
+gh-dash/config.yml
diff --git a/README.md b/README.md
index d988e1e..28ff352 100644
--- a/README.md
+++ b/README.md
@@ -3,14 +3,63 @@
Modern development environment configuration files optimized for productivity and visual consistency. This setup provides a comprehensive development environment with integrated tools for coding, git workflow, terminal enhancement, and system monitoring.
**Key Features:**
-- ๐จ **Consistent Theming**: [Catppuccin Mocha theme](https://github.com/catppuccin/catppuccin) across all applications
+- ๐จ **Consistent Theming**: [Catppuccin theme](https://github.com/catppuccin/catppuccin) across all applications with automatic light/dark mode switching
+- ๐ **Auto Light/Dark Mode**: Switches between Catppuccin Mocha (dark) and Latte (light) based on macOS system appearance or sunrise/sunset times
- ๐ **Parallel Installation**: 40-60% faster setup with concurrent package installation
- โก **Performance Optimized**: Fast startup times and efficient resource usage
- ๐ง **Development Focused**: Comprehensive language support and development tools
- ๐ฆ **Automated Setup**: One-script installation for GitHub Codespaces
- ๐ **Modern Shell**: Fish shell with starship prompt and productivity enhancements
-All configurations use the [Catppuccin Mocha theme](https://github.com/catppuccin/catppuccin) for a consistent and visually appealing look across all tools and applications.
+All configurations use the [Catppuccin theme](https://github.com/catppuccin/catppuccin) with automatic light/dark mode switching for a consistent look across all tools.
+
+## Light/Dark Mode Switching
+
+The theme automatically switches between **Catppuccin Mocha** (dark) and **Catppuccin Latte** (light) based on your system settings.
+
+### How It Works
+
+- **macOS**: A Swift daemon watches for system appearance changes and instantly switches all tools. Ghostty and Neovim also detect this natively.
+- **Linux/Remote**: Uses sunrise/sunset calculations from `~/.config/tz.conf` to determine light or dark mode. Falls back to 7 AMโ7 PM if no config exists.
+
+### tz.conf (for non-macOS systems)
+
+Create `~/.config/tz.conf` to enable time-based theme switching:
+
+```ini
+# Theme Mode Configuration
+# Used for sunrise/sunset-based light/dark mode switching
+# on non-macOS systems. On macOS, system appearance is used instead.
+#
+# timezone: IANA timezone identifier (e.g., America/Toronto, Europe/Berlin)
+# latitude: Decimal degrees, positive = North, negative = South
+# longitude: Decimal degrees, positive = East, negative = West
+
+timezone = America/Toronto
+latitude = 43.65
+longitude = -79.38
+```
+
+### Manual Override
+
+```bash
+# Switch manually at any time
+scripts/switch-theme.fish light
+scripts/switch-theme.fish dark
+```
+
+### macOS Theme Watcher Setup
+
+The install script handles this automatically, but for manual setup:
+
+```bash
+# Compile the watcher
+swiftc -O scripts/theme-watcher.swift -o ~/.local/bin/theme-watcher
+
+# Install and start the launchd agent
+cp scripts/com.dotfiles.theme-watcher.plist ~/Library/LaunchAgents/
+launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/com.dotfiles.theme-watcher.plist
+```
## Installation
diff --git a/bottom/bottom.toml b/bottom/bottom-dark.toml
similarity index 100%
rename from bottom/bottom.toml
rename to bottom/bottom-dark.toml
diff --git a/bottom/bottom-light.toml b/bottom/bottom-light.toml
new file mode 100644
index 0000000..f4ba27d
--- /dev/null
+++ b/bottom/bottom-light.toml
@@ -0,0 +1,26 @@
+[styles.tables]
+headers = {color = "#dc8a78"}
+[styles.cpu]
+all_entry_color = "#dc8a78"
+avg_entry_color = "#e64553"
+cpu_core_colors = ["#d20f39","#fe640b","#df8e1d","#40a02b","#209fb5","#8839ef"]
+[styles.memory]
+ram_color = "#40a02b"
+swap_color = "#fe640b"
+gpu_colors = ["#209fb5","#8839ef","#d20f39","#fe640b","#df8e1d","#40a02b"]
+arc_color = "#04a5e5"
+[styles.network]
+rx_color = "#40a02b"
+tx_color = "#d20f39"
+[styles.widgets]
+widget_title = {color = "#dd7878"}
+border_color = "#acb0be"
+selected_border_color = "#ea76cb"
+text = {color = "#4c4f69"}
+selected_text = {color = "#dce0e8", bg_color = "#8839ef"}
+[styles.graphs]
+graph_color = "#6c6f85"
+[styles.battery]
+high_battery_color = "#40a02b"
+medium_battery_color = "#df8e1d"
+low_battery_color = "#d20f39"
diff --git a/eza/theme.yml b/eza/theme-dark.yml
similarity index 100%
rename from eza/theme.yml
rename to eza/theme-dark.yml
diff --git a/eza/theme-light.yml b/eza/theme-light.yml
new file mode 100644
index 0000000..ad943b2
--- /dev/null
+++ b/eza/theme-light.yml
@@ -0,0 +1,103 @@
+---
+colourful: true
+
+filekinds:
+ normal: {foreground: "#5C5F77"}
+ directory: {foreground: "#1E66F5"}
+ symlink: {foreground: "#04A5E5"}
+ pipe: {foreground: "#7C7F93"}
+ block_device: {foreground: "#E64553"}
+ char_device: {foreground: "#E64553"}
+ socket: {foreground: "#7C7F93"}
+ special: {foreground: "#8839EF"}
+ executable: {foreground: "#40A02B"}
+ mount_point: {foreground: "#209FB5"}
+
+perms:
+ user_read: {foreground: "#4C4F69"}
+ user_write: {foreground: "#DF8E1D"}
+ user_execute_file: {foreground: "#40A02B"}
+ user_execute_other: {foreground: "#40A02B"}
+ group_read: {foreground: "#5C5F77"}
+ group_write: {foreground: "#DF8E1D"}
+ group_execute: {foreground: "#40A02B"}
+ other_read: {foreground: "#6C6F85"}
+ other_write: {foreground: "#DF8E1D"}
+ other_execute: {foreground: "#40A02B"}
+ special_user_file: {foreground: "#8839EF"}
+ special_other: {foreground: "#7C7F93"}
+ attribute: {foreground: "#5C5F77"}
+
+size:
+ major: {foreground: "#6C6F85"}
+ minor: {foreground: "#04A5E5"}
+ number_byte: {foreground: "#4C4F69"}
+ number_kilo: {foreground: "#5C5F77"}
+ number_mega: {foreground: "#1E66F5"}
+ number_giga: {foreground: "#8839EF"}
+ number_huge: {foreground: "#8839EF"}
+ unit_byte: {foreground: "#5C5F77"}
+ unit_kilo: {foreground: "#1E66F5"}
+ unit_mega: {foreground: "#8839EF"}
+ unit_giga: {foreground: "#8839EF"}
+ unit_huge: {foreground: "#209FB5"}
+
+users:
+ user_you: {foreground: "#4C4F69"}
+ user_root: {foreground: "#D20F39"}
+ user_other: {foreground: "#8839EF"}
+ group_yours: {foreground: "#5C5F77"}
+ group_other: {foreground: "#7C7F93"}
+ group_root: {foreground: "#D20F39"}
+
+links:
+ normal: {foreground: "#04A5E5"}
+ multi_link_file: {foreground: "#209FB5"}
+
+git:
+ new: {foreground: "#40A02B"}
+ modified: {foreground: "#DF8E1D"}
+ deleted: {foreground: "#D20F39"}
+ renamed: {foreground: "#179299"}
+ typechange: {foreground: "#EA76CB"}
+ ignored: {foreground: "#7C7F93"}
+ conflicted: {foreground: "#E64553"}
+
+git_repo:
+ branch_main: {foreground: "#4C4F69"}
+ branch_other: {foreground: "#8839EF"}
+ git_clean: {foreground: "#40A02B"}
+ git_dirty: {foreground: "#D20F39"}
+
+security_context:
+ colon: {foreground: "#7C7F93"}
+ user: {foreground: "#4C4F69"}
+ role: {foreground: "#8839EF"}
+ typ: {foreground: "#7C7F93"}
+ range: {foreground: "#8839EF"}
+
+file_type:
+ image: {foreground: "#DF8E1D"}
+ video: {foreground: "#D20F39"}
+ music: {foreground: "#40A02B"}
+ lossless: {foreground: "#179299"}
+ crypto: {foreground: "#7C7F93"}
+ document: {foreground: "#4C4F69"}
+ compressed: {foreground: "#EA76CB"}
+ temp: {foreground: "#E64553"}
+ compiled: {foreground: "#209FB5"}
+ build: {foreground: "#7C7F93"}
+ source: {foreground: "#1E66F5"}
+
+punctuation: {foreground: "#7C7F93"}
+date: {foreground: "#DF8E1D"}
+inode: {foreground: "#5C5F77"}
+blocks: {foreground: "#6C6F85"}
+header: {foreground: "#4C4F69"}
+octal: {foreground: "#179299"}
+flags: {foreground: "#8839EF"}
+
+symlink_path: {foreground: "#04A5E5"}
+control_char: {foreground: "#209FB5"}
+broken_symlink: {foreground: "#D20F39"}
+broken_path_overlay: {foreground: "#7C7F93"}
diff --git a/fish/conf.d/00-env.fish b/fish/conf.d/00-env.fish
index b053d77..efd1b20 100644
--- a/fish/conf.d/00-env.fish
+++ b/fish/conf.d/00-env.fish
@@ -7,12 +7,14 @@ set -gx EDITOR nvim
set -gx EZA_CONFIG_DIR "$HOME/.config/eza"
set -gx EZA_ICONS_AUTO true
-# fzf theme/options
-set -gx FZF_DEFAULT_OPTS '--color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc --color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 --color=selected-bg:#45475a --multi'
+# fzf theme/options (colors are set dynamically by 01-theme.fish)
-# From your previous fish_variables (portable defaults)
-set -gx BAT_THEME Catppuccin-mocha
-set -gx DARK_MODE true
+# bat: auto-detect terminal dark/light mode (no manual switching needed)
+set -gx BAT_THEME "auto:system"
+set -gx BAT_THEME_DARK "Catppuccin Mocha"
+set -gx BAT_THEME_LIGHT "Catppuccin Latte"
+
+# DARK_MODE and FZF_DEFAULT_OPTS are managed by 99-theme.fish
# Go module env (host-specific GOPROXY is handled in 30-host-conditional.fish)
set -gx GONOPROXY ""
diff --git a/fish/conf.d/99-theme.fish b/fish/conf.d/99-theme.fish
new file mode 100644
index 0000000..5718646
--- /dev/null
+++ b/fish/conf.d/99-theme.fish
@@ -0,0 +1,74 @@
+# Theme mode management โ sets env vars for external tools based on terminal color scheme.
+# Fish 4.x auto-detects dark/light via $fish_terminal_color_theme (OSC 11 query).
+# This handler fires on terminal color scheme changes AND on shell startup.
+
+function _theme_apply --on-variable fish_terminal_color_theme
+ if test "$fish_terminal_color_theme" = light
+ set -gx DARK_MODE false
+ set -gx COLORFGBG '0;15'
+ set -gx FZF_DEFAULT_OPTS '--color=bg+:#ccd0da,bg:#eff1f5,spinner:#dc8a78,hl:#d20f39 --color=fg:#4c4f69,header:#d20f39,info:#8839ef,pointer:#dc8a78 --color=marker:#7287fd,fg+:#4c4f69,prompt:#8839ef,hl+:#d20f39 --color=selected-bg:#bcc0cc --multi'
+
+ # Fish syntax highlighting โ Catppuccin Latte
+ set -g fish_color_normal 4c4f69
+ set -g fish_color_command 1e66f5
+ set -g fish_color_keyword d20f39
+ set -g fish_color_quote 40a02b
+ set -g fish_color_redirection ea76cb
+ set -g fish_color_end fe640b
+ set -g fish_color_error d20f39
+ set -g fish_color_param dd7878
+ set -g fish_color_option 40a02b
+ set -g fish_color_comment 8c8fa1
+ set -g fish_color_selection --background=ccd0da
+ set -g fish_color_search_match --background=ccd0da
+ set -g fish_color_operator ea76cb
+ set -g fish_color_escape e64553
+ set -g fish_color_autosuggestion 9ca0b0
+ set -g fish_color_cancel d20f39
+ set -g fish_color_cwd df8e1d
+ set -g fish_color_user 179299
+ set -g fish_color_host 1e66f5
+ set -g fish_color_host_remote 40a02b
+ set -g fish_color_status d20f39
+ set -g fish_color_gray 9ca0b0
+ set -g fish_pager_color_completion 4c4f69
+ set -g fish_pager_color_description 9ca0b0
+ set -g fish_pager_color_prefix ea76cb
+ set -g fish_pager_color_progress 9ca0b0
+ else
+ set -gx DARK_MODE true
+ set -gx COLORFGBG '15;0'
+ set -gx FZF_DEFAULT_OPTS '--color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc --color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 --color=selected-bg:#45475a --multi'
+
+ # Fish syntax highlighting โ Catppuccin Mocha
+ set -g fish_color_normal cdd6f4
+ set -g fish_color_command 89b4fa
+ set -g fish_color_keyword f38ba8
+ set -g fish_color_quote a6e3a1
+ set -g fish_color_redirection f5c2e7
+ set -g fish_color_end fab387
+ set -g fish_color_error f38ba8
+ set -g fish_color_param f2cdcd
+ set -g fish_color_option a6e3a1
+ set -g fish_color_comment 7f849c
+ set -g fish_color_selection --background=313244
+ set -g fish_color_search_match --background=313244
+ set -g fish_color_operator f5c2e7
+ set -g fish_color_escape eba0ac
+ set -g fish_color_autosuggestion 6c7086
+ set -g fish_color_cancel f38ba8
+ set -g fish_color_cwd f9e2af
+ set -g fish_color_user 94e2d5
+ set -g fish_color_host 89b4fa
+ set -g fish_color_host_remote a6e3a1
+ set -g fish_color_status f38ba8
+ set -g fish_color_gray 6c7086
+ set -g fish_pager_color_completion cdd6f4
+ set -g fish_pager_color_description 6c7086
+ set -g fish_pager_color_prefix f5c2e7
+ set -g fish_pager_color_progress 6c7086
+ end
+end
+
+# Apply theme on shell init
+_theme_apply
diff --git a/fish/conf.d/fish_frozen_theme.fish b/fish/conf.d/fish_frozen_theme.fish
deleted file mode 100644
index 2008093..0000000
--- a/fish/conf.d/fish_frozen_theme.fish
+++ /dev/null
@@ -1,49 +0,0 @@
-# This file was created by fish when upgrading to version 4.3, to migrate
-# theme variables from universal to global scope.
-# Don't edit this file, as it will be written by the web-config tool (`fish_config`).
-# To customize your theme, delete this file and see
-# help interactive#syntax-highlighting
-# or
-# man fish-interactive | less +/^SYNTAX.HIGHLIGHTING
-# for appropriate commands to add to ~/.config/fish/config.fish instead.
-# See also the release notes for fish 4.3.0 (run `help relnotes`).
-
-set --global fish_color_autosuggestion 6c7086
-set --global fish_color_cancel f38ba8
-set --global fish_color_command 89b4fa
-set --global fish_color_comment 7f849c
-set --global fish_color_cwd f9e2af
-set --global fish_color_cwd_root red
-set --global fish_color_end fab387
-set --global fish_color_error f38ba8
-set --global fish_color_escape eba0ac
-set --global fish_color_gray 6c7086
-set --global fish_color_history_current --bold
-set --global fish_color_host 89b4fa
-set --global fish_color_host_remote a6e3a1
-set --global fish_color_keyword f38ba8
-set --global fish_color_match --background=brblue
-set --global fish_color_normal cdd6f4
-set --global fish_color_operator f5c2e7
-set --global fish_color_option a6e3a1
-set --global fish_color_param f2cdcd
-set --global fish_color_quote a6e3a1
-set --global fish_color_redirection f5c2e7
-set --global fish_color_search_match --background=313244
-set --global fish_color_selection --background=313244
-set --global fish_color_status f38ba8
-set --global fish_color_user 94e2d5
-set --global fish_color_valid_path --underline
-set --global fish_pager_color_background
-set --global fish_pager_color_completion cdd6f4
-set --global fish_pager_color_description 6c7086
-set --global fish_pager_color_prefix f5c2e7
-set --global fish_pager_color_progress 6c7086
-set --global fish_pager_color_secondary_background
-set --global fish_pager_color_secondary_completion
-set --global fish_pager_color_secondary_description
-set --global fish_pager_color_secondary_prefix
-set --global fish_pager_color_selected_background
-set --global fish_pager_color_selected_completion
-set --global fish_pager_color_selected_description
-set --global fish_pager_color_selected_prefix
diff --git a/fish/conf.d/fish_frozen_theme.fish.bak b/fish/conf.d/fish_frozen_theme.fish.bak
deleted file mode 100644
index 2008093..0000000
--- a/fish/conf.d/fish_frozen_theme.fish.bak
+++ /dev/null
@@ -1,49 +0,0 @@
-# This file was created by fish when upgrading to version 4.3, to migrate
-# theme variables from universal to global scope.
-# Don't edit this file, as it will be written by the web-config tool (`fish_config`).
-# To customize your theme, delete this file and see
-# help interactive#syntax-highlighting
-# or
-# man fish-interactive | less +/^SYNTAX.HIGHLIGHTING
-# for appropriate commands to add to ~/.config/fish/config.fish instead.
-# See also the release notes for fish 4.3.0 (run `help relnotes`).
-
-set --global fish_color_autosuggestion 6c7086
-set --global fish_color_cancel f38ba8
-set --global fish_color_command 89b4fa
-set --global fish_color_comment 7f849c
-set --global fish_color_cwd f9e2af
-set --global fish_color_cwd_root red
-set --global fish_color_end fab387
-set --global fish_color_error f38ba8
-set --global fish_color_escape eba0ac
-set --global fish_color_gray 6c7086
-set --global fish_color_history_current --bold
-set --global fish_color_host 89b4fa
-set --global fish_color_host_remote a6e3a1
-set --global fish_color_keyword f38ba8
-set --global fish_color_match --background=brblue
-set --global fish_color_normal cdd6f4
-set --global fish_color_operator f5c2e7
-set --global fish_color_option a6e3a1
-set --global fish_color_param f2cdcd
-set --global fish_color_quote a6e3a1
-set --global fish_color_redirection f5c2e7
-set --global fish_color_search_match --background=313244
-set --global fish_color_selection --background=313244
-set --global fish_color_status f38ba8
-set --global fish_color_user 94e2d5
-set --global fish_color_valid_path --underline
-set --global fish_pager_color_background
-set --global fish_pager_color_completion cdd6f4
-set --global fish_pager_color_description 6c7086
-set --global fish_pager_color_prefix f5c2e7
-set --global fish_pager_color_progress 6c7086
-set --global fish_pager_color_secondary_background
-set --global fish_pager_color_secondary_completion
-set --global fish_pager_color_secondary_description
-set --global fish_pager_color_secondary_prefix
-set --global fish_pager_color_selected_background
-set --global fish_pager_color_selected_completion
-set --global fish_pager_color_selected_description
-set --global fish_pager_color_selected_prefix
diff --git a/gh-dash/config.yml b/gh-dash/config-dark.yml
similarity index 100%
rename from gh-dash/config.yml
rename to gh-dash/config-dark.yml
diff --git a/gh-dash/config-light.yml b/gh-dash/config-light.yml
new file mode 100644
index 0000000..3ac6f06
--- /dev/null
+++ b/gh-dash/config-light.yml
@@ -0,0 +1,16 @@
+---
+theme:
+ colors:
+ text:
+ primary: "#4c4f69"
+ secondary: "#1e66f5"
+ inverted: "#eff1f5"
+ faint: "#5c5f77"
+ warning: "#d20f39"
+ success: "#40a02b"
+ background:
+ selected: "#ccd0da"
+ border:
+ primary: "#1e66f5"
+ secondary: "#bcc0cc"
+ faint: "#ccd0da"
diff --git a/ghostty/config b/ghostty/config
index 73a4135..a910abe 100644
--- a/ghostty/config
+++ b/ghostty/config
@@ -1,6 +1,5 @@
-theme = catppuccin-mocha.conf
+theme = light:Catppuccin Latte,dark:catppuccin-mocha-black.conf
macos-titlebar-style = tabs
-background = 000000
font-family = Monaspace Neon Var
font-family-bold = Monaspace Xenon Var
font-family-italic = Monaspace Radon Var
diff --git a/ghostty/themes/catppuccin-mocha-black.conf b/ghostty/themes/catppuccin-mocha-black.conf
new file mode 100644
index 0000000..437c438
--- /dev/null
+++ b/ghostty/themes/catppuccin-mocha-black.conf
@@ -0,0 +1,22 @@
+palette = 0=#45475a
+palette = 1=#f38ba8
+palette = 2=#a6e3a1
+palette = 3=#f9e2af
+palette = 4=#89b4fa
+palette = 5=#f5c2e7
+palette = 6=#94e2d5
+palette = 7=#a6adc8
+palette = 8=#585b70
+palette = 9=#f38ba8
+palette = 10=#a6e3a1
+palette = 11=#f9e2af
+palette = 12=#89b4fa
+palette = 13=#f5c2e7
+palette = 14=#94e2d5
+palette = 15=#bac2de
+background = 000000
+foreground = cdd6f4
+cursor-color = f5e0dc
+cursor-text = 1e1e2e
+selection-background = 353749
+selection-foreground = cdd6f4
diff --git a/install.sh b/install.sh
index 0d899cf..403dfbc 100755
--- a/install.sh
+++ b/install.sh
@@ -203,6 +203,44 @@ function link_files() {
sudo ln -sf "$(pwd)/scripts/tmux-background-install-indicator.sh" /usr/local/bin/
fi
+ # macOS theme watcher setup
+ if [ "$(uname)" = "Darwin" ] && command -v swiftc >/dev/null 2>&1; then
+ start_time=$(start_operation "Setting up theme watcher")
+ mkdir -p ~/.local/bin
+ swiftc -O "$(pwd)/scripts/theme-watcher.swift" -o ~/.local/bin/theme-watcher
+ ln -sf "$(pwd)/scripts/switch-theme.fish" ~/.local/bin/switch-theme.fish
+ cp "$(pwd)/scripts/com.dotfiles.theme-watcher.plist" ~/Library/LaunchAgents/
+ launchctl bootout "gui/$(id -u)" ~/Library/LaunchAgents/com.dotfiles.theme-watcher.plist 2>/dev/null || true
+ launchctl bootstrap "gui/$(id -u)" ~/Library/LaunchAgents/com.dotfiles.theme-watcher.plist
+ log_with_timing "Setting up theme watcher" "$start_time"
+ fi
+
+ # Initialize theme mode
+ if [ ! -f ~/.config/theme-mode ]; then
+ "$(pwd)/scripts/detect-theme-mode" > ~/.config/theme-mode
+ fi
+
+ # Create default theme symlinks (these files are gitignored)
+ start_time=$(start_operation "Setting up theme symlinks")
+ local mode
+ mode=$(cat ~/.config/theme-mode)
+ if [ "$mode" = "light" ]; then
+ ln -sf bottom-light.toml "$(pwd)/bottom/bottom.toml"
+ ln -sf theme-light.yml "$(pwd)/eza/theme.yml"
+ ln -sf config-light.yml "$(pwd)/gh-dash/config.yml"
+ else
+ ln -sf bottom-dark.toml "$(pwd)/bottom/bottom.toml"
+ ln -sf theme-dark.yml "$(pwd)/eza/theme.yml"
+ ln -sf config-dark.yml "$(pwd)/gh-dash/config.yml"
+ fi
+
+ # Set up git clean filter to normalize theme strings (hides latteโmocha
+ # changes from git status/diff so config files stay "clean" in the index)
+ git -C "$(pwd)" config filter.catppuccin-normalize.clean \
+ "sed '/[=:@]/{s/catppuccin_latte/catppuccin_mocha/g;s/catppuccin-latte/catppuccin-mocha/g;s/Catppuccin-latte/Catppuccin-mocha/g;s/\"latte\"/\"mocha\"/g;}'"
+ git -C "$(pwd)" config filter.catppuccin-normalize.smudge cat
+ log_with_timing "Setting up theme symlinks" "$start_time"
+
log_with_timing "Linking terminal tool configs" "$start_time"
# Codespaces-specific configuration - background non-critical operations
diff --git a/k9s/skins/catppuccin-latte.yaml b/k9s/skins/catppuccin-latte.yaml
new file mode 100644
index 0000000..6e48a26
--- /dev/null
+++ b/k9s/skins/catppuccin-latte.yaml
@@ -0,0 +1,141 @@
+---
+# Catppuccin Latte theme for k9s
+# Based on: https://github.com/catppuccin/catppuccin
+
+k9s:
+ # General
+ body:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ logoColor: "#1e66f5"
+ # Header
+ header:
+ fgColor: "#4c4f69"
+ bgColor: "#bcc0cc"
+ highlightColor: "#1e66f5"
+ # Footer
+ footer:
+ fgColor: "#4c4f69"
+ bgColor: "#bcc0cc"
+ # Crumbs
+ crumb:
+ fgColor: "#1e66f5"
+ bgColor: "#bcc0cc"
+ activeColor: "#d20f39"
+ # Resource title
+ title:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ highlightColor: "#1e66f5"
+ counterColor: "#df8e1d"
+ filterColor: "#40a02b"
+ # Table
+ table:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ cursorColor: "#bcc0cc"
+ markColor: "#df8e1d"
+ header:
+ fgColor: "#4c4f69"
+ bgColor: "#ccd0da"
+ sorterColor: "#1e66f5"
+ # YAML info
+ info:
+ fgColor: "#04a5e5"
+ sectionColor: "#4c4f69"
+ # Dialogs
+ dialog:
+ fgColor: "#4c4f69"
+ bgColor: "#ccd0da"
+ buttonColor: "#1e66f5"
+ buttonFocusColor: "#d20f39"
+ labelColor: "#1e66f5"
+ fieldColor: "#4c4f69"
+ # Prompt
+ prompt:
+ fgColor: "#4c4f69"
+ bgColor: "#ccd0da"
+ suggestColor: "#1e66f5"
+ # Help
+ help:
+ fgColor: "#5c5f77"
+ bgColor: "#eff1f5"
+ keyColor: "#1e66f5"
+ numKeyColor: "#df8e1d"
+ sectionColor: "#4c4f69"
+ # Frame
+ frame:
+ border:
+ fgColor: "#acb0be"
+ focusColor: "#1e66f5"
+ menu:
+ fgColor: "#4c4f69"
+ keyColor: "#1e66f5"
+ numKeyColor: "#df8e1d"
+ crumb:
+ fgColor: "#1e66f5"
+ bgColor: "#bcc0cc"
+ activeColor: "#d20f39"
+ status:
+ newColor: "#40a02b"
+ modifyColor: "#df8e1d"
+ addColor: "#1e66f5"
+ errorColor: "#d20f39"
+ highlightColor: "#1e66f5"
+ killColor: "#d20f39"
+ completedColor: "#40a02b"
+ title:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ highlightColor: "#1e66f5"
+ counterColor: "#df8e1d"
+ filterColor: "#40a02b"
+ # Views
+ views:
+ charts:
+ bgColor: "#eff1f5"
+ defaultDialColors:
+ - "#1e66f5"
+ - "#40a02b"
+ - "#df8e1d"
+ - "#d20f39"
+ - "#8839ef"
+ - "#209fb5"
+ - "#04a5e5"
+ - "#ea76cb"
+ defaultChartColors:
+ - "#1e66f5"
+ - "#40a02b"
+ - "#df8e1d"
+ - "#d20f39"
+ - "#8839ef"
+ - "#209fb5"
+ - "#04a5e5"
+ - "#ea76cb"
+ table:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ cursorColor: "#bcc0cc"
+ markColor: "#df8e1d"
+ header:
+ fgColor: "#4c4f69"
+ bgColor: "#ccd0da"
+ sorterColor: "#1e66f5"
+ xray:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ cursorColor: "#bcc0cc"
+ graphicColor: "#1e66f5"
+ showIcons: false
+ yaml:
+ keyColor: "#1e66f5"
+ colonColor: "#7c7f93"
+ valueColor: "#40a02b"
+ logs:
+ fgColor: "#4c4f69"
+ bgColor: "#eff1f5"
+ indicator:
+ fgColor: "#1e66f5"
+ bgColor: "#eff1f5"
+ toggleOnColor: "#40a02b"
+ toggleOffColor: "#d20f39"
diff --git a/nvim/lua/plugins/catppuccin.lua b/nvim/lua/plugins/catppuccin.lua
index 2adeaa7..2013d21 100644
--- a/nvim/lua/plugins/catppuccin.lua
+++ b/nvim/lua/plugins/catppuccin.lua
@@ -3,8 +3,17 @@ return {
name = "catppuccin",
priority = 1000,
config = function()
+ -- Detect light/dark mode from theme-mode file
+ local mode_file = vim.fn.expand("~/.config/theme-mode")
+ if vim.fn.filereadable(mode_file) == 1 then
+ local mode = vim.fn.readfile(mode_file)[1]
+ if mode == "light" then
+ vim.o.background = "light"
+ end
+ end
+
require("catppuccin").setup({
- flavour = "mocha",
+ flavour = "auto",
transparent_background = false,
background = {
light = "latte",
diff --git a/scripts/com.dotfiles.theme-watcher.plist b/scripts/com.dotfiles.theme-watcher.plist
new file mode 100644
index 0000000..0aafeb6
--- /dev/null
+++ b/scripts/com.dotfiles.theme-watcher.plist
@@ -0,0 +1,20 @@
+
+
+
+
+ Label
+ com.dotfiles.theme-watcher
+ ProgramArguments
+
+ /Users/djensenius/.local/bin/theme-watcher
+
+ RunAtLoad
+
+ KeepAlive
+
+ StandardOutPath
+ /tmp/theme-watcher.log
+ StandardErrorPath
+ /tmp/theme-watcher.log
+
+
diff --git a/scripts/detect-theme-mode b/scripts/detect-theme-mode
new file mode 100755
index 0000000..0be66ea
--- /dev/null
+++ b/scripts/detect-theme-mode
@@ -0,0 +1,60 @@
+#!/bin/sh
+# Detect the current theme mode (light or dark).
+#
+# Priority:
+# 1. macOS: System appearance setting (always wins)
+# 2. tz.conf: Sunrise/sunset calculation from lat/long
+# 3. Fallback: System local time, 7:00-19:00 = light
+#
+# Output: prints "light" or "dark" to stdout
+
+SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
+TZ_CONF="$HOME/.config/tz.conf"
+
+# --- macOS: use system appearance ---
+if [ "$(uname)" = "Darwin" ]; then
+ if defaults read -g AppleInterfaceStyle >/dev/null 2>&1; then
+ echo "dark"
+ else
+ echo "light"
+ fi
+ exit 0
+fi
+
+# --- tz.conf: sunrise/sunset calculation ---
+if [ -f "$TZ_CONF" ]; then
+ # Parse tz.conf (key = value format, # comments)
+ tz_timezone=""
+ tz_latitude=""
+ tz_longitude=""
+
+ while IFS= read -r line; do
+ # Skip comments and empty lines
+ case "$line" in
+ \#*|"") continue ;;
+ esac
+ key="$(echo "$line" | cut -d= -f1 | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')"
+ val="$(echo "$line" | cut -d= -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')"
+ case "$key" in
+ timezone) tz_timezone="$val" ;;
+ latitude) tz_latitude="$val" ;;
+ longitude) tz_longitude="$val" ;;
+ esac
+ done < "$TZ_CONF"
+
+ if [ -n "$tz_timezone" ] && [ -n "$tz_latitude" ] && [ -n "$tz_longitude" ]; then
+ result="$(python3 "$SCRIPT_DIR/sunrise-sunset.py" "$tz_latitude" "$tz_longitude" "$tz_timezone" 2>/dev/null)"
+ if [ -n "$result" ]; then
+ echo "$result"
+ exit 0
+ fi
+ fi
+fi
+
+# --- Fallback: system local time ---
+hour="$(date +%H)"
+if [ "$hour" -ge 7 ] && [ "$hour" -lt 19 ]; then
+ echo "light"
+else
+ echo "dark"
+fi
diff --git a/scripts/sunrise-sunset.py b/scripts/sunrise-sunset.py
new file mode 100755
index 0000000..3b1d9d8
--- /dev/null
+++ b/scripts/sunrise-sunset.py
@@ -0,0 +1,110 @@
+#!/usr/bin/env python3
+"""Determine light/dark mode based on sunrise/sunset times.
+
+Uses the NOAA solar position algorithm to calculate sunrise and sunset
+from latitude, longitude, and timezone. Outputs "light" or "dark".
+
+Usage: sunrise-sunset.py
+Example: sunrise-sunset.py 43.65 -79.38 America/Toronto
+"""
+
+import math
+import sys
+from datetime import datetime, timezone as tz
+from zoneinfo import ZoneInfo
+
+
+def calc_sunrise_sunset(lat, lon, date, utc_offset_hours):
+ """Calculate sunrise/sunset using NOAA algorithm.
+
+ Returns (sunrise_hour, sunset_hour) in local decimal hours,
+ or (None, None) for polar day/night.
+ """
+ zenith = 90.833
+ day_of_year = date.timetuple().tm_yday
+ lng_hour = lon / 15.0
+
+ def calc_time(is_sunrise):
+ if is_sunrise:
+ t = day_of_year + (6 - lng_hour) / 24.0
+ else:
+ t = day_of_year + (18 - lng_hour) / 24.0
+
+ mean_anomaly = (0.9856 * t) - 3.289
+ sun_lon = (
+ mean_anomaly
+ + 1.916 * math.sin(math.radians(mean_anomaly))
+ + 0.020 * math.sin(math.radians(2 * mean_anomaly))
+ + 282.634
+ ) % 360
+
+ right_asc = math.degrees(
+ math.atan(0.91764 * math.tan(math.radians(sun_lon)))
+ )
+ # Adjust quadrant
+ sun_quad = (sun_lon // 90) * 90
+ ra_quad = (right_asc // 90) * 90
+ right_asc = (right_asc + (sun_quad - ra_quad)) / 15.0
+
+ sin_dec = 0.39782 * math.sin(math.radians(sun_lon))
+ cos_dec = math.cos(math.asin(sin_dec))
+
+ cos_h = (
+ math.cos(math.radians(zenith))
+ - sin_dec * math.sin(math.radians(lat))
+ ) / (cos_dec * math.cos(math.radians(lat)))
+
+ if cos_h > 1:
+ return None # Sun never rises (polar night)
+ if cos_h < -1:
+ return None # Sun never sets (midnight sun)
+
+ if is_sunrise:
+ hour_angle = (360 - math.degrees(math.acos(cos_h))) / 15.0
+ else:
+ hour_angle = math.degrees(math.acos(cos_h)) / 15.0
+
+ local_mean = hour_angle + right_asc - 0.06571 * t - 6.622
+ utc_hour = local_mean - lng_hour
+ local_hour = (utc_hour + utc_offset_hours) % 24
+ return local_hour
+
+ return calc_time(True), calc_time(False)
+
+
+def main():
+ if len(sys.argv) != 4:
+ print("Usage: sunrise-sunset.py ", file=sys.stderr)
+ sys.exit(2)
+
+ lat = float(sys.argv[1])
+ lon = float(sys.argv[2])
+ tz_name = sys.argv[3]
+
+ try:
+ zone = ZoneInfo(tz_name)
+ except KeyError:
+ print(f"Unknown timezone: {tz_name}", file=sys.stderr)
+ sys.exit(2)
+
+ now = datetime.now(zone)
+ utc_offset = now.utcoffset().total_seconds() / 3600.0
+
+ sunrise, sunset = calc_sunrise_sunset(lat, lon, now, utc_offset)
+
+ current_hour = now.hour + now.minute / 60.0
+
+ if sunrise is None or sunset is None:
+ # Polar conditions โ use 7-19 fallback
+ if 7 <= current_hour < 19:
+ print("light")
+ else:
+ print("dark")
+ elif sunrise <= current_hour < sunset:
+ print("light")
+ else:
+ print("dark")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/scripts/switch-theme.fish b/scripts/switch-theme.fish
new file mode 100755
index 0000000..7472644
--- /dev/null
+++ b/scripts/switch-theme.fish
@@ -0,0 +1,101 @@
+#!/usr/bin/env fish
+# switch-theme.fish โ Switch all dotfiles tools between light and dark themes.
+#
+# Usage: switch-theme.fish light|dark
+#
+# This script is idempotent โ calling it with the current mode is a no-op.
+# Called by the macOS theme-watcher daemon or manually.
+
+set -l mode $argv[1]
+
+if test "$mode" != light -a "$mode" != dark
+ echo "Usage: switch-theme.fish light|dark" >&2
+ exit 1
+end
+
+# State file
+set -l state_file "$HOME/.config/theme-mode"
+
+# Check if mode has changed
+if test -f "$state_file"
+ set -l current (cat "$state_file")
+ if test "$current" = "$mode"
+ exit 0
+ end
+end
+
+# Write new mode
+mkdir -p "$HOME/.config"
+echo "$mode" > "$state_file"
+
+# Dotfiles config location (symlinked from repo)
+set -l dotfiles "$HOME/.config"
+
+# Helper: portable sed in-place (follows symlinks)
+function _sed_i
+ set -l file $argv[-1]
+ set -l sed_args $argv[1..-2]
+ # Resolve symlinks so sed -i works on macOS
+ if test -L "$file"
+ set file (realpath "$file")
+ end
+ if test (uname) = Darwin
+ sed -i '' $sed_args "$file"
+ else
+ sed -i $sed_args "$file"
+ end
+end
+
+# --- Sed-based config updates ---
+# Each entry: file|dark-pattern|light-pattern
+set -l sed_swaps \
+ "$HOME/.gitconfig|Catppuccin-mocha|Catppuccin-latte" \
+ "atuin/config.toml|catppuccin-mocha-mauve|catppuccin-latte-mauve" \
+ "zellij/config.kdl|catppuccin-mocha|catppuccin-latte" \
+ "btop/btop.conf|catppuccin_mocha|catppuccin_latte" \
+ "k9s/config.yaml|catppuccin-mocha|catppuccin-latte"
+
+# Starship: only replace on the "palette = " line to avoid renaming palette definitions
+if test "$mode" = light
+ _sed_i '/^palette = /s/catppuccin_mocha/catppuccin_latte/' "$dotfiles/starship.toml"
+else
+ _sed_i '/^palette = /s/catppuccin_latte/catppuccin_mocha/' "$dotfiles/starship.toml"
+end
+
+for swap in $sed_swaps
+ set -l p (string split '|' $swap)
+ set -l file (string match -rq '^/' -- $p[1] && echo $p[1] || echo "$dotfiles/$p[1]")
+ if test "$mode" = light
+ _sed_i "s/$p[2]/$p[3]/g" "$file"
+ else
+ _sed_i "s/$p[3]/$p[2]/g" "$file"
+ end
+end
+
+# --- Symlink-based config updates ---
+# Each entry: directory|filename (dark/light variants use -dark/-light suffix)
+for pair in "bottom|bottom.toml" "eza|theme.yml" "gh-dash|config.yml"
+ set -l p (string split '|' $pair)
+ set -l dir "$dotfiles/$p[1]"
+ if test -d "$dir"
+ set -l base (string replace -r '\.[^.]+$' '' $p[2])
+ set -l ext (string replace -r '^[^.]*' '' $p[2])
+ ln -sf "$base-$mode$ext" "$dir/$p[2]"
+ end
+end
+
+# --- Runtime reloads ---
+
+# Tmux: handled natively by client-dark-theme/client-light-theme hooks in tmux.conf
+
+# Neovim: update background on all running instances
+if type -q nvim
+ set -l bg (test "$mode" = light && echo light || echo dark)
+ for sock in (find /var/folders /tmp -path "*/nvim.*/nvim.*" -type s 2>/dev/null)
+ nvim --server "$sock" --remote-send "set background=$bg" 2>/dev/null
+ end
+end
+
+# Fish: theme detection handled natively by fish 4.x via $fish_terminal_color_theme
+
+echo "Theme switched to $mode"
diff --git a/scripts/theme-watcher.swift b/scripts/theme-watcher.swift
new file mode 100644
index 0000000..2169a2d
--- /dev/null
+++ b/scripts/theme-watcher.swift
@@ -0,0 +1,57 @@
+import Foundation
+
+/// Watches for macOS appearance changes by polling AppleInterfaceStyle.
+/// Polls every 2 seconds (negligible CPU) and calls switch-theme.fish on change.
+
+let binDir = (CommandLine.arguments[0] as NSString).deletingLastPathComponent
+let scriptPath = (binDir as NSString).appendingPathComponent("switch-theme.fish")
+
+func currentMode() -> String {
+ let style = UserDefaults.standard.string(forKey: "AppleInterfaceStyle")
+ return (style == "Dark") ? "dark" : "light"
+}
+
+func switchTheme(to mode: String) {
+ let timestamp = ISO8601DateFormatter().string(from: Date())
+ print("\(timestamp) Switching to \(mode)", terminator: "\n")
+ fflush(stdout)
+
+ let process = Process()
+ process.executableURL = URL(fileURLWithPath: "/opt/homebrew/bin/fish")
+ process.arguments = [scriptPath, mode]
+ var env = ProcessInfo.processInfo.environment
+ env["PATH"] = "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:" + (env["PATH"] ?? "")
+ process.environment = env
+
+ let pipe = Pipe()
+ process.standardOutput = pipe
+ process.standardError = pipe
+
+ do {
+ try process.run()
+ process.waitUntilExit()
+ let data = pipe.fileHandleForReading.readDataToEndOfFile()
+ if let output = String(data: data, encoding: .utf8), !output.isEmpty {
+ print("\(timestamp) \(output)", terminator: "")
+ fflush(stdout)
+ }
+ } catch {
+ FileHandle.standardError.write(Data("\(timestamp) Error: \(error)\n".utf8))
+ }
+}
+
+// Initial switch
+var lastMode = currentMode()
+switchTheme(to: lastMode)
+
+// Poll every 2 seconds
+while true {
+ Thread.sleep(forTimeInterval: 2.0)
+ // Force UserDefaults to re-read from disk
+ UserDefaults.standard.synchronize()
+ let mode = currentMode()
+ if mode != lastMode {
+ switchTheme(to: mode)
+ lastMode = mode
+ }
+}
diff --git a/tmux/catppuccin-reset.conf b/tmux/catppuccin-reset.conf
new file mode 100644
index 0000000..69d43a4
--- /dev/null
+++ b/tmux/catppuccin-reset.conf
@@ -0,0 +1,106 @@
+# catppuccin-reset.conf โ Unset all catppuccin theme variables so the plugin
+# can cleanly re-apply with a new flavor. Source this before changing
+# @catppuccin_flavor and re-running catppuccin.tmux.
+#
+# Based on catppuccin/tmux PR #500 and issue #426 workaround.
+# When PR #500 merges, this file can be replaced with:
+# set -g @catppuccin_reset "true"
+
+# Theme colors
+set -Ugq @thm_bg
+set -Ugq @thm_fg
+set -Ugq @thm_rosewater
+set -Ugq @thm_flamingo
+set -Ugq @thm_pink
+set -Ugq @thm_mauve
+set -Ugq @thm_red
+set -Ugq @thm_maroon
+set -Ugq @thm_peach
+set -Ugq @thm_yellow
+set -Ugq @thm_green
+set -Ugq @thm_teal
+set -Ugq @thm_sky
+set -Ugq @thm_sapphire
+set -Ugq @thm_blue
+set -Ugq @thm_lavender
+set -Ugq @thm_subtext_1
+set -Ugq @thm_subtext_0
+set -Ugq @thm_overlay_2
+set -Ugq @thm_overlay_1
+set -Ugq @thm_overlay_0
+set -Ugq @thm_surface_2
+set -Ugq @thm_surface_1
+set -Ugq @thm_surface_0
+set -Ugq @thm_mantle
+set -Ugq @thm_crust
+
+# Window options
+set -Ugq @catppuccin_window_status_style
+set -Ugq @catppuccin_window_text_color
+set -Ugq @catppuccin_window_number_color
+set -Ugq @catppuccin_window_text
+set -Ugq @catppuccin_window_number
+set -Ugq @catppuccin_window_current_text_color
+set -Ugq @catppuccin_window_current_number_color
+set -Ugq @catppuccin_window_current_text
+set -Ugq @catppuccin_window_current_number
+set -Ugq @catppuccin_window_current_color
+set -Ugq @catppuccin_window_current_background
+set -Ugq @catppuccin_window_current_fill
+set -Ugq @catppuccin_window_default_color
+set -Ugq @catppuccin_window_default_background
+set -Ugq @catppuccin_window_default_fill
+set -Ugq @catppuccin_window_number_position
+set -Ugq @catppuccin_window_status
+set -Ugq @catppuccin_window_flags
+set -Ugq @catppuccin_window_flags_icon_last
+set -Ugq @catppuccin_window_flags_icon_current
+set -Ugq @catppuccin_window_flags_icon_zoom
+set -Ugq @catppuccin_window_flags_icon_mark
+set -Ugq @catppuccin_window_flags_icon_silent
+set -Ugq @catppuccin_window_flags_icon_activity
+set -Ugq @catppuccin_window_flags_icon_bell
+set -Ugq @catppuccin_window_flags_icon_format
+set -Ugq @catppuccin_window_left_separator
+set -Ugq @catppuccin_window_middle_separator
+set -Ugq @catppuccin_window_right_separator
+set -Ugq @catppuccin_window_current_left_separator
+set -Ugq @catppuccin_window_current_middle_separator
+set -Ugq @catppuccin_window_current_right_separator
+
+# Status options
+set -Ugq @catppuccin_status_left_separator
+set -Ugq @catppuccin_status_middle_separator
+set -Ugq @catppuccin_status_right_separator
+set -Ugq @catppuccin_status_connect_separator
+set -Ugq @catppuccin_status_module_text_bg
+set -Ugq @catppuccin_status_module_bg_color
+set -Ugq @catppuccin_status_background
+
+# Internal variables
+set -Ugq @_ctp_connect_style
+set -Ugq @_ctp_module_text_bg
+set -Ugq @_ctp_p_left
+set -Ugq @_ctp_p_middle
+set -Ugq @_ctp_p_number
+set -Ugq @_ctp_p_right
+set -Ugq @_ctp_p_text
+set -Ugq @_ctp_status_bg
+set -Ugq @_ctp_w_flags
+set -Ugq @_ctp_w_number_style
+set -Ugq @_ctp_w_text_style
+
+# Pane options
+set -Ugq @catppuccin_pane_status_enabled
+set -Ugq @catppuccin_pane_border_status
+set -Ugq @catppuccin_pane_border_style
+set -Ugq @catppuccin_pane_active_border_style
+set -Ugq @catppuccin_pane_color
+set -Ugq @catppuccin_pane_background_color
+
+# Status module icon/text/color for all loaded modules
+set -Ugq @catppuccin_status_application
+set -Ugq @catppuccin_status_session
+set -Ugq @catppuccin_status_battery
+set -Ugq @catppuccin_status_outdated_packages
+set -Ugq @catppuccin_status_ctp_speedtest
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index c0f6944..e9e1930 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -56,8 +56,24 @@ set -g @plugin 'tmux-plugins/tmux-pain-control'
set-option -g @pane_resize "10"
set -g @plugin 'christoomey/vim-tmux-navigator'
+set -g @catppuccin_flavor "mocha"
set -g @plugin 'catppuccin/tmux'
+# Auto-switch catppuccin flavor when terminal appearance changes (tmux 3.6+)
+# Ghostty reports dark/light mode to tmux, which fires these hooks.
+set-hook -g client-dark-theme {
+ source-file ~/.config/tmux/catppuccin-reset.conf
+ set -g @catppuccin_flavor "mocha"
+ run ~/.config/tmux/plugins/tmux/catppuccin.tmux
+ source-file ~/.config/tmux/post-catppuccin.conf
+}
+set-hook -g client-light-theme {
+ source-file ~/.config/tmux/catppuccin-reset.conf
+ set -g @catppuccin_flavor "mocha"
+ run ~/.config/tmux/plugins/tmux/catppuccin.tmux
+ source-file ~/.config/tmux/post-catppuccin.conf
+}
+
set -g @plugin 'joshmedeski/tmux-nerd-font-window-name'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'alexwforsythe/tmux-which-key'
diff --git a/yazi/flavors/catppuccin-latte.yazi/flavor.toml b/yazi/flavors/catppuccin-latte.yazi/flavor.toml
new file mode 100644
index 0000000..b05ca22
--- /dev/null
+++ b/yazi/flavors/catppuccin-latte.yazi/flavor.toml
@@ -0,0 +1,697 @@
+[manager]
+cwd = { fg = "#179299" }
+
+# Hovered
+hovered = { fg = "#eff1f5", bg = "#1e66f5" }
+preview_hovered = { underline = true }
+
+# Find
+find_keyword = { fg = "#df8e1d", italic = true }
+find_position = { fg = "#ea76cb", bg = "reset", italic = true }
+
+# Marker
+marker_copied = { fg = "#40a02b", bg = "#40a02b" }
+marker_cut = { fg = "#d20f39", bg = "#d20f39" }
+marker_selected = { fg = "#1e66f5", bg = "#1e66f5" }
+
+# Tab
+tab_active = { fg = "#eff1f5", bg = "#4c4f69" }
+tab_inactive = { fg = "#4c4f69", bg = "#bcc0cc" }
+tab_width = 1
+
+# Count
+count_copied = { fg = "#eff1f5", bg = "#40a02b" }
+count_cut = { fg = "#eff1f5", bg = "#d20f39" }
+count_selected = { fg = "#eff1f5", bg = "#1e66f5" }
+
+# Border
+border_symbol = "โ"
+border_style = { fg = "#8c8fa1" }
+
+# Highlighting
+
+[status]
+separator_open = "๎ถ"
+separator_close = "๎ด"
+separator_style = { fg = "#bcc0cc", bg = "#bcc0cc" }
+
+# Mode
+mode_normal = { fg = "#eff1f5", bg = "#1e66f5", bold = true }
+mode_select = { fg = "#eff1f5", bg = "#40a02b", bold = true }
+mode_unset = { fg = "#eff1f5", bg = "#dd7878", bold = true }
+
+# Progress
+progress_label = { fg = "#ffffff", bold = true }
+progress_normal = { fg = "#1e66f5", bg = "#bcc0cc" }
+progress_error = { fg = "#d20f39", bg = "#bcc0cc" }
+
+# Permissions
+permissions_t = { fg = "#1e66f5" }
+permissions_r = { fg = "#df8e1d" }
+permissions_w = { fg = "#d20f39" }
+permissions_x = { fg = "#40a02b" }
+permissions_s = { fg = "#8c8fa1" }
+
+[input]
+border = { fg = "#1e66f5" }
+title = {}
+value = {}
+selected = { reversed = true }
+
+[select]
+border = { fg = "#1e66f5" }
+active = { fg = "#ea76cb" }
+inactive = {}
+
+[tasks]
+border = { fg = "#1e66f5" }
+title = {}
+hovered = { underline = true }
+
+[which]
+mask = { bg = "#ccd0da" }
+cand = { fg = "#179299" }
+rest = { fg = "#7c7f93" }
+desc = { fg = "#ea76cb" }
+separator = " ๎ช "
+separator_style = { fg = "#acb0be" }
+
+[help]
+on = { fg = "#ea76cb" }
+exec = { fg = "#179299" }
+desc = { fg = "#7c7f93" }
+hovered = { bg = "#acb0be", bold = true }
+footer = { fg = "#bcc0cc", bg = "#4c4f69" }
+
+[filetype]
+
+rules = [
+ # Media
+ { mime = "image/*", fg = "#179299" },
+ { mime = "{audio,video}/*", fg = "#df8e1d" },
+
+ # Archives
+ { mime = "application/{,g}zip", fg = "#ea76cb" },
+ { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#ea76cb" },
+
+ # Fallback
+ { name = "*", fg = "#4c4f69" },
+ { name = "*/", fg = "#1e66f5" }
+]
+
+[icon]
+
+files = [
+ { name = "gulpfile.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".babelrc", text = "๎น", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "copying.lesser", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = ".npmrc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "docker-compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "svelte.config.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "copying", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "prettier.config.ts", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gruntfile.babel.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".SRCINFO", text = "๓ฐฃ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".xinitrc", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "docker-compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "nuxt.config.ts", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "build", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".editorconfig", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "nuxt.config.mjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".gitlab-ci.yml", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "PKGBUILD", text = "๏", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".bash_profile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".bashrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "eslint.config.cjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "go.mod", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".mailmap", text = "๓ฐข", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gtkrc", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "go.work", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "kritadisplayrc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "commitlint.config.js", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = ".env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "PrusaSlicerGcodeViewer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = ".gitignore", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "tailwind.config.js", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc.yml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".zprofile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".zshenv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "xmonad.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".eslintignore", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "tsconfig.json", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc.json5", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".ds_store", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "gulpfile.coffee", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "R", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = ".zshrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".prettierrc.toml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".xsession", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = ".gitconfig", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gradle-wrapper.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "ionic.config.json", text = "๎ฉ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "cantorrc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".gleam", text = "๏
", fg_dark = "#f5c2e7", fg_light = "#f5c2e7" },
+ { name = "package-lock.json", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "package.json", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "hyprland.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "gulpfile.babel.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".nvmrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".prettierignore", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "ext_typoscript_setup.txt", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "QtProject.conf", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "avif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mix.lock", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "build.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gemfile$", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = ".vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "i18n.config.ts", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "gulpfile.ts", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "build.zig.zon", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "checkhealth", text = "๓ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "xmobarrc", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "_vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".luaurc", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdenlive-layoutsrc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gradlew", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "xsettingsd.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "vlcrc", text = "๓ฐผ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "xorg.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "xmobarrc.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "workspace", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".gitattributes", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "favicon.ico", text = "๎ฃ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "go.sum", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pom.xml", text = "๎ด", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "vagrantfile$", text = "๏ธ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "unlicense", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tmux.conf.local", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "settings.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = ".dockerignore", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "sym-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "_gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kdenliverc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdeglobals", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".prettierrc.yaml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "tailwind.config.mjs", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sxhkdrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "robots.txt", text = "๓ฐฉ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "tailwind.config.ts", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "prettier.config.mjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "mpv.conf", text = "๏ฎ", fg_dark = "#1e1e2e", fg_light = "#1e1e2e" },
+ { name = "py.typed", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "PrusaSlicer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "procfile", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rakefile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "kritarc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = ".Xresources", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "prettier.config.js", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "commitlint.config.ts", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "weston.ini", text = "๏ง", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "eslint.config.js", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cmakelists.txt", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = ".git-blame-ignore-revs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "config", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "nuxt.config.cjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "node_modules", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "lxqt.conf", text = "๏ค", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i18n.config.js", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "FreeCAD.conf", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "prettier.config.cjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "tmux.conf", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kalgebrarc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i3status.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = ".settings.json", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "containerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i3blocks.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "lxde-rc.xml", text = "๏ฃ", fg_dark = "#9399b2", fg_light = "#9399b2" },
+ { name = "gradle.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hypridle.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "gruntfile.ts", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gruntfile.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "groovy", text = "๎ต", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hyprlock.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "commit_editmsg", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fp-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "fp-info-cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "eslint.config.ts", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nuxt.config.js", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "platformio.ini", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".nuxtrc", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "gruntfile.coffee", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "eslint.config.mjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "bspwmrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "brewfile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = ".eslintrc", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = ".gtkrc-2.0", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = ".Xauthority", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".prettierrc.json", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".npmignore", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".gitmodules", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+]
+exts = [
+ { name = "rake", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "skp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "eln", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "razor", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "vue", text = "๎ ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sln", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "el", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "blp", text = "๓ฐบพ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "jl", text = "๎ค", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mdx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "jsx", text = "๎ฅ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "ml", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "less", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "pot", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pl", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mli", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "aif", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cxxm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fcbak", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "aac", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "query", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "android", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "m3u8", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "leex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "liquid", text = "๎ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "cue", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "fcmacro", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "log", text = "๓ฐฑ", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "pm", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "brep", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "blend", text = "๓ฐซ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "md5", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sql", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "xcplayground", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "erb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "t", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "x", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "import", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "m", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "lrc", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "o", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "d", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "c", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "h", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rss", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "hbs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "godot", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "eot", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "awk", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "fsx", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "a", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "pyi", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "asc", text = "๓ฐฆ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ass", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "css", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "psb", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "csproj", text = "๓ฐชฎ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "csv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "gcode", text = "๓ฐซ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ics", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "mk", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "bz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fctb", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "gz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "wasm", text = "๎ก", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "glb", text = "๏ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "elc", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "flf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "elf", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "dropbox", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "tres", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "apk", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ape", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "slvs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "apl", text = "โ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cs", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "azcli", text = "๎ฏจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "pp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "flc", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "gemspec", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "pls", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "cfg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fcscript", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "zst", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "pxi", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "woff2", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "kicad_pcb", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "zsh", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kicad_wks", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "info", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cppm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "svg", text = "๓ฐก", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "flac", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "cuh", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "bin", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "zig", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "yml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "yaml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fsscript", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "diff", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "mojo", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cshtml", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "bak", text = "๓ฐฏ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "nfo", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "bat", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "cpy", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "c++", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "lff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "obj", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sha512", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "scm", text = "๓ฐง", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "aiff", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sig", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "webm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "zip", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "wrz", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "jwmrc", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "xml", text = "๓ฐ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cbl", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xaml", text = "๓ฐณ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "xm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "wvc", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "drl", text = "๎", fg_dark = "#eba0ac", fg_light = "#eba0ac" },
+ { name = "erl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "3gp", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ccm", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ino", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kbx", text = "๓ฐฏ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "test.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "wrl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "pcm", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "woff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "scala", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "hrl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "kra", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "kicad_pro", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "bazel", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "toml", text = "๎ฒ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "iges", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "crdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "so", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "strings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xls", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "wav", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "vsix", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "kicad_prl", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "mov", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bash", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sqlite3", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "vsh", text = "๎ฌ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "vim", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "lck", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
+ { name = "go", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pyo", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "vhdl", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "vhd", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "rar", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "magnet", text = "๏ถ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "vala", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "coffee", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "kdbx", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "po", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "v", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "prisma", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "f90", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "txt", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "mo", text = "โ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mp4", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cljc", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "heex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "exs", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "clj", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "luau", text = "๎ ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "fcparam", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "markdown", text = "๎", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "dxf", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "luac", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "desktop", text = "๏", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "docx", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cljd", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "txz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bicepparam", text = "๎ป", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "kt", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "fcstd", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "md", text = "๏", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "edn", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sub", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ttf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "tsx", text = "๎บ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hurl", text = "๏ฌ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "dll", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
+ { name = "lhs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "tsconfig", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "msf", text = "๏ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "ts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "rproj", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "org", text = "๎ณ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "signature", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "elm", text = "๎ฌ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pyc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tmux", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "tgz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "nu", text = ">", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "tfvars", text = "๏
", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "lua", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "astro", text = "๎ณ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "lib", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
+ { name = "tex", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "ogg", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "stp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sublime", text = "๎ช", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "test.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nswag", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "test.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "test.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "dwg", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "bib", text = "๓ฑ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "sass", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "templ", text = "๎ซ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tcl", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "pck", text = "๏", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "swift", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xcstrings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "slim", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "iso", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "fsi", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "dart", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nix", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "svelte", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "sv", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "bz2", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "sha256", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "twig", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "material", text = "๓ฐ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ppt", text = "๓ฐง", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "pyd", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "step", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "hx", text = "๎ฆ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "webmanifest", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "kicad_sch", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "cjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "stl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "ejs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ssa", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "jsonc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "download", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "ige", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sqlite", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "psd1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "dump", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "resi", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "spec.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fnl", text = "๎ฏ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cu", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "scss", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "config.ru", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "psd", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "db", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "epub", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "haml", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "sol", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sml", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "svh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sldprt", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ico", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "xlsx", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "rs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "dconf", text = "๏ก", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "bz3", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fdmdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "fs", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "patch", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "hs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xcf", text = "๏ธ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "js", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "pyw", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "sha384", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fcmat", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "csh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "suo", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "sha224", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sha1", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cr", text = "๎ฏ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "huff", text = "๓ฐก", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "sh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "sc", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ksh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "wma", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mp3", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "conf", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "3mf", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sbt", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "kicad_mod", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "terminal", text = "๏", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "rlib", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "pdf", text = "๎ซซ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "mts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kdenlive", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kts", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "spec.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "res", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "hxx", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "vh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ixx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cson", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "7z", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "qss", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "app", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "jxl", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "qrc", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "qml", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "epp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "otf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "hh", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "qm", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pro", text = "๎ก", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "exe", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "kdenlivetitle", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdb", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "mpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "Dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "bqn", text = "โ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "torrent", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "m3u", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "py", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "pxd", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "f3d", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "out", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "spec.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kicad_dru", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "ps1", text = "๓ฐจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ui", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "styl", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "f#", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "png", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "ply", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "php", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "eex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "tbc", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "part", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "pub", text = "๓ฐท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ipynb", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "opus", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "git", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bmp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "blade.php", text = "๏ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "nim", text = "๎ท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "xpi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "mustache", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "tscn", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "scad", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ai", text = "๎ด", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "hex", text = "๎ง", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "hpp", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xul", text = "๎
", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "mobi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fcstd1", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ical", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "icalendar", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "bicep", text = "๎ป", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mkv", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "graphql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "mjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "mint", text = "๓ฐช", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "m4v", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "m4a", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "tf", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gv", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "lock", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
+ { name = "krz", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "kpp", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "ko", text = "๏
ผ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "kicad_sym", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "psm1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "pyx", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "json5", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "json", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "bzl", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ifb", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "image", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "jpg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "jpeg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "java", text = "๎ธ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "wv", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "ini", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cast", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fctl", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ifc", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sldasm", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "html", text = "๎ถ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "typoscript", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "๐ฅ", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "htm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ste", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "spec.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "gresource", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "ebook", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gd", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fish", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "igs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "fbx", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "srt", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "dot", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "doc", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "d.ts", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "applescript", text = "๏
น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cxx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "img", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "cljs", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cobol", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cob", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cmake", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "webp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+]
diff --git a/yazi/flavors/catppuccin-latte.yazi/tmtheme.xml b/yazi/flavors/catppuccin-latte.yazi/tmtheme.xml
new file mode 100644
index 0000000..6f23c16
--- /dev/null
+++ b/yazi/flavors/catppuccin-latte.yazi/tmtheme.xml
@@ -0,0 +1,959 @@
+
+
+
+
+ name
+ Catppuccin
+ settings
+
+
+ settings
+
+ foreground
+ #4c4f69
+ background
+ #eff1f5
+ caret
+ #5c5f77
+ invisibles
+ #6c6f85
+ gutterForeground
+ #7c7f93
+ gutterForegroundHighlight
+ #40a02b
+ lineHighlight
+ #acb0be
+ selection
+ #9ca0b0
+ selectionBorder
+ #eff1f5
+ activeGuide
+ #fe640b
+ findHighlightForeground
+ #e6e9ef
+ findHighlight
+ #df8e1d
+ bracketsForeground
+ #7c7f93
+ bracketContentsForeground
+ #7c7f93
+
+
+
+ name
+ Comment
+ scope
+ comment
+ settings
+
+ foreground
+ #9ca0b0
+ fontStyle
+ italic
+
+
+
+ name
+ String
+ scope
+ string
+ settings
+
+ foreground
+ #40a02b
+ fontStyle
+
+
+
+
+ name
+ String regex
+ scope
+ string.regexp
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+
+
+
+
+ name
+ Number
+ scope
+ constant.numeric
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+
+
+
+
+ name
+ Boolean
+ scope
+ constant.language.boolean
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+ bold italic
+
+
+
+ name
+ Built-in constant
+ scope
+ constant.language
+ settings
+
+ foreground
+ #7287fd
+ fontStyle
+ italic
+
+
+
+ name
+ Built-in function
+ scope
+ support.function.builtin
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+ italic
+
+
+
+ name
+ User-defined constant
+ scope
+ variable.other.constant
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+
+
+
+
+ name
+ Variable
+ scope
+ variable
+ settings
+
+
+
+ name
+ Keyword
+ scope
+ keyword
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+ italic
+
+
+
+ name
+ Conditional/loop
+ scope
+ keyword.control.loop, keyword.control.conditional, keyword.control.c++
+ settings
+
+ foreground
+ #8839ef
+ fontStyle
+ bold
+
+
+
+ name
+ Return
+ scope
+ keyword.control.return, keyword.control.flow.return
+ settings
+
+ foreground
+ #ea76cb
+ fontStyle
+ bold
+
+
+
+ name
+ Exception
+ scope
+ support.type.exception
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+ italic
+
+
+
+ name
+ Operator
+ scope
+ keyword.operator, punctuation.accessor
+ settings
+
+ foreground
+ #04a5e5
+ fontStyle
+ bold
+
+
+
+ name
+ Punctuation separator
+ scope
+ punctuation.separator
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ Punctuation terminator
+ scope
+ punctuation.terminator
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ Punctuation bracket
+ scope
+ punctuation.section
+ settings
+
+ foreground
+ #7c7f93
+ fontStyle
+
+
+
+
+ name
+ Include
+ scope
+ keyword.control.import.include
+ settings
+
+ foreground
+ #179299
+ fontStyle
+ italic
+
+
+
+ name
+ Storage
+ scope
+ storage
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Storage type
+ scope
+ storage.type
+ settings
+
+ foreground
+ #df8e1d
+ fontStyle
+ italic
+
+
+
+ name
+ Storage modifier
+ scope
+ storage.modifier
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Storage type namespace
+ scope
+ entity.name.namespace, meta.path
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+ italic
+
+
+
+ name
+ Storage type class
+ scope
+ storage.type.class
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+ italic
+
+
+
+ name
+ Label
+ scope
+ entity.name.label
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+
+
+
+
+ name
+ Keyword class
+ scope
+ keyword.declaration.class
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+ italic
+
+
+
+ name
+ Class name
+ scope
+ entity.name.class, meta.toc-list.full-identifier
+ settings
+
+ foreground
+ #04a5e5
+ fontStyle
+
+
+
+
+ name
+ Inherited class
+ scope
+ entity.other.inherited-class
+ settings
+
+ foreground
+ #04a5e5
+ fontStyle
+ italic
+
+
+
+ name
+ Function name
+ scope
+ entity.name.function, variable.function
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+ italic
+
+
+
+ name
+ Function macro
+ scope
+ entity.name.function.preprocessor
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Macro directive - ifdef
+ scope
+ keyword.control.import
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Constructor
+ scope
+ entity.name.function.constructor, entity.name.function.destructor
+ settings
+
+ foreground
+ #7287fd
+ fontStyle
+
+
+
+
+ name
+ Function argument
+ scope
+ variable.parameter.function
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+ italic
+
+
+
+ name
+ Function declaration
+ scope
+ keyword.declaration.function
+ settings
+
+ foreground
+ #e64553
+ fontStyle
+ italic
+
+
+
+ name
+ Library function
+ scope
+ support.function
+ settings
+
+ foreground
+ #04a5e5
+ fontStyle
+
+
+
+
+ name
+ Library constant
+ scope
+ support.constant
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+
+
+
+
+ name
+ Library class/type
+ scope
+ support.type, support.class
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+ italic
+
+
+
+ name
+ Library variable
+ scope
+ support.other.variable
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Variable function
+ scope
+ variable.function
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+ italic
+
+
+
+ name
+ Variable parameter
+ scope
+ variable.parameter
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+ italic
+
+
+
+ name
+ Variable other
+ scope
+ variable.other
+ settings
+
+ foreground
+ #4c4f69
+ fontStyle
+ italic
+
+
+
+ name
+ Variable field
+ scope
+ variable.other.member
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+
+
+
+
+ name
+ Variable language
+ scope
+ variable.language
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ Tag name
+ scope
+ entity.name.tag
+ settings
+
+ foreground
+ #fe640b
+ fontStyle
+
+
+
+
+ name
+ Tag attribute
+ scope
+ entity.other.attribute-name
+ settings
+
+ foreground
+ #8839ef
+ fontStyle
+ italic
+
+
+
+ name
+ Tag delimiter
+ scope
+ punctuation.definition.tag
+ settings
+
+ foreground
+ #e64553
+ fontStyle
+
+
+
+
+ name
+ Markdown URL
+ scope
+ markup.underline.link.markdown
+ settings
+
+ foreground
+ #dc8a78
+ fontStyle
+ italic underline
+
+
+
+ name
+ Markdown reference
+ scope
+ meta.link.inline.description
+ settings
+
+ foreground
+ #7287fd
+ fontStyle
+ bold
+
+
+
+ name
+ Markdown literal
+ scope
+ comment.block.markdown, meta.code-fence, markup.raw.code-fence, markup.raw.inline
+ settings
+
+ foreground
+ #179299
+ fontStyle
+ italic
+
+
+
+ name
+ Markdown title
+ scope
+ punctuation.definition.heading, entity.name.section
+ settings
+
+ foreground
+ #1e66f5
+ fontStyle
+ bold
+
+
+
+ name
+ Markdown emphasis
+ scope
+ markup.italic
+ settings
+
+ foreground
+ #e64553
+ fontStyle
+ italic
+
+
+
+ name
+ Markdown strong
+ scope
+ markup.bold
+ settings
+
+ foreground
+ #e64553
+ fontStyle
+ bold
+
+
+
+ name
+ Escape
+ scope
+ constant.character.escape
+ settings
+
+ foreground
+ #ea76cb
+ fontStyle
+
+
+
+
+ name
+ Bash built-in function
+ scope
+ source.shell.bash meta.function.shell meta.compound.shell meta.function-call.identifier.shell
+ settings
+
+ foreground
+ #ea76cb
+ fontStyle
+
+
+
+
+ name
+ Bash parameter
+ scope
+ variable.language.shell
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+ italic
+
+
+
+ name
+ Lua field
+ scope
+ source.lua meta.function.lua meta.block.lua meta.mapping.value.lua meta.mapping.key.lua string.unquoted.key.lua
+ settings
+
+ foreground
+ #7287fd
+ fontStyle
+ italic
+
+
+
+ name
+ Lua constructor
+ scope
+ source.lua meta.function.lua meta.block.lua meta.mapping.key.lua string.unquoted.key.lua
+ settings
+
+ foreground
+ #dd7878
+ fontStyle
+
+
+
+
+ name
+ Java constant
+ scope
+ entity.name.constant.java
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ CSS property
+ scope
+ support.type.property-name.css
+ settings
+
+ foreground
+ #dd7878
+ fontStyle
+ italic
+
+
+
+ name
+ CSS constant
+ scope
+ support.constant.property-value.css
+ settings
+
+ foreground
+ #4c4f69
+ fontStyle
+
+
+
+
+ name
+ CSS suffix
+ scope
+ constant.numeric.suffix.css, keyword.other.unit.css
+ settings
+
+ foreground
+ #179299
+ fontStyle
+ italic
+
+
+
+ name
+ CSS variable property
+ scope
+ variable.other.custom-property.name.css, support.type.custom-property.name.css, punctuation.definition.custom-property.css
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ SCSS tag
+ scope
+ entity.name.tag.css
+ settings
+
+ foreground
+ #7287fd
+ fontStyle
+
+
+
+
+ name
+ SASS variable
+ scope
+ variable.other.sass
+ settings
+
+ foreground
+ #179299
+ fontStyle
+
+
+
+
+ name
+ Invalid
+ scope
+ invalid
+ settings
+
+ foreground
+ #4c4f69
+ background
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Invalid deprecated
+ scope
+ invalid.deprecated
+ settings
+
+ foreground
+ #4c4f69
+ background
+ #8839ef
+ fontStyle
+
+
+
+
+ name
+ Diff header
+ scope
+ meta.diff, meta.diff.header
+ settings
+
+ foreground
+ #9ca0b0
+ fontStyle
+
+
+
+
+ name
+ Diff deleted
+ scope
+ markup.deleted
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ name
+ Diff inserted
+ scope
+ markup.inserted
+ settings
+
+ foreground
+ #40a02b
+ fontStyle
+
+
+
+
+ name
+ Diff changed
+ scope
+ markup.changed
+ settings
+
+ foreground
+ #df8e1d
+ fontStyle
+
+
+
+
+ name
+ Message error
+ scope
+ message.error
+ settings
+
+ foreground
+ #d20f39
+ fontStyle
+
+
+
+
+ uuid
+ 4d0379b5-ef82-467b-b8b8-365889420646
+ colorSpaceName
+ sRGB
+ semanticClass
+ theme.dark.Catppuccin
+ author
+ BrunDerSchwarzmagier
+
+
diff --git a/yazi/flavors/catppuccin-mocha.yazi/flavor.toml b/yazi/flavors/catppuccin-mocha.yazi/flavor.toml
new file mode 100644
index 0000000..fb06386
--- /dev/null
+++ b/yazi/flavors/catppuccin-mocha.yazi/flavor.toml
@@ -0,0 +1,697 @@
+[manager]
+cwd = { fg = "#94e2d5" }
+
+# Hovered
+hovered = { fg = "#1e1e2e", bg = "#89b4fa" }
+preview_hovered = { underline = true }
+
+# Find
+find_keyword = { fg = "#f9e2af", italic = true }
+find_position = { fg = "#f5c2e7", bg = "reset", italic = true }
+
+# Marker
+marker_copied = { fg = "#a6e3a1", bg = "#a6e3a1" }
+marker_cut = { fg = "#f38ba8", bg = "#f38ba8" }
+marker_selected = { fg = "#89b4fa", bg = "#89b4fa" }
+
+# Tab
+tab_active = { fg = "#1e1e2e", bg = "#cdd6f4" }
+tab_inactive = { fg = "#cdd6f4", bg = "#45475a" }
+tab_width = 1
+
+# Count
+count_copied = { fg = "#1e1e2e", bg = "#a6e3a1" }
+count_cut = { fg = "#1e1e2e", bg = "#f38ba8" }
+count_selected = { fg = "#1e1e2e", bg = "#89b4fa" }
+
+# Border
+border_symbol = "โ"
+border_style = { fg = "#7f849c" }
+
+# Highlighting
+
+[status]
+separator_open = "๎ถ"
+separator_close = "๎ด"
+separator_style = { fg = "#45475a", bg = "#45475a" }
+
+# Mode
+mode_normal = { fg = "#1e1e2e", bg = "#89b4fa", bold = true }
+mode_select = { fg = "#1e1e2e", bg = "#a6e3a1", bold = true }
+mode_unset = { fg = "#1e1e2e", bg = "#f2cdcd", bold = true }
+
+# Progress
+progress_label = { fg = "#ffffff", bold = true }
+progress_normal = { fg = "#89b4fa", bg = "#45475a" }
+progress_error = { fg = "#f38ba8", bg = "#45475a" }
+
+# Permissions
+permissions_t = { fg = "#89b4fa" }
+permissions_r = { fg = "#f9e2af" }
+permissions_w = { fg = "#f38ba8" }
+permissions_x = { fg = "#a6e3a1" }
+permissions_s = { fg = "#7f849c" }
+
+[input]
+border = { fg = "#89b4fa" }
+title = {}
+value = {}
+selected = { reversed = true }
+
+[select]
+border = { fg = "#89b4fa" }
+active = { fg = "#f5c2e7" }
+inactive = {}
+
+[tasks]
+border = { fg = "#89b4fa" }
+title = {}
+hovered = { underline = true }
+
+[which]
+mask = { bg = "#313244" }
+cand = { fg = "#94e2d5" }
+rest = { fg = "#9399b2" }
+desc = { fg = "#f5c2e7" }
+separator = " ๎ช "
+separator_style = { fg = "#585b70" }
+
+[help]
+on = { fg = "#f5c2e7" }
+exec = { fg = "#94e2d5" }
+desc = { fg = "#9399b2" }
+hovered = { bg = "#585b70", bold = true }
+footer = { fg = "#45475a", bg = "#cdd6f4" }
+
+[filetype]
+
+rules = [
+ # Media
+ { mime = "image/*", fg = "#94e2d5" },
+ { mime = "{audio,video}/*", fg = "#f9e2af" },
+
+ # Archives
+ { mime = "application/{,g}zip", fg = "#f5c2e7" },
+ { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f5c2e7" },
+
+ # Fallback
+ { name = "*", fg = "#cdd6f4" },
+ { name = "*/", fg = "#89b4fa" }
+]
+
+[icon]
+
+files = [
+ { name = "gulpfile.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".babelrc", text = "๎น", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "copying.lesser", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = ".npmrc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "docker-compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "svelte.config.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "copying", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "prettier.config.ts", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gruntfile.babel.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".SRCINFO", text = "๓ฐฃ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".xinitrc", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "docker-compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "nuxt.config.ts", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "build", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".editorconfig", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "nuxt.config.mjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".gitlab-ci.yml", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "PKGBUILD", text = "๏", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".bash_profile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".bashrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "eslint.config.cjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "go.mod", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".mailmap", text = "๓ฐข", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gtkrc", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "go.work", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "kritadisplayrc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "commitlint.config.js", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = ".env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "PrusaSlicerGcodeViewer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = ".gitignore", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "tailwind.config.js", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc.yml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".zprofile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".zshenv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "xmonad.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".eslintignore", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "tsconfig.json", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc.json5", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".ds_store", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "gulpfile.coffee", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "R", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = ".zshrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".prettierrc.toml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".xsession", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = ".gitconfig", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gradle-wrapper.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "ionic.config.json", text = "๎ฉ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "cantorrc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".gleam", text = "๏
", fg_dark = "#f5c2e7", fg_light = "#f5c2e7" },
+ { name = "package-lock.json", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "package.json", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "hyprland.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "gulpfile.babel.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".nvmrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".prettierignore", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "ext_typoscript_setup.txt", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "QtProject.conf", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "avif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mix.lock", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "build.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gemfile$", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = ".vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "i18n.config.ts", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "gulpfile.ts", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "build.zig.zon", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "checkhealth", text = "๓ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "xmobarrc", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "_vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".luaurc", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdenlive-layoutsrc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gradlew", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "xsettingsd.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "vlcrc", text = "๓ฐผ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "xorg.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "xmobarrc.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "workspace", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = ".gitattributes", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "favicon.ico", text = "๎ฃ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "go.sum", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pom.xml", text = "๎ด", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "vagrantfile$", text = "๏ธ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "unlicense", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tmux.conf.local", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "settings.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = ".dockerignore", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "sym-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "_gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kdenliverc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdeglobals", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".prettierrc.yaml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "tailwind.config.mjs", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sxhkdrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "robots.txt", text = "๓ฐฉ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "tailwind.config.ts", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "prettier.config.mjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "mpv.conf", text = "๏ฎ", fg_dark = "#1e1e2e", fg_light = "#1e1e2e" },
+ { name = "py.typed", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "PrusaSlicer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "procfile", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rakefile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "kritarc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = ".Xresources", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "prettier.config.js", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "commitlint.config.ts", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "weston.ini", text = "๏ง", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "eslint.config.js", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cmakelists.txt", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = ".git-blame-ignore-revs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "config", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "nuxt.config.cjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "node_modules", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "lxqt.conf", text = "๏ค", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i18n.config.js", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "FreeCAD.conf", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "prettier.config.cjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "tmux.conf", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kalgebrarc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i3status.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = ".settings.json", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "containerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "i3blocks.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "lxde-rc.xml", text = "๏ฃ", fg_dark = "#9399b2", fg_light = "#9399b2" },
+ { name = "gradle.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hypridle.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "gruntfile.ts", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gruntfile.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "groovy", text = "๎ต", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hyprlock.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = ".prettierrc", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "commit_editmsg", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fp-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "fp-info-cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "eslint.config.ts", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nuxt.config.js", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "platformio.ini", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".nuxtrc", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "gruntfile.coffee", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "eslint.config.mjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "bspwmrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "brewfile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = ".eslintrc", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = ".gtkrc-2.0", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = ".Xauthority", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = ".prettierrc.json", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = ".npmignore", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = ".gitmodules", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+]
+exts = [
+ { name = "rake", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "skp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "eln", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "razor", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "vue", text = "๎ ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sln", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "el", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "blp", text = "๓ฐบพ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "jl", text = "๎ค", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mdx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "jsx", text = "๎ฅ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "ml", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "less", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "pot", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pl", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mli", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "aif", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cxxm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fcbak", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "aac", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "query", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "android", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "m3u8", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "leex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "liquid", text = "๎ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "cue", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "fcmacro", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "log", text = "๓ฐฑ", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "pm", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "brep", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "blend", text = "๓ฐซ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "md5", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sql", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "xcplayground", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "erb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "t", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "x", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "import", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "m", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "lrc", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "o", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "d", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "c", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "h", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rss", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "hbs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "godot", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "eot", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "awk", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "fsx", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "a", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "pyi", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "asc", text = "๓ฐฆ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ass", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "css", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "psb", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "csproj", text = "๓ฐชฎ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "csv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "gcode", text = "๓ฐซ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ics", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "mk", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "bz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fctb", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "gz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "wasm", text = "๎ก", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "glb", text = "๏ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "elc", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "flf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "elf", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "dropbox", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "tres", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "apk", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ape", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "slvs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "apl", text = "โ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cs", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "azcli", text = "๎ฏจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "pp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "flc", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "gemspec", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "pls", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "cfg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fcscript", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "zst", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "pxi", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "woff2", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "kicad_pcb", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "zsh", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "kicad_wks", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "info", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cppm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "svg", text = "๓ฐก", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "flac", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "cuh", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "bin", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "zig", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "yml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "yaml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fsscript", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "diff", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "mojo", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cshtml", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "bak", text = "๓ฐฏ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "nfo", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "bat", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "cpy", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "c++", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "lff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "obj", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sha512", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "scm", text = "๓ฐง", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "aiff", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sig", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "webm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "zip", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "wrz", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "jwmrc", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "xml", text = "๓ฐ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cbl", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xaml", text = "๓ฐณ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "xm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "wvc", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "drl", text = "๎", fg_dark = "#eba0ac", fg_light = "#eba0ac" },
+ { name = "erl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "3gp", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ccm", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ino", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kbx", text = "๓ฐฏ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "test.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "wrl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "pcm", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "woff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "scala", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "hrl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "kra", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "kicad_pro", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "bazel", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "toml", text = "๎ฒ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "iges", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "crdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "so", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "strings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "xls", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "wav", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "vsix", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "kicad_prl", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "mov", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bash", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sqlite3", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "vsh", text = "๎ฌ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "vim", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "lck", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
+ { name = "go", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pyo", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "vhdl", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "vhd", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "rar", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "magnet", text = "๏ถ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "vala", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "coffee", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "kdbx", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "po", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "v", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "prisma", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "f90", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "txt", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "mo", text = "โ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "mp4", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cljc", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "heex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "exs", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "clj", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "luau", text = "๎ ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "fcparam", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "markdown", text = "๎", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "dxf", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "luac", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "desktop", text = "๏", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "docx", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cljd", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "txz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bicepparam", text = "๎ป", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "kt", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "fcstd", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "md", text = "๏", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
+ { name = "edn", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sub", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ttf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "tsx", text = "๎บ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "hurl", text = "๏ฌ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "dll", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
+ { name = "lhs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "tsconfig", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "msf", text = "๏ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "ts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "rproj", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "org", text = "๎ณ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "signature", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "elm", text = "๎ฌ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pyc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tmux", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "tgz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "nu", text = ">", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "tfvars", text = "๏
", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "lua", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "astro", text = "๎ณ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "lib", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
+ { name = "tex", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "ogg", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "stp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sublime", text = "๎ช", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "test.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nswag", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "test.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "test.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "dwg", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "bib", text = "๓ฑ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "sass", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "templ", text = "๎ซ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "tcl", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "pck", text = "๏", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "swift", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xcstrings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "slim", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "iso", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "fsi", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "dart", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "nix", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "svelte", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "sv", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "bz2", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "sha256", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "twig", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "material", text = "๓ฐ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ppt", text = "๓ฐง", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "pyd", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "step", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "hx", text = "๎ฆ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "webmanifest", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "kicad_sch", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "cjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "stl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "ejs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ssa", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "jsonc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "download", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "ige", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sqlite", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "psd1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "dump", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "resi", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "spec.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fnl", text = "๎ฏ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cu", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "scss", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "config.ru", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "psd", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "db", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "epub", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "haml", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "sol", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "sml", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "svh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sldprt", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ico", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "xlsx", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "rs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "dconf", text = "๏ก", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "bz3", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fdmdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "fs", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "patch", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "hs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xcf", text = "๏ธ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "js", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "pyw", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "sha384", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fcmat", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "csh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "suo", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "sha224", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sha1", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cr", text = "๎ฏ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "huff", text = "๓ฐก", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "sh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "sc", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ksh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "wma", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mp3", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "conf", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "3mf", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "sbt", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "kicad_mod", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "terminal", text = "๏", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "rlib", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "pdf", text = "๎ซซ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "mts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kdenlive", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kts", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "spec.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "res", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "hxx", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "rb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "vh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ixx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cson", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "cts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "7z", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "qss", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "app", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "jxl", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "qrc", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "qml", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "epp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "otf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "hh", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "qm", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "pro", text = "๎ก", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "exe", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "kdenlivetitle", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "kdb", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "mpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "Dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "bqn", text = "โ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "torrent", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "m3u", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "py", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "pxd", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "f3d", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "out", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
+ { name = "spec.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "kicad_dru", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "ps1", text = "๓ฐจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "ui", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "styl", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "f#", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "png", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "ply", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "php", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "eex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "tbc", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "part", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
+ { name = "pub", text = "๓ฐท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ipynb", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "opus", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "git", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "bmp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "blade.php", text = "๏ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "nim", text = "๎ท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "xpi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "mustache", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "tscn", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "scad", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "ai", text = "๎ด", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "hex", text = "๎ง", fg_dark = "#6c7086", fg_light = "#6c7086" },
+ { name = "hpp", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "xul", text = "๎
", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "mobi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "fcstd1", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ical", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "icalendar", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "bicep", text = "๎ป", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "mkv", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "graphql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "mjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "mint", text = "๓ฐช", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "m4v", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "m4a", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "tf", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gv", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "lock", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
+ { name = "krz", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "kpp", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
+ { name = "ko", text = "๏
ผ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "kicad_sym", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "psm1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "pyx", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
+ { name = "json5", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "json", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "bzl", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "ifb", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
+ { name = "image", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "jpg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "jpeg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "java", text = "๎ธ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "wv", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "ini", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cast", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "cp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "fctl", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
+ { name = "ifc", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "sldasm", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "html", text = "๎ถ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "typoscript", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "๐ฅ", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "htm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "ste", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "spec.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "gresource", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
+ { name = "ebook", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "gd", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "fish", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "igs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
+ { name = "fbx", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "srt", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
+ { name = "dot", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "doc", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "d.ts", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
+ { name = "applescript", text = "๏
น", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "cxx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "img", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
+ { name = "cljs", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
+ { name = "cobol", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cob", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
+ { name = "cmake", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+ { name = "webp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
+]
diff --git a/yazi/flavors/catppuccin-mocha.yazi/tmtheme.xml b/yazi/flavors/catppuccin-mocha.yazi/tmtheme.xml
new file mode 100644
index 0000000..ff135ab
--- /dev/null
+++ b/yazi/flavors/catppuccin-mocha.yazi/tmtheme.xml
@@ -0,0 +1,2048 @@
+
+
+
+
+ name
+ Catppuccin Mocha
+ semanticClass
+ theme.dark.catppuccin-mocha
+ uuid
+ 627ce890-fabb-4d39-9819-7be71f4bdca7
+ author
+ Catppuccin Org
+ colorSpaceName
+ sRGB
+ settings
+
+
+ settings
+
+ background
+ #1e1e2e
+ foreground
+ #cdd6f4
+ caret
+ #f5e0dc
+ lineHighlight
+ #313244
+ misspelling
+ #f38ba8
+ accent
+ #cba6f7
+ selection
+ #9399b240
+ activeGuide
+ #45475a
+ findHighlight
+ #3e5767
+ gutterForeground
+ #7f849c
+
+
+
+ name
+ Basic text & variable names (incl. leading punctuation)
+ scope
+ text, source, variable.other.readwrite, punctuation.definition.variable
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Parentheses, Brackets, Braces
+ scope
+ punctuation
+ settings
+
+ foreground
+ #9399b2
+ fontStyle
+
+
+
+
+ name
+ Comments
+ scope
+ comment, punctuation.definition.comment
+ settings
+
+ foreground
+ #6c7086
+ fontStyle
+ italic
+
+
+
+ scope
+ string, punctuation.definition.string
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ scope
+ constant.character.escape
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Booleans, constants, numbers
+ scope
+ constant.numeric, variable.other.constant, entity.name.constant, constant.language.boolean, constant.language.false, constant.language.true, keyword.other.unit.user-defined, keyword.other.unit.suffix.floating-point
+ settings
+
+ foreground
+ #fab387
+
+
+
+ scope
+ keyword, keyword.operator.word, keyword.operator.new, variable.language.super, support.type.primitive, storage.type, storage.modifier, punctuation.definition.keyword
+ settings
+
+ foreground
+ #cba6f7
+ fontStyle
+
+
+
+
+ scope
+ entity.name.tag.documentation
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Punctuation
+ scope
+ keyword.operator, punctuation.accessor, punctuation.definition.generic, meta.function.closure punctuation.section.parameters, punctuation.definition.tag, punctuation.separator.key-value
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ scope
+ entity.name.function, meta.function-call.method, support.function, support.function.misc, variable.function
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+ italic
+
+
+
+ name
+ Classes
+ scope
+ entity.name.class, entity.other.inherited-class, support.class, meta.function-call.constructor, entity.name.struct
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Enum
+ scope
+ entity.name.enum
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Enum member
+ scope
+ meta.enum variable.other.readwrite, variable.other.enummember
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Object properties
+ scope
+ meta.property.object
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Types
+ scope
+ meta.type, meta.type-alias, support.type, entity.name.type
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Decorators
+ scope
+ meta.annotation variable.function, meta.annotation variable.annotation.function, meta.annotation punctuation.definition.annotation, meta.decorator, punctuation.decorator
+ settings
+
+ foreground
+ #fab387
+
+
+
+ scope
+ variable.parameter, meta.function.parameters
+ settings
+
+ foreground
+ #eba0ac
+ fontStyle
+ italic
+
+
+
+ name
+ Built-ins
+ scope
+ constant.language, support.function.builtin
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ scope
+ entity.other.attribute-name.documentation
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ Preprocessor directives
+ scope
+ keyword.control.directive, punctuation.definition.directive
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Type parameters
+ scope
+ punctuation.definition.typeparameters
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ Namespaces
+ scope
+ entity.name.namespace
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Property names (left hand assignments in json/yaml/css)
+ scope
+ support.type.property-name.css
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+
+
+
+
+ name
+ This/Self keyword
+ scope
+ variable.language.this, variable.language.this punctuation.definition.variable
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ Object properties
+ scope
+ variable.object.property
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ String template interpolation
+ scope
+ string.template variable, string variable
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ `new` as bold
+ scope
+ keyword.operator.new
+ settings
+
+ fontStyle
+ bold
+
+
+
+ name
+ C++ extern keyword
+ scope
+ storage.modifier.specifier.extern.cpp
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ C++ scope resolution
+ scope
+ entity.name.scope-resolution.template.call.cpp, entity.name.scope-resolution.parameter.cpp, entity.name.scope-resolution.cpp, entity.name.scope-resolution.function.definition.cpp
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ C++ doc keywords
+ scope
+ storage.type.class.doxygen
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ C++ operators
+ scope
+ storage.modifier.reference.cpp
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ C# Interpolated Strings
+ scope
+ meta.interpolation.cs
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ C# xml-style docs
+ scope
+ comment.block.documentation.cs
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Classes, reflecting the className color in JSX
+ scope
+ source.css entity.other.attribute-name.class.css, entity.other.attribute-name.parent-selector.css punctuation.definition.entity.css
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Operators
+ scope
+ punctuation.separator.operator.css
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Pseudo classes
+ scope
+ source.css entity.other.attribute-name.pseudo-class
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ scope
+ source.css constant.other.unicode-range
+ settings
+
+ foreground
+ #fab387
+
+
+
+ scope
+ source.css variable.parameter.url
+ settings
+
+ foreground
+ #a6e3a1
+ fontStyle
+
+
+
+
+ name
+ CSS vendored property names
+ scope
+ support.type.vendored.property-name
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ Less/SCSS right-hand variables (@/$-prefixed)
+ scope
+ source.css meta.property-value variable, source.css meta.property-value variable.other.less, source.css meta.property-value variable.other.less punctuation.definition.variable.less, meta.definition.variable.scss
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ CSS variables (--prefixed)
+ scope
+ source.css meta.property-list variable, meta.property-list variable.other.less, meta.property-list variable.other.less punctuation.definition.variable.less
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ CSS Percentage values, styled the same as numbers
+ scope
+ keyword.other.unit.percentage.css
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ CSS Attribute selectors, styled the same as strings
+ scope
+ source.css meta.attribute-selector
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ name
+ JSON/YAML keys, other left-hand assignments
+ scope
+ keyword.other.definition.ini, punctuation.support.type.property-name.json, support.type.property-name.json, punctuation.support.type.property-name.toml, support.type.property-name.toml, entity.name.tag.yaml, punctuation.support.type.property-name.yaml, support.type.property-name.yaml
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+
+
+
+
+ name
+ JSON/YAML constants
+ scope
+ constant.language.json, constant.language.yaml
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ YAML anchors
+ scope
+ entity.name.type.anchor.yaml, variable.other.alias.yaml
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+
+
+
+
+ name
+ TOML tables / ini groups
+ scope
+ support.type.property-name.table, entity.name.section.group-title.ini
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ TOML dates
+ scope
+ constant.other.time.datetime.offset.toml
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ YAML anchor puctuation
+ scope
+ punctuation.definition.anchor.yaml, punctuation.definition.alias.yaml
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ YAML triple dashes
+ scope
+ entity.other.document.begin.yaml
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Markup Diff
+ scope
+ markup.changed.diff
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Diff
+ scope
+ meta.diff.header.from-file, meta.diff.header.to-file, punctuation.definition.from-file.diff, punctuation.definition.to-file.diff
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ Diff Inserted
+ scope
+ markup.inserted.diff
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ name
+ Diff Deleted
+ scope
+ markup.deleted.diff
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ dotenv left-hand side assignments
+ scope
+ variable.other.env
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ dotenv reference to existing env variable
+ scope
+ string.quoted variable.other.env
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ GDScript functions
+ scope
+ support.function.builtin.gdscript
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ GDScript constants
+ scope
+ constant.language.gdscript
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Comment keywords
+ scope
+ comment meta.annotation.go
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ go:embed, go:build, etc.
+ scope
+ comment meta.annotation.parameters.go
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Go constants (nil, true, false)
+ scope
+ constant.language.go
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ GraphQL variables
+ scope
+ variable.graphql
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ GraphQL aliases
+ scope
+ string.unquoted.alias.graphql
+ settings
+
+ foreground
+ #f2cdcd
+
+
+
+ name
+ GraphQL enum members
+ scope
+ constant.character.enum.graphql
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ GraphQL field in types
+ scope
+ meta.objectvalues.graphql constant.object.key.graphql string.unquoted.graphql
+ settings
+
+ foreground
+ #f2cdcd
+
+
+
+ name
+ HTML/XML DOCTYPE as keyword
+ scope
+ keyword.other.doctype, meta.tag.sgml.doctype punctuation.definition.tag, meta.tag.metadata.doctype entity.name.tag, meta.tag.metadata.doctype punctuation.definition.tag
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ HTML/XML-like <tags/>
+ scope
+ entity.name.tag
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+
+
+
+
+ name
+ Special characters like &
+ scope
+ text.html constant.character.entity, text.html constant.character.entity punctuation, constant.character.entity.xml, constant.character.entity.xml punctuation, constant.character.entity.js.jsx, constant.charactger.entity.js.jsx punctuation, constant.character.entity.tsx, constant.character.entity.tsx punctuation
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ HTML/XML tag attribute values
+ scope
+ entity.other.attribute-name
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Components
+ scope
+ support.class.component, support.class.component.jsx, support.class.component.tsx, support.class.component.vue
+ settings
+
+ foreground
+ #f5c2e7
+ fontStyle
+
+
+
+
+ name
+ Annotations
+ scope
+ punctuation.definition.annotation, storage.type.annotation
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Java enums
+ scope
+ constant.other.enum.java
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Java imports
+ scope
+ storage.modifier.import.java
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Javadoc
+ scope
+ comment.block.javadoc.java keyword.other.documentation.javadoc.java
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Exported Variable
+ scope
+ meta.export variable.other.readwrite.js
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ JS/TS constants & properties
+ scope
+ variable.other.constant.js, variable.other.constant.ts, variable.other.property.js, variable.other.property.ts
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ JSDoc; these are mainly params, so styled as such
+ scope
+ variable.other.jsdoc, comment.block.documentation variable.other
+ settings
+
+ foreground
+ #eba0ac
+ fontStyle
+
+
+
+
+ name
+ JSDoc keywords
+ scope
+ storage.type.class.jsdoc
+ settings
+
+ fontStyle
+
+
+
+
+ scope
+ support.type.object.console.js
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Node constants as keywords (module, etc.)
+ scope
+ support.constant.node, support.type.object.module.js
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ implements as keyword
+ scope
+ storage.modifier.implements
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Builtin types
+ scope
+ constant.language.null.js, constant.language.null.ts, constant.language.undefined.js, constant.language.undefined.ts, support.type.builtin.ts
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ scope
+ variable.parameter.generic
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Arrow functions
+ scope
+ keyword.declaration.function.arrow.js, storage.type.function.arrow.ts
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Decorator punctuations (decorators inherit from blue functions, instead of styleguide peach)
+ scope
+ punctuation.decorator.ts
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+ italic
+
+
+
+ name
+ Extra JS/TS keywords
+ scope
+ keyword.operator.expression.in.js, keyword.operator.expression.in.ts, keyword.operator.expression.infer.ts, keyword.operator.expression.instanceof.js, keyword.operator.expression.instanceof.ts, keyword.operator.expression.is, keyword.operator.expression.keyof.ts, keyword.operator.expression.of.js, keyword.operator.expression.of.ts, keyword.operator.expression.typeof.ts
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Julia macros
+ scope
+ support.function.macro.julia
+ settings
+
+ foreground
+ #94e2d5
+ fontStyle
+ italic
+
+
+
+ name
+ Julia language constants (true, false)
+ scope
+ constant.language.julia
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Julia other constants (these seem to be arguments inside arrays)
+ scope
+ constant.other.symbol.julia
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ LaTeX preamble
+ scope
+ text.tex keyword.control.preamble
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ LaTeX be functions
+ scope
+ text.tex support.function.be
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ LaTeX math
+ scope
+ constant.other.general.math.tex
+ settings
+
+ foreground
+ #f2cdcd
+
+
+
+ name
+ Lua docstring keywords
+ scope
+ comment.line.double-dash.documentation.lua storage.type.annotation.lua
+ settings
+
+ foreground
+ #cba6f7
+ fontStyle
+
+
+
+
+ name
+ Lua docstring variables
+ scope
+ comment.line.double-dash.documentation.lua entity.name.variable.lua, comment.line.double-dash.documentation.lua variable.lua
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ scope
+ heading.1.markdown punctuation.definition.heading.markdown, heading.1.markdown, markup.heading.atx.1.mdx, markup.heading.atx.1.mdx punctuation.definition.heading.mdx, markup.heading.setext.1.markdown, markup.heading.heading-0.asciidoc
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ scope
+ heading.2.markdown punctuation.definition.heading.markdown, heading.2.markdown, markup.heading.atx.2.mdx, markup.heading.atx.2.mdx punctuation.definition.heading.mdx, markup.heading.setext.2.markdown, markup.heading.heading-1.asciidoc
+ settings
+
+ foreground
+ #fab387
+
+
+
+ scope
+ heading.3.markdown punctuation.definition.heading.markdown, heading.3.markdown, markup.heading.atx.3.mdx, markup.heading.atx.3.mdx punctuation.definition.heading.mdx, markup.heading.heading-2.asciidoc
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ scope
+ heading.4.markdown punctuation.definition.heading.markdown, heading.4.markdown, markup.heading.atx.4.mdx, markup.heading.atx.4.mdx punctuation.definition.heading.mdx, markup.heading.heading-3.asciidoc
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ scope
+ heading.5.markdown punctuation.definition.heading.markdown, heading.5.markdown, markup.heading.atx.5.mdx, markup.heading.atx.5.mdx punctuation.definition.heading.mdx, markup.heading.heading-4.asciidoc
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ scope
+ heading.6.markdown punctuation.definition.heading.markdown, heading.6.markdown, markup.heading.atx.6.mdx, markup.heading.atx.6.mdx punctuation.definition.heading.mdx, markup.heading.heading-5.asciidoc
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ scope
+ markup.bold
+ settings
+
+ foreground
+ #f38ba8
+ fontStyle
+ bold
+
+
+
+ scope
+ markup.italic
+ settings
+
+ foreground
+ #f38ba8
+ fontStyle
+ italic
+
+
+
+ scope
+ markup.strikethrough
+ settings
+
+ foreground
+ #a6adc8
+ fontStyle
+ strikethrough
+
+
+
+ name
+ Markdown auto links
+ scope
+ punctuation.definition.link, markup.underline.link
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ Markdown links
+ scope
+ text.html.markdown punctuation.definition.link.title, string.other.link.title.markdown, markup.link, punctuation.definition.constant.markdown, constant.other.reference.link.markdown, markup.substitution.attribute-reference
+ settings
+
+ foreground
+ #b4befe
+
+
+
+ name
+ Markdown code spans
+ scope
+ punctuation.definition.raw.markdown, markup.inline.raw.string.markdown, markup.raw.block.markdown
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ name
+ Markdown triple backtick language identifier
+ scope
+ fenced_code.block.language
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ Markdown triple backticks
+ scope
+ markup.fenced_code.block punctuation.definition, markup.raw support.asciidoc
+ settings
+
+ foreground
+ #9399b2
+
+
+
+ name
+ Markdown quotes
+ scope
+ markup.quote, punctuation.definition.quote.begin
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Markdown separators
+ scope
+ meta.separator.markdown
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Markdown list bullets
+ scope
+ punctuation.definition.list.begin.markdown, markup.list.bullet
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Nix attribute names
+ scope
+ entity.other.attribute-name.multipart.nix, entity.other.attribute-name.single.nix
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ Nix parameter names
+ scope
+ variable.parameter.name.nix
+ settings
+
+ foreground
+ #cdd6f4
+ fontStyle
+
+
+
+
+ name
+ Nix interpolated parameter names
+ scope
+ meta.embedded variable.parameter.name.nix
+ settings
+
+ foreground
+ #b4befe
+ fontStyle
+
+
+
+
+ name
+ Nix paths
+ scope
+ string.unquoted.path.nix
+ settings
+
+ foreground
+ #f5c2e7
+ fontStyle
+
+
+
+
+ name
+ PHP Attributes
+ scope
+ support.attribute.builtin, meta.attribute.php
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ PHP Parameters (needed for the leading dollar sign)
+ scope
+ meta.function.parameters.php punctuation.definition.variable.php
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ PHP Constants (null, __FILE__, etc.)
+ scope
+ constant.language.php
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ PHP functions
+ scope
+ text.html.php support.function
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ PHPdoc keywords
+ scope
+ keyword.other.phpdoc.php
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Python argument functions reset to text, otherwise they inherit blue from function-call
+ scope
+ support.variable.magic.python, meta.function-call.arguments.python
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Python double underscore functions
+ scope
+ support.function.magic.python
+ settings
+
+ foreground
+ #89dceb
+ fontStyle
+ italic
+
+
+
+ name
+ Python `self` keyword
+ scope
+ variable.parameter.function.language.special.self.python, variable.language.special.self.python
+ settings
+
+ foreground
+ #f38ba8
+ fontStyle
+ italic
+
+
+
+ name
+ python keyword flow/logical (for ... in)
+ scope
+ keyword.control.flow.python, keyword.operator.logical.python
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ python storage type
+ scope
+ storage.type.function.python
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ python function support
+ scope
+ support.token.decorator.python, meta.function.decorator.identifier.python
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ python function calls
+ scope
+ meta.function-call.python
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ python function decorators
+ scope
+ entity.name.function.decorator.python, punctuation.definition.decorator.python
+ settings
+
+ foreground
+ #fab387
+ fontStyle
+ italic
+
+
+
+ name
+ python placeholder reset to normal string
+ scope
+ constant.character.format.placeholder.other.python
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Python exception & builtins such as exit()
+ scope
+ support.type.exception.python, support.function.builtin.python
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ entity.name.type
+ scope
+ support.type.python
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ python constants (True/False)
+ scope
+ constant.language.python
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Arguments accessed later in the function body
+ scope
+ meta.indexed-name.python, meta.item-access.python
+ settings
+
+ foreground
+ #eba0ac
+ fontStyle
+ italic
+
+
+
+ name
+ Python f-strings/binary/unicode storage types
+ scope
+ storage.type.string.python
+ settings
+
+ foreground
+ #a6e3a1
+ fontStyle
+ italic
+
+
+
+ name
+ Python type hints
+ scope
+ meta.function.parameters.python
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Regex string begin/end in JS/TS
+ scope
+ string.regexp punctuation.definition.string.begin, string.regexp punctuation.definition.string.end
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Regex anchors (^, $)
+ scope
+ keyword.control.anchor.regexp
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Regex regular string match
+ scope
+ string.regexp.ts
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Regex group parenthesis & backreference (\1, \2, \3, ...)
+ scope
+ punctuation.definition.group.regexp, keyword.other.back-reference.regexp
+ settings
+
+ foreground
+ #a6e3a1
+
+
+
+ name
+ Regex character class []
+ scope
+ punctuation.definition.character-class.regexp
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Regex character classes (\d, \w, \s)
+ scope
+ constant.other.character-class.regexp
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Regex range
+ scope
+ constant.other.character-class.range.regexp
+ settings
+
+ foreground
+ #f5e0dc
+
+
+
+ name
+ Regex quantifier
+ scope
+ keyword.operator.quantifier.regexp
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Regex constant/numeric
+ scope
+ constant.character.numeric.regexp
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Regex lookaheads, negative lookaheads, lookbehinds, negative lookbehinds
+ scope
+ punctuation.definition.group.no-capture.regexp, meta.assertion.look-ahead.regexp, meta.assertion.negative-look-ahead.regexp
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ Rust attribute
+ scope
+ meta.annotation.rust, meta.annotation.rust punctuation, meta.attribute.rust, punctuation.definition.attribute.rust
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Rust attribute strings
+ scope
+ meta.attribute.rust string.quoted.double.rust, meta.attribute.rust string.quoted.single.char.rust
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Rust keyword
+ scope
+ entity.name.function.macro.rules.rust, storage.type.module.rust, storage.modifier.rust, storage.type.struct.rust, storage.type.enum.rust, storage.type.trait.rust, storage.type.union.rust, storage.type.impl.rust, storage.type.rust, storage.type.function.rust, storage.type.type.rust
+ settings
+
+ foreground
+ #cba6f7
+ fontStyle
+
+
+
+
+ name
+ Rust u/i32, u/i64, etc.
+ scope
+ entity.name.type.numeric.rust
+ settings
+
+ foreground
+ #cba6f7
+ fontStyle
+
+
+
+
+ name
+ Rust generic
+ scope
+ meta.generic.rust
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Rust impl
+ scope
+ entity.name.impl.rust
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Rust module
+ scope
+ entity.name.module.rust
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Rust trait
+ scope
+ entity.name.trait.rust
+ settings
+
+ foreground
+ #f9e2af
+ fontStyle
+ italic
+
+
+
+ name
+ Rust struct
+ scope
+ storage.type.source.rust
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Rust union
+ scope
+ entity.name.union.rust
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+ name
+ Rust enum member
+ scope
+ meta.enum.rust storage.type.source.rust
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Rust macro
+ scope
+ support.macro.rust, meta.macro.rust support.function.rust, entity.name.function.macro.rust
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+ italic
+
+
+
+ name
+ Rust lifetime
+ scope
+ storage.modifier.lifetime.rust, entity.name.type.lifetime
+ settings
+
+ foreground
+ #89b4fa
+ fontStyle
+ italic
+
+
+
+ name
+ Rust string formatting
+ scope
+ string.quoted.double.rust constant.other.placeholder.rust
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Rust return type generic
+ scope
+ meta.function.return-type.rust meta.generic.rust storage.type.rust
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Rust functions
+ scope
+ meta.function.call.rust
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ name
+ Rust angle brackets
+ scope
+ punctuation.brackets.angle.rust
+ settings
+
+ foreground
+ #89dceb
+
+
+
+ name
+ Rust constants
+ scope
+ constant.other.caps.rust
+ settings
+
+ foreground
+ #fab387
+
+
+
+ name
+ Rust function parameters
+ scope
+ meta.function.definition.rust variable.other.rust
+ settings
+
+ foreground
+ #eba0ac
+
+
+
+ name
+ Rust closure variables
+ scope
+ meta.function.call.rust variable.other.rust
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ name
+ Rust self
+ scope
+ variable.language.self.rust
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ Rust metavariable names
+ scope
+ variable.other.metavariable.name.rust, meta.macro.metavariable.rust keyword.operator.macro.dollar.rust
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ name
+ Shell shebang
+ scope
+ comment.line.shebang, comment.line.shebang punctuation.definition.comment, comment.line.shebang, punctuation.definition.comment.shebang.shell, meta.shebang.shell
+ settings
+
+ foreground
+ #f5c2e7
+ fontStyle
+ italic
+
+
+
+ name
+ Shell shebang command
+ scope
+ comment.line.shebang constant.language
+ settings
+
+ foreground
+ #94e2d5
+ fontStyle
+ italic
+
+
+
+ name
+ Shell interpolated command
+ scope
+ meta.function-call.arguments.shell punctuation.definition.variable.shell, meta.function-call.arguments.shell punctuation.section.interpolation, meta.function-call.arguments.shell punctuation.definition.variable.shell, meta.function-call.arguments.shell punctuation.section.interpolation
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ name
+ Shell interpolated command variable
+ scope
+ meta.string meta.interpolation.parameter.shell variable.other.readwrite
+ settings
+
+ foreground
+ #fab387
+ fontStyle
+ italic
+
+
+
+ scope
+ source.shell punctuation.section.interpolation, punctuation.definition.evaluation.backticks.shell
+ settings
+
+ foreground
+ #94e2d5
+
+
+
+ name
+ Shell EOF
+ scope
+ entity.name.tag.heredoc.shell
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ name
+ Shell quoted variable
+ scope
+ string.quoted.double.shell variable.other.normal.shell
+ settings
+
+ foreground
+ #cdd6f4
+
+
+
+ scope
+ markup.heading.synopsis.man, markup.heading.title.man, markup.heading.other.man, markup.heading.env.man
+ settings
+
+ foreground
+ #cba6f7
+
+
+
+ scope
+ markup.heading.commands.man
+ settings
+
+ foreground
+ #89b4fa
+
+
+
+ scope
+ markup.heading.env.man
+ settings
+
+ foreground
+ #f5c2e7
+
+
+
+ scope
+ markup.heading.1.markdown
+ settings
+
+ foreground
+ #f38ba8
+
+
+
+ scope
+ markup.heading.2.markdown
+ settings
+
+ foreground
+ #fab387
+
+
+
+ scope
+ markup.heading.markdown
+ settings
+
+ foreground
+ #f9e2af
+
+
+
+
+
\ No newline at end of file
diff --git a/yazi/theme.toml b/yazi/theme.toml
index 8ccb2d2..0869868 100644
--- a/yazi/theme.toml
+++ b/yazi/theme.toml
@@ -1,698 +1,3 @@
-[manager]
-cwd = { fg = "#94e2d5" }
-
-# Hovered
-hovered = { fg = "#1e1e2e", bg = "#89b4fa" }
-preview_hovered = { underline = true }
-
-# Find
-find_keyword = { fg = "#f9e2af", italic = true }
-find_position = { fg = "#f5c2e7", bg = "reset", italic = true }
-
-# Marker
-marker_copied = { fg = "#a6e3a1", bg = "#a6e3a1" }
-marker_cut = { fg = "#f38ba8", bg = "#f38ba8" }
-marker_selected = { fg = "#89b4fa", bg = "#89b4fa" }
-
-# Tab
-tab_active = { fg = "#1e1e2e", bg = "#cdd6f4" }
-tab_inactive = { fg = "#cdd6f4", bg = "#45475a" }
-tab_width = 1
-
-# Count
-count_copied = { fg = "#1e1e2e", bg = "#a6e3a1" }
-count_cut = { fg = "#1e1e2e", bg = "#f38ba8" }
-count_selected = { fg = "#1e1e2e", bg = "#89b4fa" }
-
-# Border
-border_symbol = "โ"
-border_style = { fg = "#7f849c" }
-
-# Highlighting
-syntect_theme = "~/.config/yazi/Catppuccin-mocha.tmTheme"
-
-[status]
-separator_open = "๎ถ"
-separator_close = "๎ด"
-separator_style = { fg = "#45475a", bg = "#45475a" }
-
-# Mode
-mode_normal = { fg = "#1e1e2e", bg = "#89b4fa", bold = true }
-mode_select = { fg = "#1e1e2e", bg = "#a6e3a1", bold = true }
-mode_unset = { fg = "#1e1e2e", bg = "#f2cdcd", bold = true }
-
-# Progress
-progress_label = { fg = "#ffffff", bold = true }
-progress_normal = { fg = "#89b4fa", bg = "#45475a" }
-progress_error = { fg = "#f38ba8", bg = "#45475a" }
-
-# Permissions
-permissions_t = { fg = "#89b4fa" }
-permissions_r = { fg = "#f9e2af" }
-permissions_w = { fg = "#f38ba8" }
-permissions_x = { fg = "#a6e3a1" }
-permissions_s = { fg = "#7f849c" }
-
-[input]
-border = { fg = "#89b4fa" }
-title = {}
-value = {}
-selected = { reversed = true }
-
-[select]
-border = { fg = "#89b4fa" }
-active = { fg = "#f5c2e7" }
-inactive = {}
-
-[tasks]
-border = { fg = "#89b4fa" }
-title = {}
-hovered = { underline = true }
-
-[which]
-mask = { bg = "#313244" }
-cand = { fg = "#94e2d5" }
-rest = { fg = "#9399b2" }
-desc = { fg = "#f5c2e7" }
-separator = " ๎ช "
-separator_style = { fg = "#585b70" }
-
-[help]
-on = { fg = "#f5c2e7" }
-exec = { fg = "#94e2d5" }
-desc = { fg = "#9399b2" }
-hovered = { bg = "#585b70", bold = true }
-footer = { fg = "#45475a", bg = "#cdd6f4" }
-
-[filetype]
-
-rules = [
- # Media
- { mime = "image/*", fg = "#94e2d5" },
- { mime = "{audio,video}/*", fg = "#f9e2af" },
-
- # Archives
- { mime = "application/{,g}zip", fg = "#f5c2e7" },
- { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f5c2e7" },
-
- # Fallback
- { name = "*", fg = "#cdd6f4" },
- { name = "*/", fg = "#89b4fa" }
-]
-
-[icon]
-
-files = [
- { name = "gulpfile.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = ".babelrc", text = "๎น", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "copying.lesser", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = ".npmrc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "docker-compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "svelte.config.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "copying", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "prettier.config.ts", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "gruntfile.babel.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = ".SRCINFO", text = "๓ฐฃ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".xinitrc", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "docker-compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "nuxt.config.ts", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "build", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".editorconfig", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "nuxt.config.mjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".gitlab-ci.yml", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "PKGBUILD", text = "๏", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".bash_profile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".bashrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "compose.yml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "eslint.config.cjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "go.mod", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = ".mailmap", text = "๓ฐข", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "gtkrc", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "go.work", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "kritadisplayrc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
- { name = "commitlint.config.js", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = ".env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "PrusaSlicerGcodeViewer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = ".gitignore", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "tailwind.config.js", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = ".prettierrc.yml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".zprofile", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".zshenv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "xmonad.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = ".eslintignore", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "tsconfig.json", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = ".prettierrc.json5", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".ds_store", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "gulpfile.coffee", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "R", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = ".zshrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".prettierrc.toml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".xsession", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = ".justfile", text = "๏ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = ".gitconfig", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "gradle-wrapper.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "ionic.config.json", text = "๎ฉ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "cantorrc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".gleam", text = "๏
", fg_dark = "#f5c2e7", fg_light = "#f5c2e7" },
- { name = "package-lock.json", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "package.json", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "hyprland.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "gulpfile.babel.js", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = ".nvmrc", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".prettierignore", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "ext_typoscript_setup.txt", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "QtProject.conf", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "avif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "mix.lock", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "build.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "gemfile$", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = ".vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "i18n.config.ts", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "gulpfile.ts", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "build.zig.zon", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "checkhealth", text = "๓ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "xmobarrc", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "_vimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".luaurc", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "kdenlive-layoutsrc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "gradlew", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "xsettingsd.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "vlcrc", text = "๓ฐผ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "xorg.conf", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "xmobarrc.hs", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "workspace", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = ".gitattributes", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "favicon.ico", text = "๎ฃ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "go.sum", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "pom.xml", text = "๎ด", fg_dark = "#313244", fg_light = "#313244" },
- { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "vagrantfile$", text = "๏ธ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "unlicense", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "tmux.conf.local", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "settings.gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = ".dockerignore", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "sym-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "_gvimrc", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "kdenliverc", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "kdeglobals", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".prettierrc.yaml", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "tailwind.config.mjs", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "sxhkdrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
- { name = "robots.txt", text = "๓ฐฉ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "tailwind.config.ts", text = "๓ฑฟ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "prettier.config.mjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "mpv.conf", text = "๏ฎ", fg_dark = "#1e1e2e", fg_light = "#1e1e2e" },
- { name = "py.typed", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "PrusaSlicer.ini", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "procfile", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "rakefile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "kritarc", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
- { name = ".Xresources", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "prettier.config.js", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "commitlint.config.ts", text = "๓ฐ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "weston.ini", text = "๏ง", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "eslint.config.js", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "cmakelists.txt", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = ".git-blame-ignore-revs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "config", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "nuxt.config.cjs", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "node_modules", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "lxqt.conf", text = "๏ค", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "i18n.config.js", text = "๓ฐ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "FreeCAD.conf", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "prettier.config.cjs", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "tmux.conf", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "kalgebrarc", text = "๏ณ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "i3status.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = ".settings.json", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "containerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "i3blocks.conf", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "lxde-rc.xml", text = "๏ฃ", fg_dark = "#9399b2", fg_light = "#9399b2" },
- { name = "gradle.properties", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "hypridle.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "gruntfile.ts", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "gruntfile.js", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "groovy", text = "๎ต", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "hyprlock.conf", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = ".prettierrc", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "commit_editmsg", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "fp-lib-table", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "fp-info-cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "eslint.config.ts", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "nuxt.config.js", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "platformio.ini", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = ".nuxtrc", text = "๓ฑ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "gruntfile.coffee", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "eslint.config.mjs", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "compose.yaml", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "bspwmrc", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
- { name = "brewfile", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = ".eslintrc", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = ".gtkrc-2.0", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = ".Xauthority", text = "๏ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = ".prettierrc.json", text = "๎ด", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = ".npmignore", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = ".gitmodules", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
-]
-exts = [
- { name = "rake", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "skp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "eln", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "razor", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "vue", text = "๎ ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sln", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "el", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "blp", text = "๓ฐบพ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "jl", text = "๎ค", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "mdx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "jsx", text = "๎ฅ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "ml", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "less", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "pot", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "pl", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "mli", text = "๎บ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "gif", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "aif", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "cxxm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "fcbak", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "aac", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "query", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "android", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "m3u8", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "leex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "liquid", text = "๎ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "cue", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "fcmacro", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "log", text = "๓ฐฑ", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
- { name = "pm", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "brep", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "blend", text = "๓ฐซ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "md5", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "sql", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "xcplayground", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "erb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "t", text = "๎ฉ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "cache", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "r", text = "๓ฐ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "x", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "import", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "m", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "lrc", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "o", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "d", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "c", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "h", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "rss", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "hbs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "godot", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "eot", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "awk", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "fsx", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "a", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "pyi", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "asc", text = "๓ฐฆ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "ass", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "css", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "psb", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "csproj", text = "๓ฐชฎ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "csv", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "gcode", text = "๓ฐซ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "ics", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
- { name = "mk", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "bz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "fctb", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "gz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "wasm", text = "๎ก", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "glb", text = "๏ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "elc", text = "๎ฒ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "flf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "elf", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "dropbox", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "tres", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "apk", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "ape", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "slvs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "apl", text = "โ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "cs", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "azcli", text = "๎ฏจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "pp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "flc", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "gemspec", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "pls", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "cfg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "fcscript", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "gnumakefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "zst", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "pxi", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "woff2", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "kicad_pcb", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "zsh", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "kicad_wks", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "info", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "cppm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "svg", text = "๓ฐก", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "flac", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "cuh", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "bin", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "zig", text = "๎ฉ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "yml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "yaml", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "fsscript", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "xz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "diff", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "mojo", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "cshtml", text = "๓ฑฆ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "bak", text = "๓ฐฏ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "nfo", text = "๏ฉ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "bat", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "cpy", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "gql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "c++", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "lff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "obj", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "sha512", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "scm", text = "๓ฐง", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "aiff", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "sig", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "webm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "zip", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "wrz", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "jwmrc", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "xml", text = "๓ฐ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "cbl", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "rmd", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "xaml", text = "๓ฐณ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "xm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "wvc", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "drl", text = "๎", fg_dark = "#eba0ac", fg_light = "#eba0ac" },
- { name = "erl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "3gp", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "ccm", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "ino", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "kbx", text = "๓ฐฏ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "test.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "wrl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "pcm", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "woff", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "scala", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "webpack", text = "๓ฐซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "hrl", text = "๎ฑ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "kra", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
- { name = "kicad_pro", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "bazel", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "toml", text = "๎ฒ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "iges", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "crdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "so", text = "๎ฎ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "strings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "xls", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "wav", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "vsix", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "kicad_prl", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "mov", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "bash", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sqlite3", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "vsh", text = "๎ฌ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "vim", text = "๎ซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "lck", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
- { name = "go", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "pyo", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "vhdl", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "vhd", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "rar", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "magnet", text = "๏ถ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "vala", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "coffee", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "kdbx", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "po", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "v", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "prisma", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "f90", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "txt", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "mo", text = "โ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "mp4", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "cljc", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "heex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "exs", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "clj", text = "๎จ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "luau", text = "๎ ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "fcparam", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "markdown", text = "๎", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
- { name = "dxf", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "luac", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "desktop", text = "๏", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "docx", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "cljd", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "txz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "bicepparam", text = "๎ป", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "kt", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "fcstd", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "md", text = "๏", fg_dark = "#cdd6f4", fg_light = "#cdd6f4" },
- { name = "edn", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "sub", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "ttf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "tsx", text = "๎บ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "hurl", text = "๏ฌ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "dll", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
- { name = "lhs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "tsconfig", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "msf", text = "๏ฐ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "ts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "rproj", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "org", text = "๎ณ", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "signature", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "elm", text = "๎ฌ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "pyc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "tmux", text = "๎ฏ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "tgz", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "nu", text = ">", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "tfvars", text = "๏
", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "lua", text = "๎ ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "astro", text = "๎ณ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "lib", text = "๎ฎ", fg_dark = "#11111b", fg_light = "#11111b" },
- { name = "tex", text = "๎", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "ogg", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "stp", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sublime", text = "๎ช", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "test.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "nswag", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "test.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "test.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "dwg", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "bib", text = "๓ฑ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "sass", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "templ", text = "๎ซ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "tcl", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "pck", text = "๏", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "swift", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "makefile", text = "๎น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "xcstrings", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "slim", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "iso", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
- { name = "fsi", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "dart", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "nix", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "svelte", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "sv", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "bz2", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "sha256", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "twig", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "material", text = "๓ฐ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "ppt", text = "๓ฐง", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "pyd", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "step", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "hx", text = "๎ฆ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "webmanifest", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "kicad_sch", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "cjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "stl", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "ejs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "ssa", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "license", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "jsonc", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "download", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "ige", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sqlite", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "psd1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "dump", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "resi", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "spec.ts", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "fnl", text = "๎ฏ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "cu", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "scss", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "config.ru", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "psd", text = "๎ธ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "db", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "epub", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "haml", text = "๎", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "sol", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "sml", text = "ฮป", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "svh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sldprt", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "ico", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "xlsx", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "rs", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "dconf", text = "๏ก", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "bz3", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "fdmdownload", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "fs", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "patch", text = "๎จ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "hs", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "xcf", text = "๏ธ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "js", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "pyw", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "sha384", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "fcmat", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "csh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "suo", text = "๎", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "sha224", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "sha1", text = "๓ฐฅ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "cr", text = "๎ฏ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "huff", text = "๓ฐก", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "sh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "sc", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "ksh", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "cc", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "wma", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "mp3", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "conf", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "3mf", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "sbt", text = "๎ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "kicad_mod", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "terminal", text = "๏", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "rlib", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "pdf", text = "๎ซซ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "mts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "kdenlive", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "kts", text = "๎ด", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "spec.tsx", text = "๏", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "res", text = "๎", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "hxx", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "rb", text = "๎", fg_dark = "#313244", fg_light = "#313244" },
- { name = "vh", text = "๓ฐ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "ixx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "cson", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "cts", text = "๎จ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "7z", text = "๏", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "ex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "cpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "qss", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "app", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "jxl", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "qrc", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "qml", text = "๏ต", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "epp", text = "๎ฑ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "otf", text = "๏ฑ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "hh", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "qm", text = "๏ซ", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "pro", text = "๎ก", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "exe", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "kdenlivetitle", text = "๏ผ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "kdb", text = "๏พ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "mpp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "Dockerfile", text = "๓ฐกจ", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "bqn", text = "โ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "torrent", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "m3u", text = "๓ฐฒน", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "py", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "pxd", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "f3d", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "out", text = "๎ซจ", fg_dark = "#45475a", fg_light = "#45475a" },
- { name = "spec.jsx", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "kicad_dru", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "ps1", text = "๓ฐจ", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "ui", text = "๏", fg_dark = "#313244", fg_light = "#313244" },
- { name = "styl", text = "๎", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "f#", text = "๎ง", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "png", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "ply", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "php", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "eex", text = "๎ญ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "tbc", text = "๓ฐ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "part", text = "๏", fg_dark = "#94e2d5", fg_light = "#94e2d5" },
- { name = "pub", text = "๓ฐท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "ipynb", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "opus", text = "๏", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "git", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "bmp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "blade.php", text = "๏ท", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "nim", text = "๎ท", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "xpi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "mustache", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "tscn", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "scad", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "ai", text = "๎ด", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "hex", text = "๎ง", fg_dark = "#6c7086", fg_light = "#6c7086" },
- { name = "hpp", text = "๏ฝ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "xul", text = "๎
", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "mobi", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "fcstd1", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "ical", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
- { name = "icalendar", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
- { name = "bicep", text = "๎ป", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "mm", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "mkv", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "graphql", text = "๏", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "mjs", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "mint", text = "๓ฐช", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "m4v", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "m4a", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "tf", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "gv", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "lock", text = "๎ฒ", fg_dark = "#bac2de", fg_light = "#bac2de" },
- { name = "krz", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
- { name = "kpp", text = "๏ฝ", fg_dark = "#cba6f7", fg_light = "#cba6f7" },
- { name = "ko", text = "๏
ผ", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "kicad_sym", text = "๏", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "psm1", text = "๓ฐจ", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "pyx", text = "๎", fg_dark = "#89b4fa", fg_light = "#89b4fa" },
- { name = "json5", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "json", text = "๎", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "bzl", text = "๎บ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "ifb", text = "๏ณ", fg_dark = "#313244", fg_light = "#313244" },
- { name = "image", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
- { name = "jpg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "jpeg", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "java", text = "๎ธ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "wv", text = "๏", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "ini", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "cast", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "cp", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "fctl", text = "๏ถ", fg_dark = "#f38ba8", fg_light = "#f38ba8" },
- { name = "ifc", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "sldasm", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "html", text = "๎ถ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "typoscript", text = "๎ฒ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "๐ฅ", text = "๏ญ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "htm", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "ste", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "spec.js", text = "๏", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "gresource", text = "๏ข", fg_dark = "#f5e0dc", fg_light = "#f5e0dc" },
- { name = "ebook", text = "๎", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "gradle", text = "๎ ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "gd", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "fish", text = "๎", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "igs", text = "๓ฐปซ", fg_dark = "#a6e3a1", fg_light = "#a6e3a1" },
- { name = "fbx", text = "๓ฐง", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "env", text = "๏ข", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "srt", text = "๓ฐจ", fg_dark = "#f9e2af", fg_light = "#f9e2af" },
- { name = "dot", text = "๓ฑ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "doc", text = "๓ฐฌ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "d.ts", text = "๎จ", fg_dark = "#fab387", fg_light = "#fab387" },
- { name = "applescript", text = "๏
น", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "cxx", text = "๎", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "img", text = "๎ฑ", fg_dark = "#f2cdcd", fg_light = "#f2cdcd" },
- { name = "cljs", text = "๎ช", fg_dark = "#74c7ec", fg_light = "#74c7ec" },
- { name = "cobol", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "cob", text = "โ", fg_dark = "#585b70", fg_light = "#585b70" },
- { name = "cmake", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
- { name = "webp", text = "๎", fg_dark = "#7f849c", fg_light = "#7f849c" },
-]
+[flavor]
+dark = "catppuccin-mocha"
+light = "catppuccin-latte"