summaryrefslogtreecommitdiff
path: root/fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml
diff options
context:
space:
mode:
Diffstat (limited to 'fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml')
-rw-r--r--fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml186
1 files changed, 186 insertions, 0 deletions
diff --git a/fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml b/fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml
new file mode 100644
index 0000000..133c35d
--- /dev/null
+++ b/fedora/.config/yazi/flavors/vscode-light-plus.yazi/flavor.toml
@@ -0,0 +1,186 @@
+# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
+# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
+"$schema" = "https://yazi-rs.github.io/schemas/theme.json"
+
+# vscode-light-plus (Light+)
+# https://github.com/956MB/vscode.yazi/blob/main/themes/vscode-light-plus/
+#
+# A theme inspired by Visual Studio Code's Light+ theme.
+
+[colors]
+background = "#FFFFFF"
+foreground = "#000000"
+selection = "#ADD6FF"
+cursor = "#000000"
+black = "#000000"
+red = "#CD3131"
+green = "#008000"
+yellow = "#949800"
+blue = "#0000FF"
+magenta = "#AF00DB"
+cyan = "#0598BC"
+white = "#FFFFFF"
+bright_black = "#767676"
+bright_red = "#CD3131"
+bright_green = "#008000"
+bright_yellow = "#949800"
+bright_blue = "#0000FF"
+bright_magenta = "#AF00DB"
+bright_cyan = "#0598BC"
+bright_white = "#FFFFFF"
+
+[manager]
+cwd = { fg = "cyan" }
+# Hovered
+hovered = { fg = "#000000", bg = "#ADD6FF" }
+preview_hovered = { underline = true }
+# Find
+find_keyword = { fg = "#795E26", bold = true, italic = true, underline = true }
+find_position = { fg = "#AF00DB", bg = "#FFFFFF", bold = true, italic = true }
+# Marker
+marker_copied = { fg = "#008000", bg = "#008000" }
+marker_cut = { fg = "#CD3131", bg = "#CD3131" }
+marker_marked = { fg = "#0598BC", bg = "#0598BC" }
+marker_selected = { fg = "#949800", bg = "#949800" }
+# Tab
+tab_active = { fg = "#000000", bg = "#FFFFFF" }
+tab_inactive = { fg = "#000000", bg = "#F3F3F3" }
+tab_width = 1
+# Count
+count_copied = { fg = "#FFFFFF", bg = "#008000" }
+count_cut = { fg = "#FFFFFF", bg = "#CD3131" }
+count_selected = { fg = "#FFFFFF", bg = "#949800" }
+# Border
+border_symbol = "│"
+border_style = { fg = "#D4D4D4" }
+# Highlighting
+syntect_theme = "./tmtheme.xml"
+# Cursor
+cursor_symbol = "█"
+cursor = { fg = "#FFFFFF", bg = "#000000" }
+# Executable
+exe_symbol = ""
+exe = { fg = "#008000", bg = "#FFFFFF" }
+# Regular
+file_symbol = ""
+file = { }
+# Directory
+folder_symbol = ""
+folder = { fg = "#0000FF", bg = "#FFFFFF" }
+# Hidden
+hidden_symbol = ""
+hidden = { fg = "#767676" }
+# Link
+link_symbol = ""
+link = { fg = "#0598BC", bg = "#FFFFFF" }
+# Link (broken)
+broken_symbol = ""
+broken = { fg = "#CD3131", bg = "#FFF0F0" }
+# Selected
+selected = { fg = "#000000", bg = "#ADD6FF" }
+
+[status]
+separator_open = ""
+separator_close = ""
+separator_style = { fg = "#D4D4D4", bg = "#D4D4D4" }
+# Mode
+mode_normal = { fg = "#FFFFFF", bg = "#0000FF", bold = true }
+mode_select = { fg = "#FFFFFF", bg = "#FFAF00", bold = true }
+mode_unset = { fg = "#FFFFFF", bg = "#CD3131", bold = true }
+# Progress
+progress_label = { bold = true }
+progress_normal = { fg = "#0000FF", bg = "#FFFFFF" }
+progress_error = { fg = "#CD3131", bg = "#FFFFFF" }
+# Permissions
+permissions_t = { fg = "#008000" }
+permissions_r = { fg = "#949800" }
+permissions_w = { fg = "#CD3131" }
+permissions_x = { fg = "#0598BC" }
+permissions_s = { fg = "#767676" }
+
+[select]
+border = { fg = "#0000FF" }
+active = { fg = "#AF00DB", bold = true }
+inactive = {}
+
+[input]
+border = { fg = "#0000FF" }
+title = {}
+value = {}
+selected = { reversed = true }
+
+[completion]
+border = { fg = "#0000FF" }
+active = { bg = "#ADD6FF" }
+inactive = {}
+# Icons
+icon_file = ""
+icon_folder = ""
+icon_command = ""
+
+[tasks]
+border = { fg = "#0000FF" }
+title = {}
+hovered = { underline = true }
+
+[which]
+mask = { bg = "#FFFFFF" }
+cand = { fg = "#0598BC" }
+rest = { fg = "#767676" }
+desc = { fg = "#AF00DB" }
+separator = " "
+separator_style = { fg = "#767676" }
+
+[help]
+on = { fg = "#0598BC" }
+run = { fg = "#AF00DB" }
+desc = { fg = "#000000" }
+hovered = { bg = "#ADD6FF", bold = true }
+footer = { fg = "#000000", bg = "#F3F3F3" }
+
+[filetype]
+rules = [
+ # Images
+ { mime = "image/*", fg = "#949800" },
+ # Videos
+ { mime = "video/*", fg = "#AF00DB" },
+ # Audio
+ { mime = "audio/*", fg = "#AF00DB" },
+ # Archives
+ { mime = "application/zip", fg = "#CD3131" },
+ { mime = "application/gzip", fg = "#CD3131" },
+ { mime = "application/x-tar", fg = "#CD3131" },
+ { mime = "application/x-bzip", fg = "#CD3131" },
+ { mime = "application/x-bzip2", fg = "#CD3131" },
+ { mime = "application/x-7z-compressed", fg = "#CD3131" },
+ { mime = "application/x-rar", fg = "#CD3131" },
+ # Documents
+ { mime = "application/pdf", fg = "#0598BC" },
+ { mime = "application/msword", fg = "#0598BC" },
+ { mime = "application/vnd.openxmlformats-officedocument.*", fg = "#0598BC" },
+ # Fallback
+ { name = "*", fg = "#000000" },
+ { name = "*/", fg = "#0000FF" },
+ # Executable
+ { name = "*", category = "executable", fg = "#008000", bg = "#FFFFFF" },
+ # Directories
+ { name = "*/", fg = "#0000FF", bg = "#FFFFFF" },
+ # Hidden files
+ { name = ".*", fg = "#767676" },
+ # Symlinks
+ { name = "*", category = "link", fg = "#0598BC", bg = "#FFFFFF" },
+ # Broken symlinks
+ { name = "*", category = "broken", fg = "#CD3131", bg = "#FFF0F0" },
+]
+
+[icon]
+rules = [
+ { name = "Desktop", text = "" },
+ { name = "Documents", text = "" },
+ { name = "Downloads", text = "" },
+ { name = "Pictures", text = "" },
+ { name = "Music", text = "" },
+ { name = "Videos", text = "" },
+ { name = ".git", text = "" },
+ { name = ".config", text = "" },
+]