From a3ed0a3cb36d192c37e040d0dfe57c42113f2161 Mon Sep 17 00:00:00 2001
From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>
Date: Sat, 13 Sep 2025 17:14:51 +0900
Subject: updates
---
mac/.config/yazi/flavors/dracula.yazi/LICENSE | 21 +
.../yazi/flavors/dracula.yazi/LICENSE-tmtheme | 21 +
mac/.config/yazi/flavors/dracula.yazi/README.md | 36 +
mac/.config/yazi/flavors/dracula.yazi/flavor.toml | 189 +++++
mac/.config/yazi/flavors/dracula.yazi/preview.png | Bin 0 -> 855046 bytes
mac/.config/yazi/flavors/dracula.yazi/tmtheme.xml | 940 +++++++++++++++++++++
6 files changed, 1207 insertions(+)
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/LICENSE
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/LICENSE-tmtheme
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/README.md
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/flavor.toml
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/preview.png
create mode 100644 mac/.config/yazi/flavors/dracula.yazi/tmtheme.xml
(limited to 'mac/.config/yazi/flavors/dracula.yazi')
diff --git a/mac/.config/yazi/flavors/dracula.yazi/LICENSE b/mac/.config/yazi/flavors/dracula.yazi/LICENSE
new file mode 100644
index 0000000..fb5b1d6
--- /dev/null
+++ b/mac/.config/yazi/flavors/dracula.yazi/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2023 yazi-rs
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/mac/.config/yazi/flavors/dracula.yazi/LICENSE-tmtheme b/mac/.config/yazi/flavors/dracula.yazi/LICENSE-tmtheme
new file mode 100644
index 0000000..f9105d5
--- /dev/null
+++ b/mac/.config/yazi/flavors/dracula.yazi/LICENSE-tmtheme
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2013-present Dracula Theme
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/mac/.config/yazi/flavors/dracula.yazi/README.md b/mac/.config/yazi/flavors/dracula.yazi/README.md
new file mode 100644
index 0000000..8429ef6
--- /dev/null
+++ b/mac/.config/yazi/flavors/dracula.yazi/README.md
@@ -0,0 +1,36 @@
+
+

+
+
+
+ Dracula Flavor for Yazi
+
+
+## đ Preview
+
+
+
+## đš Installation
+
+```sh
+ya pkg add yazi-rs/flavors:dracula
+```
+
+## âïž Usage
+
+Set the content of your `theme.toml` to enable it as your _dark_ flavor:
+
+```toml
+[flavor]
+dark = "dracula"
+```
+
+Make sure your `theme.toml` doesn't contain anything other than `[flavor]`, unless you want to override certain styles of this flavor.
+
+See the [Yazi flavor documentation](https://yazi-rs.github.io/docs/flavors/overview) for more details.
+
+## đ License
+
+The flavor is MIT-licensed, and the included tmTheme is also MIT-licensed.
+
+Check the [LICENSE](LICENSE) and [LICENSE-tmtheme](LICENSE-tmtheme) file for more details.
diff --git a/mac/.config/yazi/flavors/dracula.yazi/flavor.toml b/mac/.config/yazi/flavors/dracula.yazi/flavor.toml
new file mode 100644
index 0000000..3434eb9
--- /dev/null
+++ b/mac/.config/yazi/flavors/dracula.yazi/flavor.toml
@@ -0,0 +1,189 @@
+# vim:fileencoding=utf-8:foldmethod=marker
+
+# : Manager {{{
+
+[mgr]
+cwd = { fg = "#8be9fd" }
+
+# Hovered
+hovered = { reversed = true }
+preview_hovered = { underline = true }
+
+# Find
+find_keyword = { fg = "#f1fa8c", bold = true, italic = true, underline = true }
+find_position = { fg = "#ff79c6", bg = "reset", bold = true, italic = true }
+
+# Marker
+marker_copied = { fg = "#50fa7b", bg = "#50fa7b" }
+marker_cut = { fg = "#ff5555", bg = "#ff5555" }
+marker_marked = { fg = "#8be9fd", bg = "#8be9fd" }
+marker_selected = { fg = "#f1fa8c", bg = "#f1fa8c" }
+
+# Count
+count_copied = { fg = "#282a36", bg = "#50fa7b" }
+count_cut = { fg = "#282a36", bg = "#ff5555" }
+count_selected = { fg = "#282a36", bg = "#f1fa8c" }
+
+# Border
+border_symbol = "â"
+border_style = { fg = "#7282b5" }
+
+# : }}}
+
+
+# : Tabs {{{
+
+[tabs]
+active = { fg = "#282a36", bg = "#bd93f9", bold = true }
+inactive = { fg = "#bd93f9", bg = "#44475a" }
+
+# : }}}
+
+
+# : Mode {{{
+
+[mode]
+
+normal_main = { fg = "#282a36", bg = "#bd93f9", bold = true }
+normal_alt = { fg = "#bd93f9", bg = "#44475a" }
+
+# Select mode
+select_main = { fg = "#282a36", bg = "#8be9fd", bold = true }
+select_alt = { fg = "#8be9fd", bg = "#44475a" }
+
+# Unset mode
+unset_main = { fg = "#282a36", bg = "#ffb86c", bold = true }
+unset_alt = { fg = "#ffb86c", bg = "#44475a" }
+
+# : }}}
+
+
+# : Status bar {{{
+
+[status]
+# Permissions
+perm_sep = { fg = "#7282b5" }
+perm_type = { fg = "#bd93f9" }
+perm_read = { fg = "#f1fa8c" }
+perm_write = { fg = "#ff5555" }
+perm_exec = { fg = "#50fa7b" }
+
+# Progress
+progress_label = { fg = "#ffffff", bold = true }
+progress_normal = { fg = "#bd93f9", bg = "#63667d" }
+progress_error = { fg = "#bd93f9", bg = "#ff5555" }
+
+# : }}}
+
+
+# : Pick {{{
+
+[pick]
+border = { fg = "#bd93f9" }
+active = { fg = "#ff79c6", bold = true }
+inactive = {}
+
+# : }}}
+
+
+# : Input {{{
+
+[input]
+border = { fg = "#bd93f9" }
+title = {}
+value = {}
+selected = { reversed = true }
+
+# : }}}
+
+
+# : Completion {{{
+
+[cmp]
+border = { fg = "#bd93f9" }
+
+# : }}}
+
+
+# : Tasks {{{
+
+[tasks]
+border = { fg = "#bd93f9" }
+title = {}
+hovered = { fg = "#ff79c6", bold = true }
+
+# : }}}
+
+
+# : Which {{{
+
+[which]
+mask = { bg = "#44475a" }
+cand = { fg = "#8be9fd" }
+rest = { fg = "#8998c9" }
+desc = { fg = "#ff79c6" }
+separator = " îȘ "
+separator_style = { fg = "#83869c" }
+
+# : }}}
+
+
+# : Help {{{
+
+[help]
+on = { fg = "#8be9fd" }
+run = { fg = "#ff79c6" }
+hovered = { reversed = true, bold = true }
+footer = { fg = "#44475a", bg = "#f8f8f2" }
+
+# : }}}
+
+
+# : Spotter {{{
+
+[spot]
+border = { fg = "#bd93f9" }
+title = { fg = "#bd93f9" }
+tbl_col = { fg = "#8be9fd" }
+tbl_cell = { fg = "#ff79c6", bg = "#63667d" }
+
+# : }}}
+
+
+# : Notification {{{
+
+[notify]
+title_info = { fg = "#50fa7b" }
+title_warn = { fg = "#f1fa8c" }
+title_error = { fg = "#ff5555" }
+
+# : }}}
+
+
+# : File-specific styles {{{
+
+[filetype]
+
+rules = [
+ # Images
+ { mime = "image/*", fg = "#8be9fd" },
+
+ # Media
+ { mime = "{audio,video}/*", fg = "#f1fa8c" },
+
+ # Archives
+ { mime = "application/{zip,rar,7z*,tar,gzip,xz,zstd,bzip*,lzma,compress,archive,cpio,arj,xar,ms-cab*}", fg = "#ff79c6" },
+
+ # Documents
+ { mime = "application/{pdf,doc,rtf}", fg = "#50fa7b" },
+
+ # Fallback
+ { url = "*", fg = "#f8f8f2" },
+ { url = "*/", fg = "#bd93f9" },
+
+ # TODO: remove
+ { name = "*", fg = "#f8f8f2" },
+ { name = "*/", fg = "#bd93f9" }
+]
+
+# : }}}
diff --git a/mac/.config/yazi/flavors/dracula.yazi/preview.png b/mac/.config/yazi/flavors/dracula.yazi/preview.png
new file mode 100644
index 0000000..7d8adf3
Binary files /dev/null and b/mac/.config/yazi/flavors/dracula.yazi/preview.png differ
diff --git a/mac/.config/yazi/flavors/dracula.yazi/tmtheme.xml b/mac/.config/yazi/flavors/dracula.yazi/tmtheme.xml
new file mode 100644
index 0000000..c3434ec
--- /dev/null
+++ b/mac/.config/yazi/flavors/dracula.yazi/tmtheme.xml
@@ -0,0 +1,940 @@
+
+
+
+
+
+
+
+ name
+ Dracula
+ settings
+
+
+ settings
+
+ background
+ #282a36
+ caret
+ #f8f8f0
+ block_caret
+ #999a9e
+ foreground
+ #f8f8f2
+ invisibles
+ #3B3A32
+ lineHighlight
+ #44475a
+ selection
+ #44475a
+ findHighlight
+ #effb7b
+ findHighlightForeground
+ #000000
+ selectionBorder
+ #222218
+ activeGuide
+ #9D550FB0
+ bracketsForeground
+ #F8F8F2A5
+ bracketsOptions
+ underline
+ bracketContentsForeground
+ #F8F8F2A5
+ bracketContentsOptions
+ underline
+ tagsOptions
+ stippled_underline
+
+
+
+ name
+ Comment
+ scope
+ comment
+ settings
+
+ foreground
+ #6272a4
+ fontStyle
+
+
+
+
+ name
+ String
+ scope
+ string
+ settings
+
+ foreground
+ #f1fa8c
+
+
+
+ name
+ Number
+ scope
+ constant.numeric
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ Built-in constant
+ scope
+ constant.language
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ User-defined constant
+ scope
+ constant.character, constant.other
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ Variable
+ scope
+ variable
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Ruby's @variable
+ scope
+ variable.other.readwrite.instance
+ settings
+
+ fontStyle
+
+ foreground
+ #ffb86c
+
+
+
+ name
+ String interpolation
+ scope
+ constant.character.escaped, constant.character.escape, string source, string source.ruby
+ settings
+
+ fontStyle
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Ruby Regexp
+ scope
+ source.ruby string.regexp.classic.ruby,source.ruby string.regexp.mod-r.ruby
+ settings
+
+ fontStyle
+
+ foreground
+ #ff5555
+
+
+
+ name
+ Keyword
+ scope
+ keyword
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Storage
+ scope
+ storage
+ settings
+
+ fontStyle
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Storage type
+ scope
+ storage.type
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #8be9fd
+
+
+
+ name
+ Storage Type Namespace
+ scope
+ storage.type.namespace
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #8be9fd
+
+
+
+ name
+ Storage Type Class
+ scope
+ storage.type.class
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #ff79c6
+
+
+
+ name
+ Class name
+ scope
+ entity.name.class
+ settings
+
+ fontStyle
+ underline
+ foreground
+ #8be9fd
+
+
+
+ name
+ Meta Path
+ scope
+ meta.path
+ settings
+
+ fontStyle
+ underline
+ foreground
+ #66d9ef
+
+
+
+ name
+ Inherited class
+ scope
+ entity.other.inherited-class
+ settings
+
+ fontStyle
+ italic underline
+ foreground
+ #8be9fd
+
+
+
+ name
+ Function name
+ scope
+ entity.name.function
+ settings
+
+ fontStyle
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ Function argument
+ scope
+ variable.parameter
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #ffb86c
+
+
+
+ name
+ Tag name
+ scope
+ entity.name.tag
+ settings
+
+ fontStyle
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Tag attribute
+ scope
+ entity.other.attribute-name
+ settings
+
+ fontStyle
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ Library function
+ scope
+ support.function
+ settings
+
+ fontStyle
+
+ foreground
+ #8be9fd
+
+
+
+ name
+ Library constant
+ scope
+ support.constant
+ settings
+
+ fontStyle
+
+ foreground
+ #6be5fd
+
+
+
+ name
+ Library class/type
+ scope
+ support.type, support.class
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #66d9ef
+
+
+
+ name
+ Library variable
+ scope
+ support.other.variable
+ settings
+
+ fontStyle
+
+
+
+
+ name
+ Support Other Namespace
+ scope
+ support.other.namespace
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #66d9ef
+
+
+
+ name
+ Invalid
+ scope
+ invalid
+ settings
+
+ background
+ #ff79c6
+ fontStyle
+
+ foreground
+ #F8F8F0
+
+
+
+ name
+ Invalid deprecated
+ scope
+ invalid.deprecated
+ settings
+
+ background
+ #bd93f9
+ foreground
+ #F8F8F0
+
+
+
+ name
+ JSON String
+ scope
+ meta.structure.dictionary.json string.quoted.double.json
+ settings
+
+ foreground
+ #CFCFC2
+
+
+
+ name
+ diff.header
+ scope
+ meta.diff, meta.diff.header
+ settings
+
+ foreground
+ #6272a4
+
+
+
+ name
+ diff.deleted
+ scope
+ markup.deleted
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ diff.inserted
+ scope
+ markup.inserted
+ settings
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ diff.changed
+ scope
+ markup.changed
+ settings
+
+ foreground
+ #E6DB74
+
+
+
+ scope
+ constant.numeric.line-number.find-in-files - match
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ scope
+ entity.name.filename
+ settings
+
+ foreground
+ #E6DB74
+
+
+
+ scope
+ message.error
+ settings
+
+ foreground
+ #F83333
+
+
+
+ name
+ JSON Punctuation
+ scope
+ punctuation.definition.string.begin.json - meta.structure.dictionary.value.json, punctuation.definition.string.end.json - meta.structure.dictionary.value.json
+ settings
+
+ foreground
+ #EEEEEE
+
+
+
+ name
+ JSON Structure
+ scope
+ meta.structure.dictionary.json string.quoted.double.json
+ settings
+
+ foreground
+ #8be9fd
+
+
+
+ name
+ JSON String
+ scope
+ meta.structure.dictionary.value.json string.quoted.double.json
+ settings
+
+ foreground
+ #f1fa8c
+
+
+
+ name
+ JSON: 6 deep
+ scope
+ meta meta meta meta meta meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ JSON: 5 deep
+ scope
+ meta meta meta meta meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #ffb86c
+
+
+
+ name
+ JSON: 4 deep
+ scope
+ meta meta meta meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ JSON: 3 deep
+ scope
+ meta meta meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ JSON: 2 deep
+ scope
+ meta meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ JSON: 1 deep
+ scope
+ meta meta.structure.dictionary.value string
+ settings
+
+ foreground
+ #ffb86c
+
+
+
+
+
+ name
+ Markup: strike
+ scope
+ markup.strike
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #FFB86C
+
+
+
+ name
+ Markup: bold
+ scope
+ markup.bold
+ settings
+
+ fontStyle
+ bold
+ foreground
+ #FFB86C
+
+
+
+ name
+ Markup: italic
+ scope
+ markup.italic
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #FFB86C
+
+
+
+ name
+ Markdown: heading
+ scope
+ markup.heading
+ settings
+
+ foreground
+ #8BE9FD
+
+
+
+ name
+ Markdown: List Items Punctuation
+ scope
+ punctuation.definition.list_item.markdown
+ settings
+
+ foreground
+ #FF79C6
+
+
+
+ name
+ Markdown: Blockquote
+ scope
+ markup.quote
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #6272A4
+
+
+
+ name
+ Markdown: Blockquote Punctuation
+ scope
+ punctuation.definition.blockquote.markdown
+ settings
+
+ fontStyle
+ italic
+ background
+ #6272A4
+ foreground
+ #6272A4
+
+
+
+ name
+ Markdown: Separator
+ scope
+ meta.separator
+ settings
+
+ foreground
+ #6272A4
+
+
+
+ name
+ Markup: raw inline
+ scope
+ text.html.markdown markup.raw.inline
+ settings
+
+ foreground
+ #50FA7B
+
+
+
+ name
+ Markup: underline
+ scope
+ markup.underline
+ settings
+
+ fontStyle
+ underline
+ foreground
+ #BD93F9
+
+
+
+ name
+ Markup: Raw block
+ scope
+ markup.raw.block
+ settings
+
+ foreground
+ #CFCFC2
+
+
+
+ name
+ Markdown: Raw Block fenced source
+ scope
+ markup.raw.block.fenced.markdown source
+ settings
+
+ foreground
+ #F8F8F2
+
+
+
+ name
+ Markdown: Fenced Bode Block
+ scope
+ punctuation.definition.fenced.markdown, variable.language.fenced.markdown
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #6272A4
+
+
+
+ name
+ Markdown: Fenced Language
+ scope
+ variable.language.fenced.markdown
+ settings
+
+ fontStyle
+ italic
+ foreground
+ #6272A4
+
+
+
+ name
+ Punctuation Accessor
+ scope
+ punctuation.accessor
+ settings
+
+ foreground
+ #FF79C6
+
+
+
+ name
+ Meta Function Return Type
+ scope
+ meta.function.return-type
+ settings
+
+ foreground
+ #FF79C6
+
+
+
+ name
+ Punctuation Section Block Begin
+ scope
+ punctuation.section.block.begin
+ settings
+
+ foreground
+ #ffffff
+
+
+
+ name
+ Punctuation Section Block End
+ scope
+ punctuation.section.block.end
+ settings
+
+ foreground
+ #ffffff
+
+
+
+ name
+ Punctuation Section Embedded Begin
+ scope
+ punctuation.section.embedded.begin
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Punctuation Section Embedded End
+ scope
+ punctuation.section.embedded.end
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Punctuation Separator Namespace
+ scope
+ punctuation.separator.namespace
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Variable Function
+ scope
+ variable.function
+ settings
+
+ foreground
+ #50fa7b
+
+
+
+ name
+ Variable Other
+ scope
+ variable.other
+ settings
+
+ foreground
+ #ffffff
+
+
+
+ name
+ Variable Language
+ scope
+ variable.language
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ Entity Name Module Ruby
+ scope
+ entity.name.module.ruby
+ settings
+
+ foreground
+ #8be9fd
+
+
+
+ name
+ Entity Name Constant Ruby
+ scope
+ entity.name.constant.ruby
+ settings
+
+ foreground
+ #bd93f9
+
+
+
+ name
+ Support Function Builtin Ruby
+ scope
+ support.function.builtin.ruby
+ settings
+
+ foreground
+ #ffffff
+
+
+
+ name
+ Storage Type Namespace CS
+ scope
+ storage.type.namespace.cs
+ settings
+
+ foreground
+ #ff79c6
+
+
+
+ name
+ Entity Name Namespace CS
+ scope
+ entity.name.namespace.cs
+ settings
+
+ foreground
+ #8be9fd
+
+
+
+ uuid
+ 83091B89-765E-4F0D-9275-0EC6CB084126
+ colorSpaceName
+ sRGB
+ semanticClass
+ theme.dracula
+ author
+ Zeno Rocha
+
+
--
cgit v1.2.3