From 70fd3c251fe5d459d655979c2f228f35b4400f48 Mon Sep 17 00:00:00 2001 From: awy Date: Thu, 9 Oct 2025 03:59:15 +0300 Subject: up --- .../flavors/everforest-medium.yazi/flavor.toml | 229 ++ .../flavors/everforest-medium.yazi/tmtheme.xml | 3186 ++++++++++++++++++++ .config/yazi/theme.toml | 1366 +++++---- 3 files changed, 4112 insertions(+), 669 deletions(-) create mode 100644 .config/yazi/flavors/everforest-medium.yazi/flavor.toml create mode 100644 .config/yazi/flavors/everforest-medium.yazi/tmtheme.xml (limited to '.config/yazi') diff --git a/.config/yazi/flavors/everforest-medium.yazi/flavor.toml b/.config/yazi/flavors/everforest-medium.yazi/flavor.toml new file mode 100644 index 0000000..6ba84b7 --- /dev/null +++ b/.config/yazi/flavors/everforest-medium.yazi/flavor.toml @@ -0,0 +1,229 @@ +# vim:fileencoding=utf-8:foldmethod=marker + +# : Manager {{{ + +[mgr] +cwd = { fg = "#7fbbb3" } + +# Hovered +hovered = { reversed = true } +preview_hovered = { underline = true } + +# Find +find_keyword = { fg = "#dbbc7f", bold = true, italic = true, underline = true } +find_position = { fg = "#d699b6", bg = "reset", bold = true, italic = true } + +# Symlink +symlink_target = { italic = true } + +# Marker +marker_copied = { fg = "#a7c080", bg = "#a7c080" } +marker_cut = { fg = "#e67e80", bg = "#e67e80" } +marker_marked = { fg = "#7fbbb3", bg = "#7fbbb3" } +marker_selected = { fg = "#dbbc7f", bg = "#dbbc7f" } + +# Count +count_copied = { fg = "#343f44", bg = "#a7c080" } +count_cut = { fg = "#343f44", bg = "#e67e80" } +count_selected = { fg = "#343f44", bg = "#dbbc7f" } + +# Border +border_symbol = "│" +border_style = { fg = "#4f585e" } + +# Highlighting +syntect_theme = "" + +# : }}} + + +# : Tabs {{{ + +[tabs] +active = { bg = "#7fbbb3", bold = true } +inactive = { fg = "#7fbbb3", bg = "#4f585e" } + +# Separator +sep_inner = { open = "", close = "" } +sep_outer = { open = "", close = "" } + +# : }}} + + +# : Mode {{{ + +[mode] +normal_main = { fg = "#3d484d", bg = "#a7c080", bold = true } +normal_alt = { fg = "#7fbbb3", bg = "#4f585e", bold = true } + +# Select mode +select_main = { fg = "#3d484d", bg = "#e67e80", bold = true } +select_alt = { fg = "#7fbbb3", bg = "#4f585e", bold = true } + +# Unset mode +unset_main = { fg = "#3d484d", bg = "#7fbbb3", bold = true } +unset_alt = { fg = "#7fbbb3", bg = "#4f585e", bold = true } + +# : }}} + + +# : Status bar {{{ + +[status] +overall = {} +sep_left = { open = "", close = "" } +sep_right = { open = "", close = "" } + +# Permissions +permissions_s = { fg = "#2d353b" } +permissions_t = { fg = "#a7c080" } +permissions_r = { fg = "#dbbc7f" } +permissions_w = { fg = "#e67e80" } +permissions_x = { fg = "#7fbbb3" } + +# Progress +progress_label = { bold = true } +progress_normal = { fg = "#7fbbb3", bg = "#232a2e" } +progress_error = { fg = "#e67e80", bg = "#232a2e" } + +# : }}} + + +# : Which {{{ + +[which] +cols = 3 +mask = { bg = "#2d353b" } +cand = { fg = "#7fbbb3" } +rest = { fg = "#2d353b" } +desc = { fg = "#d699b6" } +separator = "  " +separator_style = { fg = "#2d353b" } + +# : }}} + + +# : Confirmation {{{ + +[confirm] +border = { fg = "#7fbbb3" } +title = { fg = "#7fbbb3" } +body = {} +list = {} +btn_yes = { reversed = true } +btn_no = {} +btn_labels = [ " [Y]es ", " (N)o " ] + +# : }}} + + +# : Spotter {{{ + +[spot] +border = { fg = "#7fbbb3" } +title = { fg = "#7fbbb3" } + +# Table +tbl_col = { fg = "#7fbbb3" } +tbl_cell = { fg = "#dbbc7f", reversed = true } + +# : }}} + + +# : Notification {{{ + +[notify] +title_info = { fg = "#a7c080" } +title_warn = { fg = "#dbbc7f" } +title_error = { fg = "#e67e80" } + +# Icons +icon_info = "" +icon_warn = "" +icon_error = "" + +# : }}} + + +# : Picker {{{ + +[pick] +border = { fg = "#7fbbb3" } +active = { fg = "#d699b6", bold = true } +inactive = {} + +# : }}} + + +# : Input {{{ + +[input] +border = { fg = "#7fbbb3" } +title = {} +value = {} +selected = { reversed = true } + +# : }}} + + +# : Completion {{{ + +[cmp] +border = { fg = "#7fbbb3" } +active = { reversed = true } +inactive = {} + +# Icons +icon_file = "" +icon_folder = "" +icon_command = "" + +# : }}} + + +# : Task manager {{{ + +[tasks] +border = { fg = "#7fbbb3" } +title = {} +hovered = { fg = "#d699b6", underline = true } + +# : }}} + + +# : Help menu {{{ + +[help] +on = { fg = "#7fbbb3" } +run = { fg = "#d699b6" } +desc = {} +hovered = { reversed = true, bold = true } +footer = { fg = "#2d353b", bg = "#d3c6aa" } + +# : }}} + + +# : File-specific styles {{{ + +[filetype] + +rules = [ + # Images + { mime = "image/*", fg = "#7fbbb3" }, + + # Media + { mime = "{audio,video}/*", fg = "#d699b6" }, + + # Archives + { mime = "application/*zip", fg = "#e67e80" }, + { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#e67e80" }, + + # Documents + { mime = "application/{pdf,doc,rtf,vnd.*}", fg = "#7fbbb3" }, + + # Fallback + { name = "*", fg = "#83c092" }, + { name = "*/", fg = "#a7c080" } +] + +# : }}} diff --git a/.config/yazi/flavors/everforest-medium.yazi/tmtheme.xml b/.config/yazi/flavors/everforest-medium.yazi/tmtheme.xml new file mode 100644 index 0000000..e063c97 --- /dev/null +++ b/.config/yazi/flavors/everforest-medium.yazi/tmtheme.xml @@ -0,0 +1,3186 @@ + + + + + name + Everforest Dark + settings + + + settings + + accent + #a7c080 + background + #2d353b + caret + #d3c6aa + foreground + #d3c6aa + lineHighlight + #3d484d90 + selection + #475258c0 + activeGuide + #9aa79d20 + findHighlight + #899c4040 + misspelling + #da6362 + + + + name + GitGutter deleted + scope + markup.deleted.git_gutter + settings + + foreground + #e67e80a0 + + + + name + GitGutter inserted + scope + markup.inserted.git_gutter + settings + + foreground + #a7c080a0 + + + + name + GitGutter changed + scope + markup.changed.git_gutter + settings + + foreground + #7fbbb3a0 + + + + name + GitGutter untracked + scope + markup.untracked.git_gutter + settings + + foreground + #dbbc7fa0 + + + + name + GitGutter ignored + scope + markup.ignored.git_gutter + settings + + foreground + #4f585e + + + + name + GitGutter comment + scope + comment.line.annotation.git_gutter + settings + + foreground + + name + Comment + scope + comment, string.comment, punctuation.definition.comment + settings + + foreground + #859289 + fontStyle + italic + + + + + + name + Keyword + scope + keyword, storage.type.function, storage.type.class, storage.type.enum, storage.type.interface, storage.type.property, keyword.operator.new, keyword.operator.expression, keyword.operator.new, keyword.operator.delete, storage.type.extends + settings + + foreground + #e67e80 + + + + name + Debug + scope + keyword.other.debugger + settings + + foreground + #e67e80 + + + + name + Storage + scope + storage, modifier, keyword.var, entity.name.tag, keyword.control.case, keyword.control.switch + settings + + foreground + #e69875 + + + + name + Operator + scope + keyword.operator + settings + + foreground + #e69875 + + + + name + String + scope + string, punctuation.definition.string.end, punctuation.definition.string.begin, punctuation.definition.string.template.begin, punctuation.definition.string.template.end + settings + + foreground + #dbbc7f + + + + name + Attribute + scope + entity.other.attribute-name + settings + + foreground + #dbbc7f + + + + name + String Escape + scope + constant.character.escape, punctuation.quasi.element, punctuation.definition.template-expression, punctuation.section.embedded, storage.type.format, constant.other.placeholder, constant.other.placeholder, variable.interpolation + settings + + foreground + #a7c080 + + + + name + Function + scope + entity.name.function, support.function, meta.function, meta.function-call, meta.definition.method + settings + + foreground + #a7c080 + + + + name + Preproc + scope + keyword.control.at-rule, keyword.control.import, keyword.control.export, storage.type.namespace, punctuation.decorator, keyword.control.directive, keyword.preprocessor, punctuation.definition.preprocessor, punctuation.definition.directive, keyword.other.import, keyword.other.package, entity.name.type.namespace, entity.name.scope-resolution, keyword.other.using, keyword.package, keyword.import, keyword.map + settings + + foreground + #83c092 + + + + name + Annotation + scope + storage.type.annotation + settings + + foreground + #83c092 + + + + name + Label + scope + entity.name.label, constant.other.label + settings + + foreground + #83c092 + + + + name + Modules + scope + support.module, support.node, support.other.module, support.type.object.module, entity.name.type.module, entity.name.type.class.module, keyword.control.module + settings + + foreground + #83c092 + + + + name + Type + scope + storage.type, support.type, entity.name.type, keyword.type + settings + + foreground + #7fbbb3 + + + + name + Class + scope + entity.name.type.class, support.class, entity.name.class, entity.other.inherited-class, storage.class + settings + + foreground + #7fbbb3 + + + + name + Number + scope + constant.numeric + settings + + foreground + #d699b6 + + + + name + Boolean + scope + constant.language.boolean + settings + + foreground + #d699b6 + + + + name + Macro + scope + entity.name.function.preprocessor + settings + + foreground + #d699b6 + + + + name + Special identifier + scope + variable.language.this, variable.language.self, variable.language.super, keyword.other.this, variable.language.special, constant.language.null, constant.language.undefined, constant.language.nan + settings + + foreground + #d699b6 + + + + name + Constant + scope + constant.language, support.constant + settings + + foreground + #d699b6 + + + + name + Identifier + scope + variable, support.variable, meta.definition.variable + settings + + foreground + #d3c6aa + + + + name + Property + scope + variable.object.property, support.variable.property, variable.other.property, variable.other.object.property, variable.other.enummember, variable.other.member, meta.object-literal.key + settings + + foreground + #d3c6aa + + + + name + Delimiter + scope + punctuation, meta.brace, meta.delimiter, meta.bracket + settings + + foreground + #d3c6aa + + + + name + Markdown heading1 + scope + heading.1.markdown, markup.heading.setext.1.markdown + settings + + foreground + #e67e80 + fontStyle + bold + + + + name + Markdown heading2 + scope + heading.2.markdown, markup.heading.setext.2.markdown + settings + + foreground + #e69875 + fontStyle + bold + + + + name + Markdown heading3 + scope + heading.3.markdown + settings + + foreground + #dbbc7f + fontStyle + bold + + + + name + Markdown heading4 + scope + heading.4.markdown + settings + + foreground + #a7c080 + fontStyle + bold + + + + name + Markdown heading5 + scope + heading.5.markdown + settings + + foreground + #7fbbb3 + fontStyle + bold + + + + name + Markdown heading6 + scope + heading.6.markdown + settings + + foreground + #d699b6 + fontStyle + bold + + + + name + Markdown heading delimiter + scope + punctuation.definition.heading.markdown + settings + + foreground + #859289 + fontStyle + regular + + + + name + Markdown link + scope + string.other.link.title.markdown, constant.other.reference.link.markdown, string.other.link.description.markdown + settings + + foreground + #d699b6 + fontStyle + regular + + + + name + Markdown link text + scope + markup.underline.link.image.markdown, markup.underline.link.markdown + settings + + foreground + #a7c080 + fontStyle + underline + + + + name + Markdown delimiter + scope + punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.italic.markdown, punctuation.definition.quote.begin.markdown, punctuation.definition.metadata.markdown, punctuation.separator.key-value.markdown, punctuation.definition.constant.markdown + settings + + foreground + #859289 + + + + name + Markdown bold delimiter + scope + punctuation.definition.bold.markdown + settings + + foreground + #859289 + fontStyle + regular + + + + name + Markdown separator delimiter + scope + meta.separator.markdown, punctuation.definition.constant.begin.markdown, punctuation.definition.constant.end.markdown + settings + + foreground + #859289 + fontStyle + bold + + + + name + Markdown italic + scope + markup.italic + settings + + fontStyle + italic + + + + name + Markdown bold + scope + markup.bold + settings + + fontStyle + bold + + + + name + Markdown bold italic + scope + markup.bold markup.italic, markup.italic markup.bold + settings + + fontStyle + italic bold + + + + name + Markdown code delimiter + scope + punctuation.definition.markdown, punctuation.definition.raw.markdown + settings + + foreground + #dbbc7f + + + + name + Markdown code type + scope + fenced_code.block.language + settings + + foreground + #dbbc7f + + + + name + Markdown code block + scope + markup.fenced_code.block.markdown, markup.inline.raw.string.markdown + settings + + foreground + #a7c080 + + + + name + Markdown list mark + scope + punctuation.definition.list.begin.markdown + settings + + foreground + #e67e80 + + + + name + reStructuredText heading + scope + punctuation.definition.heading.restructuredtext + settings + + foreground + #e69875 + fontStyle + bold + + + + name + reStructuredText delimiter + scope + punctuation.definition.field.restructuredtext, punctuation.separator.key-value.restructuredtext, punctuation.definition.directive.restructuredtext, punctuation.definition.constant.restructuredtext, punctuation.definition.italic.restructuredtext, punctuation.definition.table.restructuredtext + settings + + foreground + #859289 + + + + name + reStructuredText delimiter bold + scope + punctuation.definition.bold.restructuredtext + settings + + foreground + #859289 + fontStyle + regular + + + + name + reStructuredText aqua + scope + entity.name.tag.restructuredtext, punctuation.definition.link.restructuredtext, punctuation.definition.raw.restructuredtext, punctuation.section.raw.restructuredtext + settings + + foreground + #83c092 + + + + name + reStructuredText purple + scope + constant.other.footnote.link.restructuredtext + settings + + foreground + #d699b6 + + + + name + reStructuredText red + scope + support.directive.restructuredtext + settings + + foreground + #e67e80 + + + + name + reStructuredText green + scope + entity.name.directive.restructuredtext, markup.raw.restructuredtext, markup.raw.inner.restructuredtext, string.other.link.title.restructuredtext + settings + + foreground + #a7c080 + + + + name + LaTex delimiter + scope + punctuation.definition.function.latex, punctuation.definition.function.tex, punctuation.definition.keyword.latex, constant.character.newline.tex, punctuation.definition.keyword.tex + settings + + foreground + #859289 + + + + name + LaTex red + scope + support.function.be.latex + settings + + foreground + #e67e80 + + + + name + LaTex orange + scope + support.function.section.latex, keyword.control.table.cell.latex, keyword.control.table.newline.latex + settings + + foreground + #e69875 + + + + name + LaTex yellow + scope + support.class.latex, variable.parameter.latex, variable.parameter.function.latex, variable.parameter.definition.label.latex, constant.other.reference.label.latex + settings + + foreground + #dbbc7f + + + + name + LaTex purple + scope + keyword.control.preamble.latex + settings + + foreground + #d699b6 + + + + name + Html grey + scope + punctuation.separator.namespace.xml + settings + + foreground + #859289 + + + + name + Html orange + scope + entity.name.tag.html, entity.name.tag.xml, entity.name.tag.localname.xml + settings + + foreground + #e69875 + + + + name + Html yellow + scope + entity.other.attribute-name.html, entity.other.attribute-name.xml, entity.other.attribute-name.localname.xml + settings + + foreground + #dbbc7f + + + + name + Html green + scope + string.quoted.double.html, string.quoted.single.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.separator.key-value.html, punctuation.definition.string.begin.xml, punctuation.definition.string.end.xml, string.quoted.double.xml, string.quoted.single.xml, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.definition.tag.xml, meta.tag.xml, meta.tag.preprocessor.xml, meta.tag.other.html, meta.tag.block.any.html, meta.tag.inline.any.html + settings + + foreground + #a7c080 + + + + name + Html purple + scope + variable.language.documentroot.xml, meta.tag.sgml.doctype.xml + settings + + foreground + #d699b6 + + + + name + Proto yellow + scope + storage.type.proto + settings + + foreground + #dbbc7f + + + + name + Proto green + scope + string.quoted.double.proto.syntax, string.quoted.single.proto.syntax, string.quoted.double.proto, string.quoted.single.proto + settings + + foreground + #a7c080 + + + + name + Proto aqua + scope + entity.name.class.proto, entity.name.class.message.proto + settings + + foreground + #83c092 + + + + name + CSS grey + scope + punctuation.definition.entity.css, punctuation.separator.key-value.css, punctuation.terminator.rule.css, punctuation.separator.list.comma.css + settings + + foreground + #859289 + + + + name + CSS red + scope + entity.other.attribute-name.class.css + settings + + foreground + #e67e80 + + + + name + CSS orange + scope + keyword.other.unit + settings + + foreground + #e69875 + + + + name + CSS yellow + scope + entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css + settings + + foreground + #dbbc7f + + + + name + CSS green + scope + string.quoted.single.css, string.quoted.double.css, support.constant.property-value.css, meta.property-value.css, punctuation.definition.string.begin.css, punctuation.definition.string.end.css, constant.numeric.css, support.constant.font-name.css, variable.parameter.keyframe-list.css + settings + + foreground + #a7c080 + + + + name + CSS aqua + scope + support.type.property-name.css + settings + + foreground + #83c092 + + + + name + CSS blue + scope + support.type.vendored.property-name.css + settings + + foreground + #7fbbb3 + + + + name + CSS purple + scope + entity.name.tag.css, entity.other.keyframe-offset.css, punctuation.definition.keyword.css, keyword.control.at-rule.keyframes.css, meta.selector.css + settings + + foreground + #d699b6 + + + + name + SASS grey + scope + punctuation.definition.entity.scss, punctuation.separator.key-value.scss, punctuation.terminator.rule.scss, punctuation.separator.list.comma.scss + settings + + foreground + #859289 + + + + name + SASS orange + scope + keyword.control.at-rule.keyframes.scss + settings + + foreground + #e69875 + + + + name + SASS yellow + scope + punctuation.definition.interpolation.begin.bracket.curly.scss, punctuation.definition.interpolation.end.bracket.curly.scss + settings + + foreground + #dbbc7f + + + + name + SASS green + scope + punctuation.definition.string.begin.scss, punctuation.definition.string.end.scss, string.quoted.double.scss, string.quoted.single.scss, constant.character.css.sass, meta.property-value.scss + settings + + foreground + #a7c080 + + + + name + SASS purple + scope + keyword.control.at-rule.include.scss, keyword.control.at-rule.use.scss, keyword.control.at-rule.mixin.scss, keyword.control.at-rule.extend.scss, keyword.control.at-rule.import.scss + settings + + foreground + #d699b6 + + + + name + Stylus white + scope + meta.function.stylus + settings + + foreground + #d3c6aa + + + + name + Stylus yellow + scope + entity.name.function.stylus + settings + + foreground + #dbbc7f + + + + name + JavaScript white + scope + string.unquoted.js + settings + + foreground + #d3c6aa + + + + name + JavaScript grey + scope + punctuation.accessor.js, punctuation.separator.key-value.js, punctuation.separator.label.js, keyword.operator.accessor.js + settings + + foreground + #859289 + + + + name + JavaScript red + scope + punctuation.definition.block.tag.jsdoc + settings + + foreground + #e67e80 + + + + name + JavaScript orange + scope + storage.type.js, storage.type.function.arrow.js + settings + + foreground + #e69875 + + + + name + JSX white + scope + JSXNested + settings + + foreground + #d3c6aa + + + + name + JSX green + scope + punctuation.definition.tag.jsx, entity.other.attribute-name.jsx, punctuation.definition.tag.begin.js.jsx, punctuation.definition.tag.end.js.jsx, entity.other.attribute-name.js.jsx + settings + + foreground + #a7c080 + + + + name + TypeScript white + scope + entity.name.type.module.ts + settings + + foreground + #d3c6aa + + + + name + TypeScript grey + scope + keyword.operator.type.annotation.ts, punctuation.accessor.ts, punctuation.separator.key-value.ts + settings + + foreground + #859289 + + + + name + TypeScript green + scope + punctuation.definition.tag.directive.ts, entity.other.attribute-name.directive.ts + settings + + foreground + #a7c080 + + + + name + TypeScript aqua + scope + entity.name.type.ts, entity.name.type.interface.ts, entity.other.inherited-class.ts, entity.name.type.alias.ts, entity.name.type.class.ts, entity.name.type.enum.ts + settings + + foreground + #83c092 + + + + name + TypeScript orange + scope + storage.type.ts, storage.type.function.arrow.ts, storage.type.type.ts + settings + + foreground + #e69875 + + + + name + TypeScript blue + scope + entity.name.type.module.ts + settings + + foreground + #7fbbb3 + + + + name + TypeScript purple + scope + keyword.control.import.ts, keyword.control.export.ts, storage.type.namespace.ts + settings + + foreground + #d699b6 + + + + name + TSX white + scope + entity.name.type.module.tsx + settings + + foreground + #d3c6aa + + + + name + TSX grey + scope + keyword.operator.type.annotation.tsx, punctuation.accessor.tsx, punctuation.separator.key-value.tsx + settings + + foreground + #859289 + + + + name + TSX green + scope + punctuation.definition.tag.directive.tsx, entity.other.attribute-name.directive.tsx, punctuation.definition.tag.begin.tsx, punctuation.definition.tag.end.tsx, entity.other.attribute-name.tsx + settings + + foreground + #a7c080 + + + + name + TSX aqua + scope + entity.name.type.tsx, entity.name.type.interface.tsx, entity.other.inherited-class.tsx, entity.name.type.alias.tsx, entity.name.type.class.tsx, entity.name.type.enum.tsx + settings + + foreground + #83c092 + + + + name + TSX blue + scope + entity.name.type.module.tsx + settings + + foreground + #7fbbb3 + + + + name + TSX purple + scope + keyword.control.import.tsx, keyword.control.export.tsx, storage.type.namespace.tsx + settings + + foreground + #d699b6 + + + + name + TSX orange + scope + storage.type.tsx, storage.type.function.arrow.tsx, storage.type.type.tsx, support.class.component.tsx + settings + + foreground + #e69875 + + + + name + CoffeeScript orange + scope + storage.type.function.coffee + settings + + foreground + #e69875 + + + + name + PureScript white + scope + meta.type-signature.purescript + settings + + foreground + #d3c6aa + + + + name + PureScript orange + scope + keyword.other.double-colon.purescript, keyword.other.arrow.purescript, keyword.other.big-arrow.purescript + settings + + foreground + #e69875 + + + + name + PureScript yellow + scope + entity.name.function.purescript + settings + + foreground + #dbbc7f + + + + name + PureScript green + scope + string.quoted.single.purescript, string.quoted.double.purescript, punctuation.definition.string.begin.purescript, punctuation.definition.string.end.purescript, string.quoted.triple.purescript, entity.name.type.purescript + settings + + foreground + #a7c080 + + + + name + PureScript purple + scope + support.other.module.purescript + settings + + foreground + #d699b6 + + + + name + Dart grey + scope + punctuation.dot.dart + settings + + foreground + #859289 + + + + name + Dart orange + scope + storage.type.primitive.dart + settings + + foreground + #e69875 + + + + name + Dart yellow + scope + support.class.dart + settings + + foreground + #dbbc7f + + + + name + Dart green + scope + entity.name.function.dart, string.interpolated.single.dart, string.interpolated.double.dart + settings + + foreground + #a7c080 + + + + name + Dart blue + scope + variable.language.dart + settings + + foreground + #7fbbb3 + + + + name + Dart purple + scope + keyword.other.import.dart, storage.type.annotation.dart + settings + + foreground + #d699b6 + + + + name + Pug red + scope + entity.other.attribute-name.class.pug + settings + + foreground + #e67e80 + + + + name + Pug orange + scope + storage.type.function.pug + settings + + foreground + #e69875 + + + + name + Pug aqua + scope + entity.other.attribute-name.tag.pug + settings + + foreground + #83c092 + + + + name + Pug purple + scope + entity.name.tag.pug, storage.type.import.include.pug + settings + + foreground + #d699b6 + + + + name + C white + scope + meta.function-call.c, storage.modifier.array.bracket.square.c, meta.function.definition.parameters.c + settings + + foreground + #d3c6aa + + + + name + C grey + scope + punctuation.separator.dot-access.c, constant.character.escape.line-continuation.c + settings + + foreground + #859289 + + + + name + C red + scope + keyword.control.directive.include.c, punctuation.definition.directive.c, keyword.control.directive.pragma.c, keyword.control.directive.line.c, keyword.control.directive.define.c, keyword.control.directive.conditional.c, keyword.control.directive.diagnostic.error.c, keyword.control.directive.undef.c, keyword.control.directive.conditional.ifdef.c, keyword.control.directive.endif.c, keyword.control.directive.conditional.ifndef.c, keyword.control.directive.conditional.if.c, keyword.control.directive.else.c + settings + + foreground + #e67e80 + + + + name + C orange + scope + punctuation.separator.pointer-access.c + settings + + foreground + #e69875 + + + + name + C aqua + scope + variable.other.member.c + settings + + foreground + #83c092 + + + + name + C++ white + scope + meta.function-call.cpp, storage.modifier.array.bracket.square.cpp, meta.function.definition.parameters.cpp, meta.body.function.definition.cpp + settings + + foreground + #d3c6aa + + + + name + C++ grey + scope + punctuation.separator.dot-access.cpp, constant.character.escape.line-continuation.cpp + settings + + foreground + #859289 + + + + name + C++ red + scope + keyword.control.directive.include.cpp, punctuation.definition.directive.cpp, keyword.control.directive.pragma.cpp, keyword.control.directive.line.cpp, keyword.control.directive.define.cpp, keyword.control.directive.conditional.cpp, keyword.control.directive.diagnostic.error.cpp, keyword.control.directive.undef.cpp, keyword.control.directive.conditional.ifdef.cpp, keyword.control.directive.endif.cpp, keyword.control.directive.conditional.ifndef.cpp, keyword.control.directive.conditional.if.cpp, keyword.control.directive.else.cpp, storage.type.namespace.definition.cpp, keyword.other.using.directive.cpp, storage.type.struct.cpp + settings + + foreground + #e67e80 + + + + name + C++ orange + scope + punctuation.separator.pointer-access.cpp, punctuation.section.angle-brackets.begin.template.call.cpp, punctuation.section.angle-brackets.end.template.call.cpp + settings + + foreground + #e69875 + + + + name + C++ aqua + scope + variable.other.member.cpp + settings + + foreground + #83c092 + + + + name + C# red + scope + keyword.other.using.cs + settings + + foreground + #e67e80 + + + + name + C# yellow + scope + keyword.type.cs, constant.character.escape.cs, punctuation.definition.interpolation.begin.cs, punctuation.definition.interpolation.end.cs + settings + + foreground + #dbbc7f + + + + name + C# green + scope + string.quoted.double.cs, string.quoted.single.cs, punctuation.definition.string.begin.cs, punctuation.definition.string.end.cs + settings + + foreground + #a7c080 + + + + name + C# aqua + scope + variable.other.object.property.cs + settings + + foreground + #83c092 + + + + name + C# purple + scope + entity.name.type.namespace.cs + settings + + foreground + #d699b6 + + + + name + F# white + scope + keyword.symbol.fsharp, constant.language.unit.fsharp + settings + + foreground + #d3c6aa + + + + name + F# yellow + scope + keyword.format.specifier.fsharp, entity.name.type.fsharp + settings + + foreground + #dbbc7f + + + + name + F# green + scope + string.quoted.double.fsharp, string.quoted.single.fsharp, punctuation.definition.string.begin.fsharp, punctuation.definition.string.end.fsharp + settings + + foreground + #a7c080 + + + + name + F# blue + scope + entity.name.section.fsharp + settings + + foreground + #7fbbb3 + + + + name + F# purple + scope + support.function.attribute.fsharp + settings + + foreground + #d699b6 + + + + name + Java grey + scope + punctuation.separator.java, punctuation.separator.period.java + settings + + foreground + #859289 + + + + name + Java red + scope + keyword.other.import.java, keyword.other.package.java + settings + + foreground + #e67e80 + + + + name + Java orange + scope + storage.type.function.arrow.java, keyword.control.ternary.java + settings + + foreground + #e69875 + + + + name + Java aqua + scope + variable.other.property.java + settings + + foreground + #83c092 + + + + name + Java purple + scope + variable.language.wildcard.java, storage.modifier.import.java, storage.type.annotation.java, punctuation.definition.annotation.java, storage.modifier.package.java, entity.name.type.module.java + settings + + foreground + #d699b6 + + + + name + Kotlin red + scope + keyword.other.import.kotlin + settings + + foreground + #e67e80 + + + + name + Kotlin orange + scope + storage.type.kotlin + settings + + foreground + #e69875 + + + + name + Kotlin aqua + scope + constant.language.kotlin + settings + + foreground + #83c092 + + + + name + Kotlin purple + scope + entity.name.package.kotlin, storage.type.annotation.kotlin + settings + + foreground + #d699b6 + + + + name + Scala purple + scope + entity.name.package.scala + settings + + foreground + #d699b6 + + + + name + Scala blue + scope + constant.language.scala + settings + + foreground + #7fbbb3 + + + + name + Scala aqua + scope + entity.name.import.scala + settings + + foreground + #83c092 + + + + name + Scala green + scope + string.quoted.double.scala, string.quoted.single.scala, punctuation.definition.string.begin.scala, punctuation.definition.string.end.scala, string.quoted.double.interpolated.scala, string.quoted.single.interpolated.scala, string.quoted.triple.scala + settings + + foreground + #a7c080 + + + + name + Scala yellow + scope + entity.name.class, entity.other.inherited-class.scala + settings + + foreground + #dbbc7f + + + + name + Scala orange + scope + keyword.declaration.stable.scala, keyword.other.arrow.scala + settings + + foreground + #e69875 + + + + name + Scala red + scope + keyword.other.import.scala + settings + + foreground + #e67e80 + + + + name + Groovy white + scope + keyword.operator.navigation.groovy, meta.method.body.java, meta.definition.method.groovy, meta.definition.method.signature.java + settings + + foreground + #d3c6aa + + + + name + Scala grey + scope + punctuation.separator.groovy + settings + + foreground + #859289 + + + + name + Scala red + scope + keyword.other.import.groovy, keyword.other.package.groovy, keyword.other.import.static.groovy + settings + + foreground + #e67e80 + + + + name + Groovy orange + scope + storage.type.def.groovy + settings + + foreground + #e69875 + + + + name + Groovy green + scope + variable.other.interpolated.groovy, meta.method.groovy + settings + + foreground + #a7c080 + + + + name + Groovy aqua + scope + storage.modifier.import.groovy, storage.modifier.package.groovy + settings + + foreground + #83c092 + + + + name + Groovy purple + scope + storage.type.annotation.groovy + settings + + foreground + #d699b6 + + + + name + Go red + scope + keyword.type.go + settings + + foreground + #e67e80 + + + + name + Go aqua + scope + entity.name.package.go + settings + + foreground + #83c092 + + + + name + Go purple + scope + keyword.import.go, keyword.package.go + settings + + foreground + #d699b6 + + + + name + Rust white + scope + entity.name.type.mod.rust + settings + + foreground + #d3c6aa + + + + name + Rust grey + scope + keyword.operator.path.rust, keyword.operator.member-access.rust + settings + + foreground + #859289 + + + + name + Rust orange + scope + storage.type.rust + settings + + foreground + #e69875 + + + + name + Rust aqua + scope + support.constant.core.rust + settings + + foreground + #83c092 + + + + name + Rust purple + scope + meta.attribute.rust, variable.language.rust, storage.type.module.rust + settings + + foreground + #d699b6 + + + + name + Swift white + scope + meta.function-call.swift, support.function.any-method.swift + settings + + foreground + #d3c6aa + + + + name + Swift aqua + scope + support.variable.swift + settings + + foreground + #83c092 + + + + name + PHP white + scope + keyword.operator.class.php + settings + + foreground + #d3c6aa + + + + name + PHP orange + scope + storage.type.trait.php + settings + + foreground + #e69875 + + + + name + PHP aqua + scope + constant.language.php, support.other.namespace.php + settings + + foreground + #83c092 + + + + name + PHP blue + scope + storage.type.modifier.access.control.public.cpp, storage.type.modifier.access.control.private.cpp + settings + + foreground + #7fbbb3 + + + + name + PHP purple + scope + keyword.control.import.include.php, storage.type.php + settings + + foreground + #d699b6 + + + + name + Python white + scope + meta.function-call.arguments.python + settings + + foreground + #d3c6aa + + + + name + Python grey + scope + punctuation.definition.decorator.python, punctuation.separator.period.python + settings + + foreground + #859289 + + + + name + Python aqua + scope + constant.language.python + settings + + foreground + #83c092 + + + + name + Python purple + scope + keyword.control.import.python, keyword.control.import.from.python + settings + + foreground + #d699b6 + + + + name + Lua aqua + scope + constant.language.lua + settings + + foreground + #83c092 + + + + name + Lua blue + scope + entity.name.class.lua + settings + + foreground + #7fbbb3 + + + + name + Ruby white + scope + meta.function.method.with-arguments.ruby + settings + + foreground + #d3c6aa + + + + name + Ruby grey + scope + punctuation.separator.method.ruby + settings + + foreground + #859289 + + + + name + Ruby orange + scope + keyword.control.pseudo-method.ruby, storage.type.variable.ruby + settings + + foreground + #e69875 + + + + name + Ruby green + scope + keyword.other.special-method.ruby + settings + + foreground + #a7c080 + + + + name + Ruby purple + scope + keyword.control.module.ruby, punctuation.definition.constant.ruby + settings + + foreground + #d699b6 + + + + name + Ruby yellow + scope + string.regexp.character-class.ruby,string.regexp.interpolated.ruby,punctuation.definition.character-class.ruby,string.regexp.group.ruby, punctuation.section.regexp.ruby, punctuation.definition.group.ruby + settings + + foreground + #dbbc7f + + + + name + Ruby blue + scope + variable.other.constant.ruby + settings + + foreground + #7fbbb3 + + + + name + Haskell orange + scope + keyword.other.arrow.haskell, keyword.other.big-arrow.haskell, keyword.other.double-colon.haskell + settings + + foreground + #e69875 + + + + name + Haskell yellow + scope + storage.type.haskell + settings + + foreground + #dbbc7f + + + + name + Haskell green + scope + constant.other.haskell, string.quoted.double.haskell, string.quoted.single.haskell, punctuation.definition.string.begin.haskell, punctuation.definition.string.end.haskell + settings + + foreground + #a7c080 + + + + name + Haskell blue + scope + entity.name.function.haskell + settings + + foreground + #7fbbb3 + + + + name + Haskell aqua + scope + entity.name.namespace, meta.preprocessor.haskell + settings + + foreground + #83c092 + + + + name + Julia red + scope + keyword.control.import.julia, keyword.control.export.julia + settings + + foreground + #e67e80 + + + + name + Julia orange + scope + keyword.storage.modifier.julia + settings + + foreground + #e69875 + + + + name + Julia aqua + scope + constant.language.julia + settings + + foreground + #83c092 + + + + name + Julia purple + scope + support.function.macro.julia + settings + + foreground + #d699b6 + + + + name + Elm white + scope + keyword.other.period.elm + settings + + foreground + #d3c6aa + + + + name + Elm yellow + scope + storage.type.elm + settings + + foreground + #dbbc7f + + + + name + R orange + scope + keyword.other.r + settings + + foreground + #e69875 + + + + name + R green + scope + entity.name.function.r, variable.function.r + settings + + foreground + #a7c080 + + + + name + R aqua + scope + constant.language.r + settings + + foreground + #83c092 + + + + name + R purple + scope + entity.namespace.r + settings + + foreground + #d699b6 + + + + name + Erlang grey + scope + punctuation.separator.module-function.erlang, punctuation.section.directive.begin.erlang + settings + + foreground + #859289 + + + + name + Erlang red + scope + keyword.control.directive.erlang, keyword.control.directive.define.erlang + settings + + foreground + #e67e80 + + + + name + Erlang yellow + scope + entity.name.type.class.module.erlang + settings + + foreground + #dbbc7f + + + + name + Erlang green + scope + string.quoted.double.erlang, string.quoted.single.erlang, punctuation.definition.string.begin.erlang, punctuation.definition.string.end.erlang + settings + + foreground + #a7c080 + + + + name + Erlang purple + scope + keyword.control.directive.export.erlang, keyword.control.directive.module.erlang, keyword.control.directive.import.erlang, keyword.control.directive.behaviour.erlang + settings + + foreground + #d699b6 + + + + name + Elixir aqua + scope + variable.other.readwrite.module.elixir, punctuation.definition.variable.elixir + settings + + foreground + #83c092 + + + + name + Elixir blue + scope + constant.language.elixir + settings + + foreground + #7fbbb3 + + + + name + Elixir purple + scope + keyword.control.module.elixir + settings + + foreground + #d699b6 + + + + name + OCaml white + scope + entity.name.type.value-signature.ocaml + settings + + foreground + #d3c6aa + + + + name + OCaml orange + scope + keyword.other.ocaml + settings + + foreground + #e69875 + + + + name + OCaml aqua + scope + constant.language.variant.ocaml + settings + + foreground + #83c092 + + + + name + Perl red + scope + storage.type.sub.perl, storage.type.declare.routine.perl + settings + + foreground + #e67e80 + + + + name + Lisp white + scope + meta.function.lisp + settings + + foreground + #d3c6aa + + + + name + Lisp red + scope + storage.type.function-type.lisp + settings + + foreground + #e67e80 + + + + name + Lisp green + scope + keyword.constant.lisp + settings + + foreground + #a7c080 + + + + name + Lisp aqua + scope + entity.name.function.lisp + settings + + foreground + #83c092 + + + + name + Clojure green + scope + constant.keyword.clojure, support.variable.clojure, meta.definition.variable.clojure + settings + + foreground + #a7c080 + + + + name + Clojure purple + scope + entity.global.clojure + settings + + foreground + #d699b6 + + + + name + Clojure blue + scope + entity.name.function.clojure + settings + + foreground + #7fbbb3 + + + + name + Shell white + scope + meta.scope.if-block.shell, meta.scope.group.shell + settings + + foreground + #d3c6aa + + + + name + Shell yellow + scope + support.function.builtin.shell, entity.name.function.shell + settings + + foreground + #dbbc7f + + + + name + Shell green + scope + string.quoted.double.shell, string.quoted.single.shell, punctuation.definition.string.begin.shell, punctuation.definition.string.end.shell, string.unquoted.heredoc.shell + settings + + foreground + #a7c080 + + + + name + Shell purple + scope + keyword.control.heredoc-token.shell, variable.other.normal.shell, punctuation.definition.variable.shell, variable.other.special.shell, variable.other.positional.shell, variable.other.bracket.shell + settings + + foreground + #d699b6 + + + + name + Fish red + scope + support.function.builtin.fish + settings + + foreground + #e67e80 + + + + name + Fish orange + scope + support.function.unix.fish + settings + + foreground + #e69875 + + + + name + Fish blue + scope + variable.other.normal.fish, punctuation.definition.variable.fish, variable.other.fixed.fish, variable.other.special.fish + settings + + foreground + #7fbbb3 + + + + name + Fish green + scope + string.quoted.double.fish, punctuation.definition.string.end.fish, punctuation.definition.string.begin.fish, string.quoted.single.fish + settings + + foreground + #a7c080 + + + + name + Fish purple + scope + constant.character.escape.single.fish + settings + + foreground + #d699b6 + + + + name + PowerShell grey + scope + punctuation.definition.variable.powershell + settings + + foreground + #859289 + + + + name + PowerShell yellow + scope + entity.name.function.powershell, support.function.attribute.powershell, support.function.powershell + settings + + foreground + #dbbc7f + + + + name + PowerShell green + scope + string.quoted.single.powershell, string.quoted.double.powershell, punctuation.definition.string.begin.powershell, punctuation.definition.string.end.powershell, string.quoted.double.heredoc.powershell + settings + + foreground + #a7c080 + + + + name + PowerShell aqua + scope + variable.other.member.powershell + settings + + foreground + #83c092 + + + + name + GraphQL white + scope + string.unquoted.alias.graphql + settings + + foreground + #d3c6aa + + + + name + GraphQL red + scope + keyword.type.graphql + settings + + foreground + #e67e80 + + + + name + GraphQL purple + scope + entity.name.fragment.graphql + settings + + foreground + #d699b6 + + + + name + Makefile orange + scope + entity.name.function.target.makefile + settings + + foreground + #e69875 + + + + name + Makefile yellow + scope + variable.other.makefile + settings + + foreground + #dbbc7f + + + + name + Makefile green + scope + meta.scope.prerequisites.makefile + settings + + foreground + #a7c080 + + + + name + CMake green + scope + string.source.cmake + settings + + foreground + #a7c080 + + + + name + CMake aqua + scope + entity.source.cmake + settings + + foreground + #83c092 + + + + name + CMake purple + scope + storage.source.cmake + settings + + foreground + #d699b6 + + + + name + VimL grey + scope + punctuation.definition.map.viml + settings + + foreground + #859289 + + + + name + VimL orange + scope + storage.type.map.viml + settings + + foreground + #e69875 + + + + name + VimL green + scope + constant.character.map.viml, constant.character.map.key.viml + settings + + foreground + #a7c080 + + + + name + VimL blue + scope + constant.character.map.special.viml + settings + + foreground + #7fbbb3 + + + + name + Tmux green + scope + constant.language.tmux, constant.numeric.tmux + settings + + foreground + #a7c080 + + + + name + Dockerfile orange + scope + entity.name.function.package-manager.dockerfile + settings + + foreground + #e69875 + + + + name + Dockerfile yellow + scope + keyword.operator.flag.dockerfile + settings + + foreground + #dbbc7f + + + + name + Dockerfile green + scope + string.quoted.double.dockerfile, string.quoted.single.dockerfile + settings + + foreground + #a7c080 + + + + name + Dockerfile aqua + scope + constant.character.escape.dockerfile + settings + + foreground + #83c092 + + + + name + Dockerfile purple + scope + entity.name.type.base-image.dockerfile, entity.name.image.dockerfile + settings + + foreground + #d699b6 + + + + name + Diff grey + scope + punctuation.definition.separator.diff + settings + + foreground + #859289 + + + + name + Diff red + scope + markup.deleted.diff, punctuation.definition.deleted.diff + settings + + foreground + #e67e80 + + + + name + Diff orange + scope + meta.diff.range.context, punctuation.definition.range.diff + settings + + foreground + #e69875 + + + + name + Diff yellow + scope + meta.diff.header.from-file + settings + + foreground + #dbbc7f + + + + name + Diff green + scope + markup.inserted.diff, punctuation.definition.inserted.diff + settings + + foreground + #a7c080 + + + + name + Diff blue + scope + markup.changed.diff, punctuation.definition.changed.diff + settings + + foreground + #7fbbb3 + + + + name + Diff purple + scope + punctuation.definition.from-file.diff + settings + + foreground + #d699b6 + + + + name + Git red + scope + entity.name.section.group-title.ini, punctuation.definition.entity.ini + settings + + foreground + #e67e80 + + + + name + Git orange + scope + punctuation.separator.key-value.ini + settings + + foreground + #e69875 + + + + name + Git green + scope + string.quoted.double.ini, string.quoted.single.ini, punctuation.definition.string.begin.ini, punctuation.definition.string.end.ini + settings + + foreground + #a7c080 + + + + name + Git aqua + scope + keyword.other.definition.ini + settings + + foreground + #83c092 + + + + name + SQL yellow + scope + support.function.aggregate.sql + settings + + foreground + #dbbc7f + + + + name + SQL green + scope + string.quoted.single.sql, punctuation.definition.string.end.sql, punctuation.definition.string.begin.sql, string.quoted.double.sql + settings + + foreground + #a7c080 + + + + name + GraphQL yellow + scope + support.type.graphql + settings + + foreground + #dbbc7f + + + + name + GraphQL blue + scope + variable.parameter.graphql + settings + + foreground + #7fbbb3 + + + + name + GraphQL aqua + scope + constant.character.enum.graphql + settings + + foreground + #83c092 + + + + name + JSON grey + scope + punctuation.support.type.property-name.begin.json, punctuation.support.type.property-name.end.json, punctuation.separator.dictionary.key-value.json, punctuation.definition.string.begin.json, punctuation.definition.string.end.json, punctuation.separator.dictionary.pair.json, punctuation.separator.array.json + settings + + foreground + #859289 + + + + name + JSON orange + scope + support.type.property-name.json + settings + + foreground + #e69875 + + + + name + JSON green + scope + string.quoted.double.json + settings + + foreground + #a7c080 + + + + name + YAML grey + scope + punctuation.separator.key-value.mapping.yaml + settings + + foreground + #859289 + + + + name + YAML green + scope + string.unquoted.plain.out.yaml, string.quoted.single.yaml, string.quoted.double.yaml, punctuation.definition.string.begin.yaml, punctuation.definition.string.end.yaml, string.unquoted.plain.in.yaml, string.unquoted.block.yaml + settings + + foreground + #a7c080 + + + + name + YAML aqua + scope + punctuation.definition.anchor.yaml, punctuation.definition.block.sequence.item.yaml + settings + + foreground + #83c092 + + + + name + TOML orange + scope + keyword.key.toml + settings + + foreground + #e69875 + + + + name + TOML green + scope + string.quoted.single.basic.line.toml, string.quoted.single.literal.line.toml, punctuation.definition.keyValuePair.toml + settings + + foreground + #a7c080 + + + + name + TOML blue + scope + constant.other.boolean.toml + settings + + foreground + #7fbbb3 + + + + name + TOML purple + scope + entity.other.attribute-name.table.toml, punctuation.definition.table.toml, entity.other.attribute-name.table.array.toml, punctuation.definition.table.array.toml + settings + + foreground + #d699b6 + + + + name + Comment + scope + comment, string.comment, punctuation.definition.comment + settings + + foreground + #859289 + fontStyle + italic + + + + uuid + 3f688e48-bd62-4cd7-9981-9b491786d8c6 + colorSpaceName + sRGB + semanticClass + theme.dark.everforest-dark + author + + comment + + + diff --git a/.config/yazi/theme.toml b/.config/yazi/theme.toml index 4652720..deca0b1 100644 --- a/.config/yazi/theme.toml +++ b/.config/yazi/theme.toml @@ -1,677 +1,705 @@ [flavor] -dark = "catppuccin-mocha" +dark = "everforest-medium" [icon] files = [ - { name = ".babelrc", text = "", fg = "#f9e2af" }, - { name = ".bash_profile", text = "", fg = "#a6e3a1" }, - { name = ".bashrc", text = "", fg = "#a6e3a1" }, - { name = ".clang-format", text = "", fg = "#7f849c" }, - { name = ".clang-tidy", text = "", fg = "#7f849c" }, - { name = ".codespellrc", text = "󰓆", fg = "#a6e3a1" }, - { name = ".condarc", text = "", fg = "#a6e3a1" }, - { name = ".dockerignore", text = "󰡨", fg = "#89b4fa" }, - { name = ".ds_store", text = "", fg = "#7f849c" }, - { name = ".editorconfig", text = "", fg = "#cdd6f4" }, - { name = ".env", text = "", fg = "#fab387" }, - { name = ".eslintignore", text = "", fg = "#cba6f7" }, - { name = ".eslintrc", text = "", fg = "#cba6f7" }, - { name = ".git-blame-ignore-revs", text = "", fg = "#f38ba8" }, - { name = ".gitattributes", text = "", fg = "#f38ba8" }, - { name = ".gitconfig", text = "", fg = "#f38ba8" }, - { name = ".gitignore", text = "", fg = "#f38ba8" }, - { name = ".gitlab-ci.yml", text = "", fg = "#f38ba8" }, - { name = ".gitmodules", text = "", fg = "#f38ba8" }, - { name = ".gtkrc-2.0", text = "", fg = "#74c7ec" }, - { name = ".gvimrc", text = "", fg = "#a6e3a1" }, - { name = ".justfile", text = "", fg = "#7f849c" }, - { name = ".luacheckrc", text = "", fg = "#89b4fa" }, - { name = ".luaurc", text = "", fg = "#89b4fa" }, - { name = ".mailmap", text = "󰊢", fg = "#f38ba8" }, - { name = ".nanorc", text = "", fg = "#cba6f7" }, - { name = ".npmignore", text = "", fg = "#cba6f7" }, - { name = ".npmrc", text = "", fg = "#cba6f7" }, - { name = ".nuxtrc", text = "󱄆", fg = "#a6e3a1" }, - { name = ".nvmrc", text = "", fg = "#a6e3a1" }, - { name = ".pre-commit-config.yaml", text = "󰛢", fg = "#fab387" }, - { name = ".prettierignore", text = "", fg = "#89b4fa" }, - { name = ".prettierrc", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.cjs", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.js", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.json", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.json5", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.mjs", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.toml", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.yaml", text = "", fg = "#89b4fa" }, - { name = ".prettierrc.yml", text = "", fg = "#89b4fa" }, - { name = ".pylintrc", text = "", fg = "#7f849c" }, - { name = ".settings.json", text = "", fg = "#cba6f7" }, - { name = ".SRCINFO", text = "󰣇", fg = "#74c7ec" }, - { name = ".vimrc", text = "", fg = "#a6e3a1" }, - { name = ".Xauthority", text = "", fg = "#f38ba8" }, - { name = ".xinitrc", text = "", fg = "#f38ba8" }, - { name = ".Xresources", text = "", fg = "#f38ba8" }, - { name = ".xsession", text = "", fg = "#f38ba8" }, - { name = ".zprofile", text = "", fg = "#a6e3a1" }, - { name = ".zshenv", text = "", fg = "#a6e3a1" }, - { name = ".zshrc", text = "", fg = "#a6e3a1" }, - { name = "_gvimrc", text = "", fg = "#a6e3a1" }, - { name = "_vimrc", text = "", fg = "#a6e3a1" }, - { name = "AUTHORS", text = "", fg = "#cba6f7" }, - { name = "AUTHORS.txt", text = "", fg = "#cba6f7" }, - { name = "brewfile", text = "", fg = "#f38ba8" }, - { name = "bspwmrc", text = "", fg = "#7f849c" }, - { name = "build", text = "", fg = "#a6e3a1" }, - { name = "build.gradle", text = "", fg = "#89b4fa" }, - { name = "build.zig.zon", text = "", fg = "#fab387" }, - { name = "bun.lock", text = "", fg = "#cdd6f4" }, - { name = "bun.lockb", text = "", fg = "#cdd6f4" }, - { name = "cantorrc", text = "", fg = "#89b4fa" }, - { name = "checkhealth", text = "󰓙", fg = "#89b4fa" }, - { name = "cmakelists.txt", text = "", fg = "#cdd6f4" }, - { name = "code_of_conduct", text = "", fg = "#cba6f7" }, - { name = "code_of_conduct.md", text = "", fg = "#cba6f7" }, - { name = "commit_editmsg", text = "", fg = "#f38ba8" }, - { name = "commitlint.config.js", text = "󰜘", fg = "#94e2d5" }, - { name = "commitlint.config.ts", text = "󰜘", fg = "#94e2d5" }, - { name = "compose.yaml", text = "󰡨", fg = "#89b4fa" }, - { name = "compose.yml", text = "󰡨", fg = "#89b4fa" }, - { name = "config", text = "", fg = "#7f849c" }, - { name = "containerfile", text = "󰡨", fg = "#89b4fa" }, - { name = "copying", text = "", fg = "#f9e2af" }, - { name = "copying.lesser", text = "", fg = "#f9e2af" }, - { name = "Directory.Build.props", text = "", fg = "#89b4fa" }, - { name = "Directory.Build.targets", text = "", fg = "#89b4fa" }, - { name = "Directory.Packages.props", text = "", fg = "#89b4fa" }, - { name = "docker-compose.yaml", text = "󰡨", fg = "#89b4fa" }, - { name = "docker-compose.yml", text = "󰡨", fg = "#89b4fa" }, - { name = "dockerfile", text = "󰡨", fg = "#89b4fa" }, - { name = "eslint.config.cjs", text = "", fg = "#cba6f7" }, - { name = "eslint.config.js", text = "", fg = "#cba6f7" }, - { name = "eslint.config.mjs", text = "", fg = "#cba6f7" }, - { name = "eslint.config.ts", text = "", fg = "#cba6f7" }, - { name = "ext_typoscript_setup.txt", text = "", fg = "#fab387" }, - { name = "favicon.ico", text = "", fg = "#f9e2af" }, - { name = "fp-info-cache", text = "", fg = "#74c7ec" }, - { name = "fp-lib-table", text = "", fg = "#74c7ec" }, - { name = "FreeCAD.conf", text = "", fg = "#f38ba8" }, - { name = "Gemfile", text = "", fg = "#f38ba8" }, - { name = "gnumakefile", text = "", fg = "#7f849c" }, - { name = "go.mod", text = "", fg = "#74c7ec" }, - { name = "go.sum", text = "", fg = "#74c7ec" }, - { name = "go.work", text = "", fg = "#74c7ec" }, - { name = "gradle-wrapper.properties", text = "", fg = "#89b4fa" }, - { name = "gradle.properties", text = "", fg = "#89b4fa" }, - { name = "gradlew", text = "", fg = "#89b4fa" }, - { name = "groovy", text = "", fg = "#89b4fa" }, - { name = "gruntfile.babel.js", text = "", fg = "#fab387" }, - { name = "gruntfile.coffee", text = "", fg = "#fab387" }, - { name = "gruntfile.js", text = "", fg = "#fab387" }, - { name = "gruntfile.ts", text = "", fg = "#fab387" }, - { name = "gtkrc", text = "", fg = "#74c7ec" }, - { name = "gulpfile.babel.js", text = "", fg = "#eba0ac" }, - { name = "gulpfile.coffee", text = "", fg = "#eba0ac" }, - { name = "gulpfile.js", text = "", fg = "#eba0ac" }, - { name = "gulpfile.ts", text = "", fg = "#eba0ac" }, - { name = "hypridle.conf", text = "", fg = "#74c7ec" }, - { name = "hyprland.conf", text = "", fg = "#74c7ec" }, - { name = "hyprlandd.conf", text = "", fg = "#74c7ec" }, - { name = "hyprlock.conf", text = "", fg = "#74c7ec" }, - { name = "hyprpaper.conf", text = "", fg = "#74c7ec" }, - { name = "i18n.config.js", text = "󰗊", fg = "#cba6f7" }, - { name = "i18n.config.ts", text = "󰗊", fg = "#cba6f7" }, - { name = "i3blocks.conf", text = "", fg = "#cdd6f4" }, - { name = "i3status.conf", text = "", fg = "#cdd6f4" }, - { name = "index.theme", text = "", fg = "#a6e3a1" }, - { name = "ionic.config.json", text = "", fg = "#89b4fa" }, - { name = "justfile", text = "", fg = "#7f849c" }, - { name = "kalgebrarc", text = "", fg = "#89b4fa" }, - { name = "kdeglobals", text = "", fg = "#89b4fa" }, - { name = "kdenlive-layoutsrc", text = "", fg = "#94e2d5" }, - { name = "kdenliverc", text = "", fg = "#94e2d5" }, - { name = "kritadisplayrc", text = "", fg = "#cba6f7" }, - { name = "kritarc", text = "", fg = "#cba6f7" }, - { name = "license", text = "", fg = "#f9e2af" }, - { name = "license.md", text = "", fg = "#f9e2af" }, - { name = "lxde-rc.xml", text = "", fg = "#cdd6f4" }, - { name = "lxqt.conf", text = "", fg = "#89b4fa" }, - { name = "makefile", text = "", fg = "#7f849c" }, - { name = "mix.lock", text = "", fg = "#cba6f7" }, - { name = "mpv.conf", text = "", fg = "#cba6f7" }, - { name = "next.config.cjs", text = "", fg = "#74c7ec" }, - { name = "next.config.js", text = "", fg = "#74c7ec" }, - { name = "next.config.ts", text = "", fg = "#74c7ec" }, - { name = "node_modules", text = "", fg = "#cba6f7" }, - { name = "nuxt.config.cjs", text = "󱄆", fg = "#a6e3a1" }, - { name = "nuxt.config.js", text = "󱄆", fg = "#a6e3a1" }, - { name = "nuxt.config.mjs", text = "󱄆", fg = "#a6e3a1" }, - { name = "nuxt.config.ts", text = "󱄆", fg = "#a6e3a1" }, - { name = "package-lock.json", text = "", fg = "#f38ba8" }, - { name = "package.json", text = "", fg = "#cba6f7" }, - { name = "PKGBUILD", text = "", fg = "#74c7ec" }, - { name = "platformio.ini", text = "", fg = "#fab387" }, - { name = "pom.xml", text = "", fg = "#f38ba8" }, - { name = "prettier.config.cjs", text = "", fg = "#89b4fa" }, - { name = "prettier.config.js", text = "", fg = "#89b4fa" }, - { name = "prettier.config.mjs", text = "", fg = "#89b4fa" }, - { name = "prettier.config.ts", text = "", fg = "#89b4fa" }, - { name = "procfile", text = "", fg = "#cba6f7" }, - { name = "PrusaSlicer.ini", text = "", fg = "#f38ba8" }, - { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#f38ba8" }, - { name = "py.typed", text = "", fg = "#fab387" }, - { name = "QtProject.conf", text = "", fg = "#a6e3a1" }, - { name = "rakefile", text = "", fg = "#f38ba8" }, - { name = "readme", text = "󰂺", fg = "#cdd6f4" }, - { name = "readme.md", text = "󰂺", fg = "#cdd6f4" }, - { name = "rmd", text = "", fg = "#89b4fa" }, - { name = "robots.txt", text = "󰚩", fg = "#cba6f7" }, - { name = "security", text = "󰒃", fg = "#cdd6f4" }, - { name = "security.md", text = "󰒃", fg = "#cdd6f4" }, - { name = "settings.gradle", text = "", fg = "#89b4fa" }, - { name = "svelte.config.js", text = "", fg = "#f38ba8" }, - { name = "sxhkdrc", text = "", fg = "#7f849c" }, - { name = "sym-lib-table", text = "", fg = "#74c7ec" }, - { name = "tailwind.config.js", text = "󱏿", fg = "#74c7ec" }, - { name = "tailwind.config.mjs", text = "󱏿", fg = "#74c7ec" }, - { name = "tailwind.config.ts", text = "󱏿", fg = "#74c7ec" }, - { name = "tmux.conf", text = "", fg = "#a6e3a1" }, - { name = "tmux.conf.local", text = "", fg = "#a6e3a1" }, - { name = "tsconfig.json", text = "", fg = "#89b4fa" }, - { name = "unlicense", text = "", fg = "#f9e2af" }, - { name = "vagrantfile", text = "", fg = "#89b4fa" }, - { name = "vercel.json", text = "", fg = "#74c7ec" }, - { name = "vlcrc", text = "󰕼", fg = "#fab387" }, - { name = "webpack", text = "󰜫", fg = "#89b4fa" }, - { name = "weston.ini", text = "", fg = "#fab387" }, - { name = "workspace", text = "", fg = "#a6e3a1" }, - { name = "wrangler.jsonc", text = "", fg = "#fab387" }, - { name = "wrangler.toml", text = "", fg = "#fab387" }, - { name = "xmobarrc", text = "", fg = "#eba0ac" }, - { name = "xmobarrc.hs", text = "", fg = "#eba0ac" }, - { name = "xmonad.hs", text = "", fg = "#eba0ac" }, - { name = "xorg.conf", text = "", fg = "#f38ba8" }, - { name = "xsettingsd.conf", text = "", fg = "#f38ba8" }, + { name = ".babelrc", text = "", fg = "#DBBC7F" }, + { name = ".bash_profile", text = "", fg = "#A7C080" }, + { name = ".bashrc", text = "", fg = "#A7C080" }, + { name = ".clang-format", text = "", fg = "#374145" }, + { name = ".clang-tidy", text = "", fg = "#374145" }, + { name = ".codespellrc", text = "󰓆", fg = "#A7C080" }, + { name = ".condarc", text = "", fg = "#A7C080" }, + { name = ".dockerignore", text = "󰡨", fg = "#7FBBB3" }, + { name = ".ds_store", text = "", fg = "#374145" }, + { name = ".editorconfig", text = "", fg = "#D3C6AA" }, + { name = ".env", text = "", fg = "#DBBC7F" }, + { name = ".eslintignore", text = "", fg = "#D699B6" }, + { name = ".eslintrc", text = "", fg = "#D699B6" }, + { name = ".git-blame-ignore-revs", text = "", fg = "#E67E80" }, + { name = ".gitattributes", text = "", fg = "#E67E80" }, + { name = ".gitconfig", text = "", fg = "#E67E80" }, + { name = ".gitignore", text = "", fg = "#E67E80" }, + { name = ".gitlab-ci.yml", text = "", fg = "#E67E80" }, + { name = ".gitmodules", text = "", fg = "#E67E80" }, + { name = ".gtkrc-2.0", text = "", fg = "#83C092" }, + { name = ".gvimrc", text = "", fg = "#A7C080" }, + { name = ".justfile", text = "", fg = "#374145" }, + { name = ".luacheckrc", text = "", fg = "#7FBBB3" }, + { name = ".luaurc", text = "", fg = "#7FBBB3" }, + { name = ".mailmap", text = "󰊢", fg = "#E67E80" }, + { name = ".nanorc", text = "", fg = "#D699B6" }, + { name = ".npmignore", text = "", fg = "#D699B6" }, + { name = ".npmrc", text = "", fg = "#D699B6" }, + { name = ".nuxtrc", text = "󱄆", fg = "#A7C080" }, + { name = ".nvmrc", text = "", fg = "#A7C080" }, + { name = ".pnpmfile.cjs", text = "", fg = "#DBBC7F" }, + { name = ".pre-commit-config.yaml", text = "󰛢", fg = "#DBBC7F" }, + { name = ".prettierignore", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.cjs", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.js", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.json", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.json5", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.mjs", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.toml", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.yaml", text = "", fg = "#7FBBB3" }, + { name = ".prettierrc.yml", text = "", fg = "#7FBBB3" }, + { name = ".pylintrc", text = "", fg = "#374145" }, + { name = ".settings.json", text = "", fg = "#D699B6" }, + { name = ".SRCINFO", text = "󰣇", fg = "#83C092" }, + { name = ".vimrc", text = "", fg = "#A7C080" }, + { name = ".Xauthority", text = "", fg = "#E67E80" }, + { name = ".xinitrc", text = "", fg = "#E67E80" }, + { name = ".Xresources", text = "", fg = "#E67E80" }, + { name = ".xsession", text = "", fg = "#E67E80" }, + { name = ".zprofile", text = "", fg = "#A7C080" }, + { name = ".zshenv", text = "", fg = "#A7C080" }, + { name = ".zshrc", text = "", fg = "#A7C080" }, + { name = "_gvimrc", text = "", fg = "#A7C080" }, + { name = "_vimrc", text = "", fg = "#A7C080" }, + { name = "AUTHORS", text = "", fg = "#D699B6" }, + { name = "AUTHORS.txt", text = "", fg = "#D699B6" }, + { name = "brewfile", text = "", fg = "#E67E80" }, + { name = "bspwmrc", text = "", fg = "#374145" }, + { name = "build", text = "", fg = "#A7C080" }, + { name = "build.gradle", text = "", fg = "#7FBBB3" }, + { name = "build.zig.zon", text = "", fg = "#DBBC7F" }, + { name = "bun.lock", text = "", fg = "#D3C6AA" }, + { name = "bun.lockb", text = "", fg = "#D3C6AA" }, + { name = "cantorrc", text = "", fg = "#7FBBB3" }, + { name = "checkhealth", text = "󰓙", fg = "#7FBBB3" }, + { name = "cmakelists.txt", text = "", fg = "#D3C6AA" }, + { name = "code_of_conduct", text = "", fg = "#D699B6" }, + { name = "code_of_conduct.md", text = "", fg = "#D699B6" }, + { name = "commit_editmsg", text = "", fg = "#E67E80" }, + { name = "commitlint.config.js", text = "󰜘", fg = "#83C092" }, + { name = "commitlint.config.ts", text = "󰜘", fg = "#83C092" }, + { name = "compose.yaml", text = "󰡨", fg = "#7FBBB3" }, + { name = "compose.yml", text = "󰡨", fg = "#7FBBB3" }, + { name = "config", text = "", fg = "#374145" }, + { name = "containerfile", text = "󰡨", fg = "#7FBBB3" }, + { name = "copying", text = "", fg = "#DBBC7F" }, + { name = "copying.lesser", text = "", fg = "#DBBC7F" }, + { name = "Directory.Build.props", text = "", fg = "#7FBBB3" }, + { name = "Directory.Build.targets", text = "", fg = "#7FBBB3" }, + { name = "Directory.Packages.props", text = "", fg = "#7FBBB3" }, + { name = "docker-compose.yaml", text = "󰡨", fg = "#7FBBB3" }, + { name = "docker-compose.yml", text = "󰡨", fg = "#7FBBB3" }, + { name = "dockerfile", text = "󰡨", fg = "#7FBBB3" }, + { name = "eslint.config.cjs", text = "", fg = "#D699B6" }, + { name = "eslint.config.js", text = "", fg = "#D699B6" }, + { name = "eslint.config.mjs", text = "", fg = "#D699B6" }, + { name = "eslint.config.ts", text = "", fg = "#D699B6" }, + { name = "ext_typoscript_setup.txt", text = "", fg = "#DBBC7F" }, + { name = "favicon.ico", text = "", fg = "#DBBC7F" }, + { name = "fp-info-cache", text = "", fg = "#83C092" }, + { name = "fp-lib-table", text = "", fg = "#83C092" }, + { name = "FreeCAD.conf", text = "", fg = "#E67E80" }, + { name = "Gemfile", text = "", fg = "#E67E80" }, + { name = "gnumakefile", text = "", fg = "#374145" }, + { name = "go.mod", text = "", fg = "#83C092" }, + { name = "go.sum", text = "", fg = "#83C092" }, + { name = "go.work", text = "", fg = "#83C092" }, + { name = "gradle-wrapper.properties", text = "", fg = "#7FBBB3" }, + { name = "gradle.properties", text = "", fg = "#7FBBB3" }, + { name = "gradlew", text = "", fg = "#7FBBB3" }, + { name = "groovy", text = "", fg = "#7FBBB3" }, + { name = "gruntfile.babel.js", text = "", fg = "#DBBC7F" }, + { name = "gruntfile.coffee", text = "", fg = "#DBBC7F" }, + { name = "gruntfile.js", text = "", fg = "#DBBC7F" }, + { name = "gruntfile.ts", text = "", fg = "#DBBC7F" }, + { name = "gtkrc", text = "", fg = "#83C092" }, + { name = "gulpfile.babel.js", text = "", fg = "#E67E80" }, + { name = "gulpfile.coffee", text = "", fg = "#E67E80" }, + { name = "gulpfile.js", text = "", fg = "#E67E80" }, + { name = "gulpfile.ts", text = "", fg = "#E67E80" }, + { name = "hypridle.conf", text = "", fg = "#83C092" }, + { name = "hyprland.conf", text = "", fg = "#83C092" }, + { name = "hyprlandd.conf", text = "", fg = "#83C092" }, + { name = "hyprlock.conf", text = "", fg = "#83C092" }, + { name = "hyprpaper.conf", text = "", fg = "#83C092" }, + { name = "hyprsunset.conf", text = "", fg = "#83C092" }, + { name = "i18n.config.js", text = "󰗊", fg = "#D699B6" }, + { name = "i18n.config.ts", text = "󰗊", fg = "#D699B6" }, + { name = "i3blocks.conf", text = "", fg = "#D3C6AA" }, + { name = "i3status.conf", text = "", fg = "#D3C6AA" }, + { name = "index.theme", text = "", fg = "#A7C080" }, + { name = "ionic.config.json", text = "", fg = "#7FBBB3" }, + { name = "Jenkinsfile", text = "", fg = "#E67E80" }, + { name = "justfile", text = "", fg = "#374145" }, + { name = "kalgebrarc", text = "", fg = "#7FBBB3" }, + { name = "kdeglobals", text = "", fg = "#7FBBB3" }, + { name = "kdenlive-layoutsrc", text = "", fg = "#83C092" }, + { name = "kdenliverc", text = "", fg = "#83C092" }, + { name = "kritadisplayrc", text = "", fg = "#D699B6" }, + { name = "kritarc", text = "", fg = "#D699B6" }, + { name = "license", text = "", fg = "#DBBC7F" }, + { name = "license.md", text = "", fg = "#DBBC7F" }, + { name = "lxde-rc.xml", text = "", fg = "#D3C6AA" }, + { name = "lxqt.conf", text = "", fg = "#7FBBB3" }, + { name = "makefile", text = "", fg = "#374145" }, + { name = "mix.lock", text = "", fg = "#D699B6" }, + { name = "mpv.conf", text = "", fg = "#D699B6" }, + { name = "next.config.cjs", text = "", fg = "#83C092" }, + { name = "next.config.js", text = "", fg = "#83C092" }, + { name = "next.config.ts", text = "", fg = "#83C092" }, + { name = "node_modules", text = "", fg = "#D699B6" }, + { name = "nuxt.config.cjs", text = "󱄆", fg = "#A7C080" }, + { name = "nuxt.config.js", text = "󱄆", fg = "#A7C080" }, + { name = "nuxt.config.mjs", text = "󱄆", fg = "#A7C080" }, + { name = "nuxt.config.ts", text = "󱄆", fg = "#A7C080" }, + { name = "package-lock.json", text = "", fg = "#E67E80" }, + { name = "package.json", text = "", fg = "#D699B6" }, + { name = "PKGBUILD", text = "", fg = "#83C092" }, + { name = "platformio.ini", text = "", fg = "#DBBC7F" }, + { name = "playwright.config.cjs", text = "", fg = "#A7C080" }, + { name = "playwright.config.cts", text = "", fg = "#A7C080" }, + { name = "playwright.config.js", text = "", fg = "#A7C080" }, + { name = "playwright.config.mjs", text = "", fg = "#A7C080" }, + { name = "playwright.config.mts", text = "", fg = "#A7C080" }, + { name = "playwright.config.ts", text = "", fg = "#A7C080" }, + { name = "pnpm-lock.yaml", text = "", fg = "#DBBC7F" }, + { name = "pnpm-workspace.yaml", text = "", fg = "#DBBC7F" }, + { name = "pom.xml", text = "", fg = "#E67E80" }, + { name = "prettier.config.cjs", text = "", fg = "#7FBBB3" }, + { name = "prettier.config.js", text = "", fg = "#7FBBB3" }, + { name = "prettier.config.mjs", text = "", fg = "#7FBBB3" }, + { name = "prettier.config.ts", text = "", fg = "#7FBBB3" }, + { name = "procfile", text = "", fg = "#D699B6" }, + { name = "PrusaSlicer.ini", text = "", fg = "#E67E80" }, + { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#E67E80" }, + { name = "py.typed", text = "", fg = "#DBBC7F" }, + { name = "QtProject.conf", text = "", fg = "#A7C080" }, + { name = "rakefile", text = "", fg = "#E67E80" }, + { name = "readme", text = "󰂺", fg = "#D3C6AA" }, + { name = "readme.md", text = "󰂺", fg = "#D3C6AA" }, + { name = "rmd", text = "", fg = "#7FBBB3" }, + { name = "robots.txt", text = "󰚩", fg = "#D699B6" }, + { name = "security", text = "󰒃", fg = "#D3C6AA" }, + { name = "security.md", text = "󰒃", fg = "#D3C6AA" }, + { name = "settings.gradle", text = "", fg = "#7FBBB3" }, + { name = "svelte.config.js", text = "", fg = "#E67E80" }, + { name = "sxhkdrc", text = "", fg = "#374145" }, + { name = "sym-lib-table", text = "", fg = "#83C092" }, + { name = "tailwind.config.js", text = "󱏿", fg = "#83C092" }, + { name = "tailwind.config.mjs", text = "󱏿", fg = "#83C092" }, + { name = "tailwind.config.ts", text = "󱏿", fg = "#83C092" }, + { name = "tmux.conf", text = "", fg = "#A7C080" }, + { name = "tmux.conf.local", text = "", fg = "#A7C080" }, + { name = "tsconfig.json", text = "", fg = "#7FBBB3" }, + { name = "unlicense", text = "", fg = "#DBBC7F" }, + { name = "vagrantfile", text = "", fg = "#7FBBB3" }, + { name = "vercel.json", text = "", fg = "#83C092" }, + { name = "vite.config.cjs", text = "", fg = "#DBBC7F" }, + { name = "vite.config.cts", text = "", fg = "#DBBC7F" }, + { name = "vite.config.js", text = "", fg = "#DBBC7F" }, + { name = "vite.config.mjs", text = "", fg = "#DBBC7F" }, + { name = "vite.config.mts", text = "", fg = "#DBBC7F" }, + { name = "vite.config.ts", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.cjs", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.cts", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.js", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.mjs", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.mts", text = "", fg = "#DBBC7F" }, + { name = "vitest.config.ts", text = "", fg = "#DBBC7F" }, + { name = "vlcrc", text = "󰕼", fg = "#DBBC7F" }, + { name = "webpack", text = "󰜫", fg = "#7FBBB3" }, + { name = "weston.ini", text = "", fg = "#DBBC7F" }, + { name = "workspace", text = "", fg = "#A7C080" }, + { name = "wrangler.jsonc", text = "", fg = "#DBBC7F" }, + { name = "wrangler.toml", text = "", fg = "#DBBC7F" }, + { name = "xdph.conf", text = "", fg = "#83C092" }, + { name = "xmobarrc", text = "", fg = "#E67E80" }, + { name = "xmobarrc.hs", text = "", fg = "#E67E80" }, + { name = "xmonad.hs", text = "", fg = "#E67E80" }, + { name = "xorg.conf", text = "", fg = "#E67E80" }, + { name = "xsettingsd.conf", text = "", fg = "#E67E80" }, ] exts = [ - { name = "3gp", text = "", fg = "#fab387" }, - { name = "3mf", text = "󰆧", fg = "#cba6f7" }, - { name = "7z", text = "", fg = "#fab387" }, - { name = "a", text = "", fg = "#cdd6f4" }, - { name = "aac", text = "", fg = "#89b4fa" }, - { name = "ada", text = "", fg = "#89b4fa" }, - { name = "adb", text = "", fg = "#89b4fa" }, - { name = "ads", text = "", fg = "#cba6f7" }, - { name = "ai", text = "", fg = "#f9e2af" }, - { name = "aif", text = "", fg = "#89b4fa" }, - { name = "aiff", text = "", fg = "#89b4fa" }, - { name = "android", text = "", fg = "#a6e3a1" }, - { name = "ape", text = "", fg = "#89b4fa" }, - { name = "apk", text = "", fg = "#a6e3a1" }, - { name = "apl", text = "", fg = "#a6e3a1" }, - { name = "app", text = "", fg = "#f38ba8" }, - { name = "applescript", text = "", fg = "#7f849c" }, - { name = "asc", text = "󰦝", fg = "#7f849c" }, - { name = "asm", text = "", fg = "#89b4fa" }, - { name = "ass", text = "󰨖", fg = "#fab387" }, - { name = "astro", text = "", fg = "#cba6f7" }, - { name = "avif", text = "", fg = "#cba6f7" }, - { name = "awk", text = "", fg = "#7f849c" }, - { name = "azcli", text = "", fg = "#89b4fa" }, - { name = "bak", text = "󰁯", fg = "#7f849c" }, - { name = "bash", text = "", fg = "#a6e3a1" }, - { name = "bat", text = "", fg = "#a6e3a1" }, - { name = "bazel", text = "", fg = "#a6e3a1" }, - { name = "bib", text = "󱉟", fg = "#f9e2af" }, - { name = "bicep", text = "", fg = "#89b4fa" }, - { name = "bicepparam", text = "", fg = "#cba6f7" }, - { name = "bin", text = "", fg = "#f38ba8" }, - { name = "blade.php", text = "", fg = "#eba0ac" }, - { name = "blend", text = "󰂫", fg = "#fab387" }, - { name = "blp", text = "󰺾", fg = "#89b4fa" }, - { name = "bmp", text = "", fg = "#cba6f7" }, - { name = "bqn", text = "", fg = "#a6e3a1" }, - { name = "brep", text = "󰻫", fg = "#fab387" }, - { name = "bz", text = "", fg = "#fab387" }, - { name = "bz2", text = "", fg = "#fab387" }, - { name = "bz3", text = "", fg = "#fab387" }, - { name = "bzl", text = "", fg = "#a6e3a1" }, - { name = "c", text = "", fg = "#89b4fa" }, - { name = "c++", text = "", fg = "#eba0ac" }, - { name = "cache", text = "", fg = "#74c7ec" }, - { name = "cast", text = "", fg = "#fab387" }, - { name = "cbl", text = "", fg = "#89b4fa" }, - { name = "cc", text = "", fg = "#eba0ac" }, - { name = "ccm", text = "", fg = "#eba0ac" }, - { name = "cfc", text = "", fg = "#74c7ec" }, - { name = "cfg", text = "", fg = "#7f849c" }, - { name = "cfm", text = "", fg = "#74c7ec" }, - { name = "cjs", text = "", fg = "#f9e2af" }, - { name = "clj", text = "", fg = "#a6e3a1" }, - { name = "cljc", text = "", fg = "#a6e3a1" }, - { name = "cljd", text = "", fg = "#89b4fa" }, - { name = "cljs", text = "", fg = "#89b4fa" }, - { name = "cmake", text = "", fg = "#cdd6f4" }, - { name = "cob", text = "", fg = "#89b4fa" }, - { name = "cobol", text = "", fg = "#89b4fa" }, - { name = "coffee", text = "", fg = "#f9e2af" }, - { name = "conda", text = "", fg = "#a6e3a1" }, - { name = "conf", text = "", fg = "#7f849c" }, - { name = "config.ru", text = "", fg = "#f38ba8" }, - { name = "cow", text = "󰆚", fg = "#fab387" }, - { name = "cp", text = "", fg = "#89b4fa" }, - { name = "cpp", text = "", fg = "#89b4fa" }, - { name = "cppm", text = "", fg = "#89b4fa" }, - { name = "cpy", text = "", fg = "#89b4fa" }, - { name = "cr", text = "", fg = "#cdd6f4" }, - { name = "crdownload", text = "", fg = "#74c7ec" }, - { name = "cs", text = "󰌛", fg = "#fab387" }, - { name = "csh", text = "", fg = "#7f849c" }, - { name = "cshtml", text = "󱦗", fg = "#cba6f7" }, - { name = "cson", text = "", fg = "#f9e2af" }, - { name = "csproj", text = "󰪮", fg = "#cba6f7" }, - { name = "css", text = "", fg = "#cba6f7" }, - { name = "csv", text = "", fg = "#a6e3a1" }, - { name = "cts", text = "", fg = "#89b4fa" }, - { name = "cu", text = "", fg = "#a6e3a1" }, - { name = "cue", text = "󰲹", fg = "#cba6f7" }, - { name = "cuh", text = "", fg = "#cba6f7" }, - { name = "cxx", text = "", fg = "#89b4fa" }, - { name = "cxxm", text = "", fg = "#89b4fa" }, - { name = "d", text = "", fg = "#f38ba8" }, - { name = "d.ts", text = "", fg = "#fab387" }, - { name = "dart", text = "", fg = "#89b4fa" }, - { name = "db", text = "", fg = "#74c7ec" }, - { name = "dconf", text = "", fg = "#74c7ec" }, - { name = "desktop", text = "", fg = "#cba6f7" }, - { name = "diff", text = "", fg = "#7f849c" }, - { name = "dll", text = "", fg = "#f38ba8" }, - { name = "doc", text = "󰈬", fg = "#89b4fa" }, - { name = "Dockerfile", text = "󰡨", fg = "#89b4fa" }, - { name = "dockerignore", text = "󰡨", fg = "#89b4fa" }, - { name = "docx", text = "󰈬", fg = "#89b4fa" }, - { name = "dot", text = "󱁉", fg = "#89b4fa" }, - { name = "download", text = "", fg = "#74c7ec" }, - { name = "drl", text = "", fg = "#f38ba8" }, - { name = "dropbox", text = "", fg = "#89b4fa" }, - { name = "dump", text = "", fg = "#74c7ec" }, - { name = "dwg", text = "󰻫", fg = "#fab387" }, - { name = "dxf", text = "󰻫", fg = "#fab387" }, - { name = "ebook", text = "", fg = "#fab387" }, - { name = "ebuild", text = "", fg = "#cba6f7" }, - { name = "edn", text = "", fg = "#89b4fa" }, - { name = "eex", text = "", fg = "#cba6f7" }, - { name = "ejs", text = "", fg = "#f9e2af" }, - { name = "el", text = "", fg = "#cba6f7" }, - { name = "elc", text = "", fg = "#cba6f7" }, - { name = "elf", text = "", fg = "#f38ba8" }, - { name = "elm", text = "", fg = "#89b4fa" }, - { name = "eln", text = "", fg = "#cba6f7" }, - { name = "env", text = "", fg = "#fab387" }, - { name = "eot", text = "", fg = "#cdd6f4" }, - { name = "epp", text = "", fg = "#fab387" }, - { name = "epub", text = "", fg = "#fab387" }, - { name = "erb", text = "", fg = "#f38ba8" }, - { name = "erl", text = "", fg = "#cba6f7" }, - { name = "ex", text = "", fg = "#cba6f7" }, - { name = "exe", text = "", fg = "#f38ba8" }, - { name = "exs", text = "", fg = "#cba6f7" }, - { name = "f#", text = "", fg = "#89b4fa" }, - { name = "f3d", text = "󰻫", fg = "#fab387" }, - { name = "f90", text = "󱈚", fg = "#cba6f7" }, - { name = "fbx", text = "󰆧", fg = "#cba6f7" }, - { name = "fcbak", text = "", fg = "#f38ba8" }, - { name = "fcmacro", text = "", fg = "#f38ba8" }, - { name = "fcmat", text = "", fg = "#f38ba8" }, - { name = "fcparam", text = "", fg = "#f38ba8" }, - { name = "fcscript", text = "", fg = "#f38ba8" }, - { name = "fcstd", text = "", fg = "#f38ba8" }, - { name = "fcstd1", text = "", fg = "#f38ba8" }, - { name = "fctb", text = "", fg = "#f38ba8" }, - { name = "fctl", text = "", fg = "#f38ba8" }, - { name = "fdmdownload", text = "", fg = "#74c7ec" }, - { name = "feature", text = "", fg = "#a6e3a1" }, - { name = "fish", text = "", fg = "#7f849c" }, - { name = "flac", text = "", fg = "#89b4fa" }, - { name = "flc", text = "", fg = "#cdd6f4" }, - { name = "flf", text = "", fg = "#cdd6f4" }, - { name = "fnl", text = "", fg = "#f9e2af" }, - { name = "fodg", text = "", fg = "#fab387" }, - { name = "fodp", text = "", fg = "#fab387" }, - { name = "fods", text = "", fg = "#a6e3a1" }, - { name = "fodt", text = "", fg = "#89b4fa" }, - { name = "fs", text = "", fg = "#89b4fa" }, - { name = "fsi", text = "", fg = "#89b4fa" }, - { name = "fsscript", text = "", fg = "#89b4fa" }, - { name = "fsx", text = "", fg = "#89b4fa" }, - { name = "gcode", text = "󰐫", fg = "#89b4fa" }, - { name = "gd", text = "", fg = "#7f849c" }, - { name = "gemspec", text = "", fg = "#f38ba8" }, - { name = "gif", text = "", fg = "#cba6f7" }, - { name = "git", text = "", fg = "#f38ba8" }, - { name = "glb", text = "", fg = "#fab387" }, - { name = "gleam", text = "", fg = "#cba6f7" }, - { name = "gnumakefile", text = "", fg = "#7f849c" }, - { name = "go", text = "", fg = "#74c7ec" }, - { name = "godot", text = "", fg = "#7f849c" }, - { name = "gpr", text = "", fg = "#7f849c" }, - { name = "gql", text = "", fg = "#cba6f7" }, - { name = "gradle", text = "", fg = "#89b4fa" }, - { name = "graphql", text = "", fg = "#cba6f7" }, - { name = "gresource", text = "", fg = "#74c7ec" }, - { name = "gv", text = "󱁉", fg = "#89b4fa" }, - { name = "gz", text = "", fg = "#fab387" }, - { name = "h", text = "", fg = "#cba6f7" }, - { name = "haml", text = "", fg = "#cdd6f4" }, - { name = "hbs", text = "", fg = "#f38ba8" }, - { name = "heex", text = "", fg = "#cba6f7" }, - { name = "hex", text = "", fg = "#89b4fa" }, - { name = "hh", text = "", fg = "#cba6f7" }, - { name = "hpp", text = "", fg = "#cba6f7" }, - { name = "hrl", text = "", fg = "#cba6f7" }, - { name = "hs", text = "", fg = "#cba6f7" }, - { name = "htm", text = "", fg = "#f38ba8" }, - { name = "html", text = "", fg = "#f38ba8" }, - { name = "http", text = "", fg = "#89b4fa" }, - { name = "huff", text = "󰡘", fg = "#cba6f7" }, - { name = "hurl", text = "", fg = "#cba6f7" }, - { name = "hx", text = "", fg = "#fab387" }, - { name = "hxx", text = "", fg = "#cba6f7" }, - { name = "ical", text = "", fg = "#89b4fa" }, - { name = "icalendar", text = "", fg = "#89b4fa" }, - { name = "ico", text = "", fg = "#f9e2af" }, - { name = "ics", text = "", fg = "#89b4fa" }, - { name = "ifb", text = "", fg = "#89b4fa" }, - { name = "ifc", text = "󰻫", fg = "#fab387" }, - { name = "ige", text = "󰻫", fg = "#fab387" }, - { name = "iges", text = "󰻫", fg = "#fab387" }, - { name = "igs", text = "󰻫", fg = "#fab387" }, - { name = "image", text = "", fg = "#eba0ac" }, - { name = "img", text = "", fg = "#eba0ac" }, - { name = "import", text = "", fg = "#cdd6f4" }, - { name = "info", text = "", fg = "#f9e2af" }, - { name = "ini", text = "", fg = "#7f849c" }, - { name = "ino", text = "", fg = "#94e2d5" }, - { name = "ipynb", text = "", fg = "#fab387" }, - { name = "iso", text = "", fg = "#eba0ac" }, - { name = "ixx", text = "", fg = "#89b4fa" }, - { name = "jar", text = "", fg = "#fab387" }, - { name = "java", text = "", fg = "#eba0ac" }, - { name = "jl", text = "", fg = "#cba6f7" }, - { name = "jpeg", text = "", fg = "#cba6f7" }, - { name = "jpg", text = "", fg = "#cba6f7" }, - { name = "js", text = "", fg = "#f9e2af" }, - { name = "json", text = "", fg = "#f9e2af" }, - { name = "json5", text = "", fg = "#f9e2af" }, - { name = "jsonc", text = "", fg = "#f9e2af" }, - { name = "jsx", text = "", fg = "#74c7ec" }, - { name = "jwmrc", text = "", fg = "#89b4fa" }, - { name = "jxl", text = "", fg = "#cba6f7" }, - { name = "kbx", text = "󰯄", fg = "#7f849c" }, - { name = "kdb", text = "", fg = "#a6e3a1" }, - { name = "kdbx", text = "", fg = "#a6e3a1" }, - { name = "kdenlive", text = "", fg = "#94e2d5" }, - { name = "kdenlivetitle", text = "", fg = "#94e2d5" }, - { name = "kicad_dru", text = "", fg = "#74c7ec" }, - { name = "kicad_mod", text = "", fg = "#74c7ec" }, - { name = "kicad_pcb", text = "", fg = "#74c7ec" }, - { name = "kicad_prl", text = "", fg = "#74c7ec" }, - { name = "kicad_pro", text = "", fg = "#74c7ec" }, - { name = "kicad_sch", text = "", fg = "#74c7ec" }, - { name = "kicad_sym", text = "", fg = "#74c7ec" }, - { name = "kicad_wks", text = "", fg = "#74c7ec" }, - { name = "ko", text = "", fg = "#cdd6f4" }, - { name = "kpp", text = "", fg = "#cba6f7" }, - { name = "kra", text = "", fg = "#cba6f7" }, - { name = "krz", text = "", fg = "#cba6f7" }, - { name = "ksh", text = "", fg = "#7f849c" }, - { name = "kt", text = "", fg = "#89b4fa" }, - { name = "kts", text = "", fg = "#89b4fa" }, - { name = "lck", text = "", fg = "#cdd6f4" }, - { name = "leex", text = "", fg = "#cba6f7" }, - { name = "less", text = "", fg = "#cba6f7" }, - { name = "lff", text = "", fg = "#cdd6f4" }, - { name = "lhs", text = "", fg = "#cba6f7" }, - { name = "lib", text = "", fg = "#f38ba8" }, - { name = "license", text = "", fg = "#f9e2af" }, - { name = "liquid", text = "", fg = "#fab387" }, - { name = "lock", text = "", fg = "#cdd6f4" }, - { name = "log", text = "󰌱", fg = "#cdd6f4" }, - { name = "lrc", text = "󰨖", fg = "#fab387" }, - { name = "lua", text = "", fg = "#89b4fa" }, - { name = "luac", text = "", fg = "#89b4fa" }, - { name = "luau", text = "", fg = "#89b4fa" }, - { name = "m", text = "", fg = "#89b4fa" }, - { name = "m3u", text = "󰲹", fg = "#cba6f7" }, - { name = "m3u8", text = "󰲹", fg = "#cba6f7" }, - { name = "m4a", text = "", fg = "#89b4fa" }, - { name = "m4v", text = "", fg = "#fab387" }, - { name = "magnet", text = "", fg = "#f38ba8" }, - { name = "makefile", text = "", fg = "#7f849c" }, - { name = "markdown", text = "", fg = "#cdd6f4" }, - { name = "material", text = "", fg = "#cba6f7" }, - { name = "md", text = "", fg = "#cdd6f4" }, - { name = "md5", text = "󰕥", fg = "#cba6f7" }, - { name = "mdx", text = "", fg = "#89b4fa" }, - { name = "mint", text = "󰌪", fg = "#a6e3a1" }, - { name = "mjs", text = "", fg = "#f9e2af" }, - { name = "mk", text = "", fg = "#7f849c" }, - { name = "mkv", text = "", fg = "#fab387" }, - { name = "ml", text = "", fg = "#fab387" }, - { name = "mli", text = "", fg = "#fab387" }, - { name = "mm", text = "", fg = "#89b4fa" }, - { name = "mo", text = "", fg = "#cba6f7" }, - { name = "mobi", text = "", fg = "#fab387" }, - { name = "mojo", text = "", fg = "#f38ba8" }, - { name = "mov", text = "", fg = "#fab387" }, - { name = "mp3", text = "", fg = "#89b4fa" }, - { name = "mp4", text = "", fg = "#fab387" }, - { name = "mpp", text = "", fg = "#89b4fa" }, - { name = "msf", text = "", fg = "#89b4fa" }, - { name = "mts", text = "", fg = "#89b4fa" }, - { name = "mustache", text = "", fg = "#fab387" }, - { name = "nfo", text = "", fg = "#f9e2af" }, - { name = "nim", text = "", fg = "#fab387" }, - { name = "nix", text = "", fg = "#94e2d5" }, - { name = "norg", text = "", fg = "#89b4fa" }, - { name = "nswag", text = "", fg = "#a6e3a1" }, - { name = "nu", text = "", fg = "#94e2d5" }, - { name = "o", text = "", fg = "#f38ba8" }, - { name = "obj", text = "󰆧", fg = "#cba6f7" }, - { name = "odf", text = "", fg = "#eba0ac" }, - { name = "odg", text = "", fg = "#fab387" }, - { name = "odin", text = "󰟢", fg = "#89b4fa" }, - { name = "odp", text = "", fg = "#fab387" }, - { name = "ods", text = "", fg = "#a6e3a1" }, - { name = "odt", text = "", fg = "#89b4fa" }, - { name = "oga", text = "", fg = "#89b4fa" }, - { name = "ogg", text = "", fg = "#89b4fa" }, - { name = "ogv", text = "", fg = "#fab387" }, - { name = "ogx", text = "", fg = "#fab387" }, - { name = "opus", text = "", fg = "#89b4fa" }, - { name = "org", text = "", fg = "#94e2d5" }, - { name = "otf", text = "", fg = "#cdd6f4" }, - { name = "out", text = "", fg = "#f38ba8" }, - { name = "part", text = "", fg = "#74c7ec" }, - { name = "patch", text = "", fg = "#7f849c" }, - { name = "pck", text = "", fg = "#7f849c" }, - { name = "pcm", text = "", fg = "#89b4fa" }, - { name = "pdf", text = "", fg = "#f38ba8" }, - { name = "php", text = "", fg = "#cba6f7" }, - { name = "pl", text = "", fg = "#89b4fa" }, - { name = "pls", text = "󰲹", fg = "#cba6f7" }, - { name = "ply", text = "󰆧", fg = "#cba6f7" }, - { name = "pm", text = "", fg = "#89b4fa" }, - { name = "png", text = "", fg = "#cba6f7" }, - { name = "po", text = "", fg = "#89b4fa" }, - { name = "pot", text = "", fg = "#89b4fa" }, - { name = "pp", text = "", fg = "#fab387" }, - { name = "ppt", text = "󰈧", fg = "#f38ba8" }, - { name = "pptx", text = "󰈧", fg = "#f38ba8" }, - { name = "prisma", text = "", fg = "#89b4fa" }, - { name = "pro", text = "", fg = "#f9e2af" }, - { name = "ps1", text = "󰨊", fg = "#89b4fa" }, - { name = "psb", text = "", fg = "#89b4fa" }, - { name = "psd", text = "", fg = "#89b4fa" }, - { name = "psd1", text = "󰨊", fg = "#89b4fa" }, - { name = "psm1", text = "󰨊", fg = "#89b4fa" }, - { name = "pub", text = "󰷖", fg = "#f9e2af" }, - { name = "pxd", text = "", fg = "#89b4fa" }, - { name = "pxi", text = "", fg = "#89b4fa" }, - { name = "py", text = "", fg = "#fab387" }, - { name = "pyc", text = "", fg = "#f9e2af" }, - { name = "pyd", text = "", fg = "#f9e2af" }, - { name = "pyi", text = "", fg = "#fab387" }, - { name = "pyo", text = "", fg = "#f9e2af" }, - { name = "pyw", text = "", fg = "#89b4fa" }, - { name = "pyx", text = "", fg = "#89b4fa" }, - { name = "qm", text = "", fg = "#89b4fa" }, - { name = "qml", text = "", fg = "#a6e3a1" }, - { name = "qrc", text = "", fg = "#a6e3a1" }, - { name = "qss", text = "", fg = "#a6e3a1" }, - { name = "query", text = "", fg = "#a6e3a1" }, - { name = "r", text = "󰟔", fg = "#89b4fa" }, - { name = "R", text = "󰟔", fg = "#89b4fa" }, - { name = "rake", text = "", fg = "#f38ba8" }, - { name = "rar", text = "", fg = "#fab387" }, - { name = "rasi", text = "", fg = "#f9e2af" }, - { name = "razor", text = "󱦘", fg = "#cba6f7" }, - { name = "rb", text = "", fg = "#f38ba8" }, - { name = "res", text = "", fg = "#eba0ac" }, - { name = "resi", text = "", fg = "#eba0ac" }, - { name = "rlib", text = "", fg = "#eba0ac" }, - { name = "rmd", text = "", fg = "#89b4fa" }, - { name = "rproj", text = "󰗆", fg = "#a6e3a1" }, - { name = "rs", text = "", fg = "#eba0ac" }, - { name = "rss", text = "", fg = "#fab387" }, - { name = "s", text = "", fg = "#89b4fa" }, - { name = "sass", text = "", fg = "#eba0ac" }, - { name = "sbt", text = "", fg = "#eba0ac" }, - { name = "sc", text = "", fg = "#eba0ac" }, - { name = "scad", text = "", fg = "#fab387" }, - { name = "scala", text = "", fg = "#eba0ac" }, - { name = "scm", text = "󰘧", fg = "#cdd6f4" }, - { name = "scss", text = "", fg = "#eba0ac" }, - { name = "sh", text = "", fg = "#7f849c" }, - { name = "sha1", text = "󰕥", fg = "#cba6f7" }, - { name = "sha224", text = "󰕥", fg = "#cba6f7" }, - { name = "sha256", text = "󰕥", fg = "#cba6f7" }, - { name = "sha384", text = "󰕥", fg = "#cba6f7" }, - { name = "sha512", text = "󰕥", fg = "#cba6f7" }, - { name = "sig", text = "󰘧", fg = "#fab387" }, - { name = "signature", text = "󰘧", fg = "#fab387" }, - { name = "skp", text = "󰻫", fg = "#fab387" }, - { name = "sldasm", text = "󰻫", fg = "#fab387" }, - { name = "sldprt", text = "󰻫", fg = "#fab387" }, - { name = "slim", text = "", fg = "#f38ba8" }, - { name = "sln", text = "", fg = "#cba6f7" }, - { name = "slnx", text = "", fg = "#cba6f7" }, - { name = "slvs", text = "󰻫", fg = "#fab387" }, - { name = "sml", text = "󰘧", fg = "#fab387" }, - { name = "so", text = "", fg = "#cdd6f4" }, - { name = "sol", text = "", fg = "#89b4fa" }, - { name = "spec.js", text = "", fg = "#f9e2af" }, - { name = "spec.jsx", text = "", fg = "#74c7ec" }, - { name = "spec.ts", text = "", fg = "#89b4fa" }, - { name = "spec.tsx", text = "", fg = "#89b4fa" }, - { name = "spx", text = "", fg = "#89b4fa" }, - { name = "sql", text = "", fg = "#74c7ec" }, - { name = "sqlite", text = "", fg = "#74c7ec" }, - { name = "sqlite3", text = "", fg = "#74c7ec" }, - { name = "srt", text = "󰨖", fg = "#fab387" }, - { name = "ssa", text = "󰨖", fg = "#fab387" }, - { name = "ste", text = "󰻫", fg = "#fab387" }, - { name = "step", text = "󰻫", fg = "#fab387" }, - { name = "stl", text = "󰆧", fg = "#cba6f7" }, - { name = "stories.js", text = "", fg = "#eba0ac" }, - { name = "stories.jsx", text = "", fg = "#eba0ac" }, - { name = "stories.mjs", text = "", fg = "#eba0ac" }, - { name = "stories.svelte", text = "", fg = "#eba0ac" }, - { name = "stories.ts", text = "", fg = "#eba0ac" }, - { name = "stories.tsx", text = "", fg = "#eba0ac" }, - { name = "stories.vue", text = "", fg = "#eba0ac" }, - { name = "stp", text = "󰻫", fg = "#fab387" }, - { name = "strings", text = "", fg = "#89b4fa" }, - { name = "styl", text = "", fg = "#a6e3a1" }, - { name = "sub", text = "󰨖", fg = "#fab387" }, - { name = "sublime", text = "", fg = "#fab387" }, - { name = "suo", text = "", fg = "#cba6f7" }, - { name = "sv", text = "󰍛", fg = "#a6e3a1" }, - { name = "svelte", text = "", fg = "#f38ba8" }, - { name = "svg", text = "󰜡", fg = "#fab387" }, - { name = "svgz", text = "󰜡", fg = "#fab387" }, - { name = "svh", text = "󰍛", fg = "#a6e3a1" }, - { name = "swift", text = "", fg = "#fab387" }, - { name = "t", text = "", fg = "#89b4fa" }, - { name = "tbc", text = "󰛓", fg = "#89b4fa" }, - { name = "tcl", text = "󰛓", fg = "#89b4fa" }, - { name = "templ", text = "", fg = "#fab387" }, - { name = "terminal", text = "", fg = "#a6e3a1" }, - { name = "test.js", text = "", fg = "#f9e2af" }, - { name = "test.jsx", text = "", fg = "#74c7ec" }, - { name = "test.ts", text = "", fg = "#89b4fa" }, - { name = "test.tsx", text = "", fg = "#89b4fa" }, - { name = "tex", text = "", fg = "#a6e3a1" }, - { name = "tf", text = "", fg = "#cba6f7" }, - { name = "tfvars", text = "", fg = "#cba6f7" }, - { name = "tgz", text = "", fg = "#fab387" }, - { name = "tmpl", text = "", fg = "#fab387" }, - { name = "tmux", text = "", fg = "#a6e3a1" }, - { name = "toml", text = "", fg = "#f38ba8" }, - { name = "torrent", text = "", fg = "#74c7ec" }, - { name = "tres", text = "", fg = "#7f849c" }, - { name = "ts", text = "", fg = "#89b4fa" }, - { name = "tscn", text = "", fg = "#7f849c" }, - { name = "tsconfig", text = "", fg = "#fab387" }, - { name = "tsx", text = "", fg = "#89b4fa" }, - { name = "ttf", text = "", fg = "#cdd6f4" }, - { name = "twig", text = "", fg = "#a6e3a1" }, - { name = "txt", text = "󰈙", fg = "#a6e3a1" }, - { name = "txz", text = "", fg = "#fab387" }, - { name = "typ", text = "", fg = "#74c7ec" }, - { name = "typoscript", text = "", fg = "#fab387" }, - { name = "ui", text = "", fg = "#89b4fa" }, - { name = "v", text = "󰍛", fg = "#a6e3a1" }, - { name = "vala", text = "", fg = "#cba6f7" }, - { name = "vh", text = "󰍛", fg = "#a6e3a1" }, - { name = "vhd", text = "󰍛", fg = "#a6e3a1" }, - { name = "vhdl", text = "󰍛", fg = "#a6e3a1" }, - { name = "vi", text = "", fg = "#fab387" }, - { name = "vim", text = "", fg = "#a6e3a1" }, - { name = "vsh", text = "", fg = "#74c7ec" }, - { name = "vsix", text = "", fg = "#cba6f7" }, - { name = "vue", text = "", fg = "#a6e3a1" }, - { name = "wasm", text = "", fg = "#89b4fa" }, - { name = "wav", text = "", fg = "#89b4fa" }, - { name = "webm", text = "", fg = "#fab387" }, - { name = "webmanifest", text = "", fg = "#f9e2af" }, - { name = "webp", text = "", fg = "#cba6f7" }, - { name = "webpack", text = "󰜫", fg = "#89b4fa" }, - { name = "wma", text = "", fg = "#89b4fa" }, - { name = "wmv", text = "", fg = "#fab387" }, - { name = "woff", text = "", fg = "#cdd6f4" }, - { name = "woff2", text = "", fg = "#cdd6f4" }, - { name = "wrl", text = "󰆧", fg = "#cba6f7" }, - { name = "wrz", text = "󰆧", fg = "#cba6f7" }, - { name = "wv", text = "", fg = "#89b4fa" }, - { name = "wvc", text = "", fg = "#89b4fa" }, - { name = "x", text = "", fg = "#89b4fa" }, - { name = "xaml", text = "󰙳", fg = "#cba6f7" }, - { name = "xcf", text = "", fg = "#7f849c" }, - { name = "xcplayground", text = "", fg = "#fab387" }, - { name = "xcstrings", text = "", fg = "#89b4fa" }, - { name = "xls", text = "󰈛", fg = "#a6e3a1" }, - { name = "xlsx", text = "󰈛", fg = "#a6e3a1" }, - { name = "xm", text = "", fg = "#89b4fa" }, - { name = "xml", text = "󰗀", fg = "#fab387" }, - { name = "xpi", text = "", fg = "#f38ba8" }, - { name = "xul", text = "", fg = "#fab387" }, - { name = "xz", text = "", fg = "#fab387" }, - { name = "yaml", text = "", fg = "#7f849c" }, - { name = "yml", text = "", fg = "#7f849c" }, - { name = "zig", text = "", fg = "#fab387" }, - { name = "zip", text = "", fg = "#fab387" }, - { name = "zsh", text = "", fg = "#a6e3a1" }, - { name = "zst", text = "", fg = "#fab387" }, - { name = "🔥", text = "", fg = "#f38ba8" }, + { name = "3gp", text = "", fg = "#DBBC7F" }, + { name = "3mf", text = "󰆧", fg = "#D699B6" }, + { name = "7z", text = "", fg = "#DBBC7F" }, + { name = "a", text = "", fg = "#D3C6AA" }, + { name = "aac", text = "", fg = "#7FBBB3" }, + { name = "ada", text = "", fg = "#7FBBB3" }, + { name = "adb", text = "", fg = "#7FBBB3" }, + { name = "ads", text = "", fg = "#D699B6" }, + { name = "ai", text = "", fg = "#DBBC7F" }, + { name = "aif", text = "", fg = "#7FBBB3" }, + { name = "aiff", text = "", fg = "#7FBBB3" }, + { name = "android", text = "", fg = "#A7C080" }, + { name = "ape", text = "", fg = "#7FBBB3" }, + { name = "apk", text = "", fg = "#A7C080" }, + { name = "apl", text = "", fg = "#A7C080" }, + { name = "app", text = "", fg = "#E67E80" }, + { name = "applescript", text = "", fg = "#374145" }, + { name = "asc", text = "󰦝", fg = "#374145" }, + { name = "asm", text = "", fg = "#7FBBB3" }, + { name = "ass", text = "󰨖", fg = "#DBBC7F" }, + { name = "astro", text = "", fg = "#D699B6" }, + { name = "avif", text = "", fg = "#D699B6" }, + { name = "awk", text = "", fg = "#374145" }, + { name = "azcli", text = "", fg = "#7FBBB3" }, + { name = "bak", text = "󰁯", fg = "#374145" }, + { name = "bash", text = "", fg = "#A7C080" }, + { name = "bat", text = "", fg = "#A7C080" }, + { name = "bazel", text = "", fg = "#A7C080" }, + { name = "bib", text = "󱉟", fg = "#DBBC7F" }, + { name = "bicep", text = "", fg = "#7FBBB3" }, + { name = "bicepparam", text = "", fg = "#D699B6" }, + { name = "bin", text = "", fg = "#E67E80" }, + { name = "blade.php", text = "", fg = "#E67E80" }, + { name = "blend", text = "󰂫", fg = "#DBBC7F" }, + { name = "blp", text = "󰺾", fg = "#7FBBB3" }, + { name = "bmp", text = "", fg = "#D699B6" }, + { name = "bqn", text = "", fg = "#A7C080" }, + { name = "brep", text = "󰻫", fg = "#DBBC7F" }, + { name = "bz", text = "", fg = "#DBBC7F" }, + { name = "bz2", text = "", fg = "#DBBC7F" }, + { name = "bz3", text = "", fg = "#DBBC7F" }, + { name = "bzl", text = "", fg = "#A7C080" }, + { name = "c", text = "", fg = "#7FBBB3" }, + { name = "c++", text = "", fg = "#E67E80" }, + { name = "cache", text = "", fg = "#83C092" }, + { name = "cast", text = "", fg = "#DBBC7F" }, + { name = "cbl", text = "", fg = "#7FBBB3" }, + { name = "cc", text = "", fg = "#E67E80" }, + { name = "ccm", text = "", fg = "#E67E80" }, + { name = "cfc", text = "", fg = "#83C092" }, + { name = "cfg", text = "", fg = "#374145" }, + { name = "cfm", text = "", fg = "#83C092" }, + { name = "cjs", text = "", fg = "#DBBC7F" }, + { name = "clj", text = "", fg = "#A7C080" }, + { name = "cljc", text = "", fg = "#A7C080" }, + { name = "cljd", text = "", fg = "#7FBBB3" }, + { name = "cljs", text = "", fg = "#7FBBB3" }, + { name = "cmake", text = "", fg = "#D3C6AA" }, + { name = "cob", text = "", fg = "#7FBBB3" }, + { name = "cobol", text = "", fg = "#7FBBB3" }, + { name = "coffee", text = "", fg = "#DBBC7F" }, + { name = "conda", text = "", fg = "#A7C080" }, + { name = "conf", text = "", fg = "#374145" }, + { name = "config.ru", text = "", fg = "#E67E80" }, + { name = "cow", text = "󰆚", fg = "#DBBC7F" }, + { name = "cp", text = "", fg = "#7FBBB3" }, + { name = "cpp", text = "", fg = "#7FBBB3" }, + { name = "cppm", text = "", fg = "#7FBBB3" }, + { name = "cpy", text = "", fg = "#7FBBB3" }, + { name = "cr", text = "", fg = "#D3C6AA" }, + { name = "crdownload", text = "", fg = "#83C092" }, + { name = "cs", text = "󰌛", fg = "#DBBC7F" }, + { name = "csh", text = "", fg = "#374145" }, + { name = "cshtml", text = "󱦗", fg = "#D699B6" }, + { name = "cson", text = "", fg = "#DBBC7F" }, + { name = "csproj", text = "󰪮", fg = "#D699B6" }, + { name = "css", text = "", fg = "#D699B6" }, + { name = "csv", text = "", fg = "#A7C080" }, + { name = "cts", text = "", fg = "#7FBBB3" }, + { name = "cu", text = "", fg = "#A7C080" }, + { name = "cue", text = "󰲹", fg = "#D699B6" }, + { name = "cuh", text = "", fg = "#D699B6" }, + { name = "cxx", text = "", fg = "#7FBBB3" }, + { name = "cxxm", text = "", fg = "#7FBBB3" }, + { name = "d", text = "", fg = "#E67E80" }, + { name = "d.ts", text = "", fg = "#DBBC7F" }, + { name = "dart", text = "", fg = "#7FBBB3" }, + { name = "db", text = "", fg = "#83C092" }, + { name = "dconf", text = "", fg = "#83C092" }, + { name = "desktop", text = "", fg = "#D699B6" }, + { name = "diff", text = "", fg = "#374145" }, + { name = "dll", text = "", fg = "#E67E80" }, + { name = "doc", text = "󰈬", fg = "#7FBBB3" }, + { name = "Dockerfile", text = "󰡨", fg = "#7FBBB3" }, + { name = "dockerignore", text = "󰡨", fg = "#7FBBB3" }, + { name = "docx", text = "󰈬", fg = "#7FBBB3" }, + { name = "dot", text = "󱁉", fg = "#7FBBB3" }, + { name = "download", text = "", fg = "#83C092" }, + { name = "drl", text = "", fg = "#E67E80" }, + { name = "dropbox", text = "", fg = "#7FBBB3" }, + { name = "dump", text = "", fg = "#83C092" }, + { name = "dwg", text = "󰻫", fg = "#DBBC7F" }, + { name = "dxf", text = "󰻫", fg = "#DBBC7F" }, + { name = "ebook", text = "", fg = "#DBBC7F" }, + { name = "ebuild", text = "", fg = "#D699B6" }, + { name = "edn", text = "", fg = "#7FBBB3" }, + { name = "eex", text = "", fg = "#D699B6" }, + { name = "ejs", text = "", fg = "#DBBC7F" }, + { name = "el", text = "", fg = "#D699B6" }, + { name = "elc", text = "", fg = "#D699B6" }, + { name = "elf", text = "", fg = "#E67E80" }, + { name = "elm", text = "", fg = "#7FBBB3" }, + { name = "eln", text = "", fg = "#D699B6" }, + { name = "env", text = "", fg = "#DBBC7F" }, + { name = "eot", text = "", fg = "#D3C6AA" }, + { name = "epp", text = "", fg = "#DBBC7F" }, + { name = "epub", text = "", fg = "#DBBC7F" }, + { name = "erb", text = "", fg = "#E67E80" }, + { name = "erl", text = "", fg = "#D699B6" }, + { name = "ex", text = "", fg = "#D699B6" }, + { name = "exe", text = "", fg = "#E67E80" }, + { name = "exs", text = "", fg = "#D699B6" }, + { name = "f#", text = "", fg = "#7FBBB3" }, + { name = "f3d", text = "󰻫", fg = "#DBBC7F" }, + { name = "f90", text = "󱈚", fg = "#D699B6" }, + { name = "fbx", text = "󰆧", fg = "#D699B6" }, + { name = "fcbak", text = "", fg = "#E67E80" }, + { name = "fcmacro", text = "", fg = "#E67E80" }, + { name = "fcmat", text = "", fg = "#E67E80" }, + { name = "fcparam", text = "", fg = "#E67E80" }, + { name = "fcscript", text = "", fg = "#E67E80" }, + { name = "fcstd", text = "", fg = "#E67E80" }, + { name = "fcstd1", text = "", fg = "#E67E80" }, + { name = "fctb", text = "", fg = "#E67E80" }, + { name = "fctl", text = "", fg = "#E67E80" }, + { name = "fdmdownload", text = "", fg = "#83C092" }, + { name = "feature", text = "", fg = "#A7C080" }, + { name = "fish", text = "", fg = "#374145" }, + { name = "flac", text = "", fg = "#7FBBB3" }, + { name = "flc", text = "", fg = "#D3C6AA" }, + { name = "flf", text = "", fg = "#D3C6AA" }, + { name = "fnl", text = "", fg = "#DBBC7F" }, + { name = "fodg", text = "", fg = "#DBBC7F" }, + { name = "fodp", text = "", fg = "#DBBC7F" }, + { name = "fods", text = "", fg = "#A7C080" }, + { name = "fodt", text = "", fg = "#7FBBB3" }, + { name = "frag", text = "", fg = "#83C092" }, + { name = "fs", text = "", fg = "#7FBBB3" }, + { name = "fsi", text = "", fg = "#7FBBB3" }, + { name = "fsscript", text = "", fg = "#7FBBB3" }, + { name = "fsx", text = "", fg = "#7FBBB3" }, + { name = "gcode", text = "󰐫", fg = "#7FBBB3" }, + { name = "gd", text = "", fg = "#374145" }, + { name = "gemspec", text = "", fg = "#E67E80" }, + { name = "geom", text = "", fg = "#83C092" }, + { name = "gif", text = "", fg = "#D699B6" }, + { name = "git", text = "", fg = "#E67E80" }, + { name = "glb", text = "", fg = "#DBBC7F" }, + { name = "gleam", text = "", fg = "#D699B6" }, + { name = "glsl", text = "", fg = "#83C092" }, + { name = "gnumakefile", text = "", fg = "#374145" }, + { name = "go", text = "", fg = "#83C092" }, + { name = "godot", text = "", fg = "#374145" }, + { name = "gpr", text = "", fg = "#374145" }, + { name = "gql", text = "", fg = "#D699B6" }, + { name = "gradle", text = "", fg = "#7FBBB3" }, + { name = "graphql", text = "", fg = "#D699B6" }, + { name = "gresource", text = "", fg = "#83C092" }, + { name = "gv", text = "󱁉", fg = "#7FBBB3" }, + { name = "gz", text = "", fg = "#DBBC7F" }, + { name = "h", text = "", fg = "#D699B6" }, + { name = "haml", text = "", fg = "#D3C6AA" }, + { name = "hbs", text = "", fg = "#E67E80" }, + { name = "heex", text = "", fg = "#D699B6" }, + { name = "hex", text = "", fg = "#7FBBB3" }, + { name = "hh", text = "", fg = "#D699B6" }, + { name = "hpp", text = "", fg = "#D699B6" }, + { name = "hrl", text = "", fg = "#D699B6" }, + { name = "hs", text = "", fg = "#D699B6" }, + { name = "htm", text = "", fg = "#E67E80" }, + { name = "html", text = "", fg = "#E67E80" }, + { name = "http", text = "", fg = "#7FBBB3" }, + { name = "huff", text = "󰡘", fg = "#D699B6" }, + { name = "hurl", text = "", fg = "#D699B6" }, + { name = "hx", text = "", fg = "#DBBC7F" }, + { name = "hxx", text = "", fg = "#D699B6" }, + { name = "ical", text = "", fg = "#7FBBB3" }, + { name = "icalendar", text = "", fg = "#7FBBB3" }, + { name = "ico", text = "", fg = "#DBBC7F" }, + { name = "ics", text = "", fg = "#7FBBB3" }, + { name = "ifb", text = "", fg = "#7FBBB3" }, + { name = "ifc", text = "󰻫", fg = "#DBBC7F" }, + { name = "ige", text = "󰻫", fg = "#DBBC7F" }, + { name = "iges", text = "󰻫", fg = "#DBBC7F" }, + { name = "igs", text = "󰻫", fg = "#DBBC7F" }, + { name = "image", text = "", fg = "#E67E80" }, + { name = "img", text = "", fg = "#E67E80" }, + { name = "import", text = "", fg = "#D3C6AA" }, + { name = "info", text = "", fg = "#DBBC7F" }, + { name = "ini", text = "", fg = "#374145" }, + { name = "ino", text = "", fg = "#83C092" }, + { name = "ipynb", text = "", fg = "#DBBC7F" }, + { name = "iso", text = "", fg = "#E67E80" }, + { name = "ixx", text = "", fg = "#7FBBB3" }, + { name = "jar", text = "", fg = "#DBBC7F" }, + { name = "java", text = "", fg = "#E67E80" }, + { name = "jl", text = "", fg = "#D699B6" }, + { name = "jpeg", text = "", fg = "#D699B6" }, + { name = "jpg", text = "", fg = "#D699B6" }, + { name = "js", text = "", fg = "#DBBC7F" }, + { name = "json", text = "", fg = "#DBBC7F" }, + { name = "json5", text = "", fg = "#DBBC7F" }, + { name = "jsonc", text = "", fg = "#DBBC7F" }, + { name = "jsx", text = "", fg = "#83C092" }, + { name = "jwmrc", text = "", fg = "#7FBBB3" }, + { name = "jxl", text = "", fg = "#D699B6" }, + { name = "kbx", text = "󰯄", fg = "#374145" }, + { name = "kdb", text = "", fg = "#A7C080" }, + { name = "kdbx", text = "", fg = "#A7C080" }, + { name = "kdenlive", text = "", fg = "#83C092" }, + { name = "kdenlivetitle", text = "", fg = "#83C092" }, + { name = "kicad_dru", text = "", fg = "#83C092" }, + { name = "kicad_mod", text = "", fg = "#83C092" }, + { name = "kicad_pcb", text = "", fg = "#83C092" }, + { name = "kicad_prl", text = "", fg = "#83C092" }, + { name = "kicad_pro", text = "", fg = "#83C092" }, + { name = "kicad_sch", text = "", fg = "#83C092" }, + { name = "kicad_sym", text = "", fg = "#83C092" }, + { name = "kicad_wks", text = "", fg = "#83C092" }, + { name = "ko", text = "", fg = "#D3C6AA" }, + { name = "kpp", text = "", fg = "#D699B6" }, + { name = "kra", text = "", fg = "#D699B6" }, + { name = "krz", text = "", fg = "#D699B6" }, + { name = "ksh", text = "", fg = "#374145" }, + { name = "kt", text = "", fg = "#7FBBB3" }, + { name = "kts", text = "", fg = "#7FBBB3" }, + { name = "lck", text = "", fg = "#D3C6AA" }, + { name = "leex", text = "", fg = "#D699B6" }, + { name = "less", text = "", fg = "#D699B6" }, + { name = "lff", text = "", fg = "#D3C6AA" }, + { name = "lhs", text = "", fg = "#D699B6" }, + { name = "lib", text = "", fg = "#E67E80" }, + { name = "license", text = "", fg = "#DBBC7F" }, + { name = "liquid", text = "", fg = "#DBBC7F" }, + { name = "lock", text = "", fg = "#D3C6AA" }, + { name = "log", text = "󰌱", fg = "#D3C6AA" }, + { name = "lrc", text = "󰨖", fg = "#DBBC7F" }, + { name = "lua", text = "", fg = "#7FBBB3" }, + { name = "luac", text = "", fg = "#7FBBB3" }, + { name = "luau", text = "", fg = "#7FBBB3" }, + { name = "m", text = "", fg = "#7FBBB3" }, + { name = "m3u", text = "󰲹", fg = "#D699B6" }, + { name = "m3u8", text = "󰲹", fg = "#D699B6" }, + { name = "m4a", text = "", fg = "#7FBBB3" }, + { name = "m4v", text = "", fg = "#DBBC7F" }, + { name = "magnet", text = "", fg = "#E67E80" }, + { name = "makefile", text = "", fg = "#374145" }, + { name = "markdown", text = "", fg = "#D3C6AA" }, + { name = "material", text = "", fg = "#D699B6" }, + { name = "md", text = "", fg = "#D3C6AA" }, + { name = "md5", text = "󰕥", fg = "#D699B6" }, + { name = "mdx", text = "", fg = "#7FBBB3" }, + { name = "mint", text = "󰌪", fg = "#A7C080" }, + { name = "mjs", text = "", fg = "#DBBC7F" }, + { name = "mk", text = "", fg = "#374145" }, + { name = "mkv", text = "", fg = "#DBBC7F" }, + { name = "ml", text = "", fg = "#DBBC7F" }, + { name = "mli", text = "", fg = "#DBBC7F" }, + { name = "mm", text = "", fg = "#7FBBB3" }, + { name = "mo", text = "", fg = "#D699B6" }, + { name = "mobi", text = "", fg = "#DBBC7F" }, + { name = "mojo", text = "", fg = "#E67E80" }, + { name = "mov", text = "", fg = "#DBBC7F" }, + { name = "mp3", text = "", fg = "#7FBBB3" }, + { name = "mp4", text = "", fg = "#DBBC7F" }, + { name = "mpp", text = "", fg = "#7FBBB3" }, + { name = "msf", text = "", fg = "#7FBBB3" }, + { name = "mts", text = "", fg = "#7FBBB3" }, + { name = "mustache", text = "", fg = "#DBBC7F" }, + { name = "nfo", text = "", fg = "#DBBC7F" }, + { name = "nim", text = "", fg = "#DBBC7F" }, + { name = "nix", text = "", fg = "#83C092" }, + { name = "norg", text = "", fg = "#7FBBB3" }, + { name = "nswag", text = "", fg = "#A7C080" }, + { name = "nu", text = "", fg = "#83C092" }, + { name = "o", text = "", fg = "#E67E80" }, + { name = "obj", text = "󰆧", fg = "#D699B6" }, + { name = "odf", text = "", fg = "#E67E80" }, + { name = "odg", text = "", fg = "#DBBC7F" }, + { name = "odin", text = "󰟢", fg = "#7FBBB3" }, + { name = "odp", text = "", fg = "#DBBC7F" }, + { name = "ods", text = "", fg = "#A7C080" }, + { name = "odt", text = "", fg = "#7FBBB3" }, + { name = "oga", text = "", fg = "#7FBBB3" }, + { name = "ogg", text = "", fg = "#7FBBB3" }, + { name = "ogv", text = "", fg = "#DBBC7F" }, + { name = "ogx", text = "", fg = "#DBBC7F" }, + { name = "opus", text = "", fg = "#7FBBB3" }, + { name = "org", text = "", fg = "#83C092" }, + { name = "otf", text = "", fg = "#D3C6AA" }, + { name = "out", text = "", fg = "#E67E80" }, + { name = "part", text = "", fg = "#83C092" }, + { name = "patch", text = "", fg = "#374145" }, + { name = "pck", text = "", fg = "#374145" }, + { name = "pcm", text = "", fg = "#7FBBB3" }, + { name = "pdf", text = "", fg = "#E67E80" }, + { name = "php", text = "", fg = "#D699B6" }, + { name = "pl", text = "", fg = "#7FBBB3" }, + { name = "pls", text = "󰲹", fg = "#D699B6" }, + { name = "ply", text = "󰆧", fg = "#D699B6" }, + { name = "pm", text = "", fg = "#7FBBB3" }, + { name = "png", text = "", fg = "#D699B6" }, + { name = "po", text = "", fg = "#7FBBB3" }, + { name = "pot", text = "", fg = "#7FBBB3" }, + { name = "pp", text = "", fg = "#DBBC7F" }, + { name = "ppt", text = "󰈧", fg = "#E67E80" }, + { name = "pptx", text = "󰈧", fg = "#E67E80" }, + { name = "prisma", text = "", fg = "#7FBBB3" }, + { name = "pro", text = "", fg = "#DBBC7F" }, + { name = "ps1", text = "󰨊", fg = "#7FBBB3" }, + { name = "psb", text = "", fg = "#7FBBB3" }, + { name = "psd", text = "", fg = "#7FBBB3" }, + { name = "psd1", text = "󰨊", fg = "#7FBBB3" }, + { name = "psm1", text = "󰨊", fg = "#7FBBB3" }, + { name = "pub", text = "󰷖", fg = "#DBBC7F" }, + { name = "pxd", text = "", fg = "#7FBBB3" }, + { name = "pxi", text = "", fg = "#7FBBB3" }, + { name = "py", text = "", fg = "#DBBC7F" }, + { name = "pyc", text = "", fg = "#DBBC7F" }, + { name = "pyd", text = "", fg = "#DBBC7F" }, + { name = "pyi", text = "", fg = "#DBBC7F" }, + { name = "pyo", text = "", fg = "#DBBC7F" }, + { name = "pyw", text = "", fg = "#7FBBB3" }, + { name = "pyx", text = "", fg = "#7FBBB3" }, + { name = "qm", text = "", fg = "#7FBBB3" }, + { name = "qml", text = "", fg = "#A7C080" }, + { name = "qrc", text = "", fg = "#A7C080" }, + { name = "qss", text = "", fg = "#A7C080" }, + { name = "query", text = "", fg = "#A7C080" }, + { name = "r", text = "󰟔", fg = "#7FBBB3" }, + { name = "R", text = "󰟔", fg = "#7FBBB3" }, + { name = "rake", text = "", fg = "#E67E80" }, + { name = "rar", text = "", fg = "#DBBC7F" }, + { name = "rasi", text = "", fg = "#DBBC7F" }, + { name = "razor", text = "󱦘", fg = "#D699B6" }, + { name = "rb", text = "", fg = "#E67E80" }, + { name = "res", text = "", fg = "#E67E80" }, + { name = "resi", text = "", fg = "#E67E80" }, + { name = "rlib", text = "", fg = "#E67E80" }, + { name = "rmd", text = "", fg = "#7FBBB3" }, + { name = "rproj", text = "󰗆", fg = "#A7C080" }, + { name = "rs", text = "", fg = "#E67E80" }, + { name = "rss", text = "", fg = "#DBBC7F" }, + { name = "s", text = "", fg = "#7FBBB3" }, + { name = "sass", text = "", fg = "#E67E80" }, + { name = "sbt", text = "", fg = "#E67E80" }, + { name = "sc", text = "", fg = "#E67E80" }, + { name = "scad", text = "", fg = "#DBBC7F" }, + { name = "scala", text = "", fg = "#E67E80" }, + { name = "scm", text = "󰘧", fg = "#D3C6AA" }, + { name = "scss", text = "", fg = "#E67E80" }, + { name = "sh", text = "", fg = "#374145" }, + { name = "sha1", text = "󰕥", fg = "#D699B6" }, + { name = "sha224", text = "󰕥", fg = "#D699B6" }, + { name = "sha256", text = "󰕥", fg = "#D699B6" }, + { name = "sha384", text = "󰕥", fg = "#D699B6" }, + { name = "sha512", text = "󰕥", fg = "#D699B6" }, + { name = "sig", text = "󰘧", fg = "#DBBC7F" }, + { name = "signature", text = "󰘧", fg = "#DBBC7F" }, + { name = "skp", text = "󰻫", fg = "#DBBC7F" }, + { name = "sldasm", text = "󰻫", fg = "#DBBC7F" }, + { name = "sldprt", text = "󰻫", fg = "#DBBC7F" }, + { name = "slim", text = "", fg = "#E67E80" }, + { name = "sln", text = "", fg = "#D699B6" }, + { name = "slnx", text = "", fg = "#D699B6" }, + { name = "slvs", text = "󰻫", fg = "#DBBC7F" }, + { name = "sml", text = "󰘧", fg = "#DBBC7F" }, + { name = "so", text = "", fg = "#D3C6AA" }, + { name = "sol", text = "", fg = "#7FBBB3" }, + { name = "spec.js", text = "", fg = "#DBBC7F" }, + { name = "spec.jsx", text = "", fg = "#83C092" }, + { name = "spec.ts", text = "", fg = "#7FBBB3" }, + { name = "spec.tsx", text = "", fg = "#7FBBB3" }, + { name = "spx", text = "", fg = "#7FBBB3" }, + { name = "sql", text = "", fg = "#83C092" }, + { name = "sqlite", text = "", fg = "#83C092" }, + { name = "sqlite3", text = "", fg = "#83C092" }, + { name = "srt", text = "󰨖", fg = "#DBBC7F" }, + { name = "ssa", text = "󰨖", fg = "#DBBC7F" }, + { name = "ste", text = "󰻫", fg = "#DBBC7F" }, + { name = "step", text = "󰻫", fg = "#DBBC7F" }, + { name = "stl", text = "󰆧", fg = "#D699B6" }, + { name = "stories.js", text = "", fg = "#E67E80" }, + { name = "stories.jsx", text = "", fg = "#E67E80" }, + { name = "stories.mjs", text = "", fg = "#E67E80" }, + { name = "stories.svelte", text = "", fg = "#E67E80" }, + { name = "stories.ts", text = "", fg = "#E67E80" }, + { name = "stories.tsx", text = "", fg = "#E67E80" }, + { name = "stories.vue", text = "", fg = "#E67E80" }, + { name = "stp", text = "󰻫", fg = "#DBBC7F" }, + { name = "strings", text = "", fg = "#7FBBB3" }, + { name = "styl", text = "", fg = "#A7C080" }, + { name = "sub", text = "󰨖", fg = "#DBBC7F" }, + { name = "sublime", text = "", fg = "#DBBC7F" }, + { name = "suo", text = "", fg = "#D699B6" }, + { name = "sv", text = "󰍛", fg = "#A7C080" }, + { name = "svelte", text = "", fg = "#E67E80" }, + { name = "svg", text = "󰜡", fg = "#DBBC7F" }, + { name = "svgz", text = "󰜡", fg = "#DBBC7F" }, + { name = "svh", text = "󰍛", fg = "#A7C080" }, + { name = "swift", text = "", fg = "#DBBC7F" }, + { name = "t", text = "", fg = "#7FBBB3" }, + { name = "tbc", text = "󰛓", fg = "#7FBBB3" }, + { name = "tcl", text = "󰛓", fg = "#7FBBB3" }, + { name = "templ", text = "", fg = "#DBBC7F" }, + { name = "terminal", text = "", fg = "#A7C080" }, + { name = "test.js", text = "", fg = "#DBBC7F" }, + { name = "test.jsx", text = "", fg = "#83C092" }, + { name = "test.ts", text = "", fg = "#7FBBB3" }, + { name = "test.tsx", text = "", fg = "#7FBBB3" }, + { name = "tex", text = "", fg = "#A7C080" }, + { name = "tf", text = "", fg = "#D699B6" }, + { name = "tfvars", text = "", fg = "#D699B6" }, + { name = "tgz", text = "", fg = "#DBBC7F" }, + { name = "tmpl", text = "", fg = "#DBBC7F" }, + { name = "tmux", text = "", fg = "#A7C080" }, + { name = "toml", text = "", fg = "#E67E80" }, + { name = "torrent", text = "", fg = "#83C092" }, + { name = "tres", text = "", fg = "#374145" }, + { name = "ts", text = "", fg = "#7FBBB3" }, + { name = "tscn", text = "", fg = "#374145" }, + { name = "tsconfig", text = "", fg = "#DBBC7F" }, + { name = "tsx", text = "", fg = "#7FBBB3" }, + { name = "ttf", text = "", fg = "#D3C6AA" }, + { name = "twig", text = "", fg = "#A7C080" }, + { name = "txt", text = "󰈙", fg = "#A7C080" }, + { name = "txz", text = "", fg = "#DBBC7F" }, + { name = "typ", text = "", fg = "#83C092" }, + { name = "typoscript", text = "", fg = "#DBBC7F" }, + { name = "ui", text = "", fg = "#7FBBB3" }, + { name = "v", text = "󰍛", fg = "#A7C080" }, + { name = "vala", text = "", fg = "#D699B6" }, + { name = "vert", text = "", fg = "#83C092" }, + { name = "vh", text = "󰍛", fg = "#A7C080" }, + { name = "vhd", text = "󰍛", fg = "#A7C080" }, + { name = "vhdl", text = "󰍛", fg = "#A7C080" }, + { name = "vi", text = "", fg = "#DBBC7F" }, + { name = "vim", text = "", fg = "#A7C080" }, + { name = "vsh", text = "", fg = "#83C092" }, + { name = "vsix", text = "", fg = "#D699B6" }, + { name = "vue", text = "", fg = "#A7C080" }, + { name = "wasm", text = "", fg = "#7FBBB3" }, + { name = "wav", text = "", fg = "#7FBBB3" }, + { name = "webm", text = "", fg = "#DBBC7F" }, + { name = "webmanifest", text = "", fg = "#DBBC7F" }, + { name = "webp", text = "", fg = "#D699B6" }, + { name = "webpack", text = "󰜫", fg = "#7FBBB3" }, + { name = "wma", text = "", fg = "#7FBBB3" }, + { name = "wmv", text = "", fg = "#DBBC7F" }, + { name = "woff", text = "", fg = "#D3C6AA" }, + { name = "woff2", text = "", fg = "#D3C6AA" }, + { name = "wrl", text = "󰆧", fg = "#D699B6" }, + { name = "wrz", text = "󰆧", fg = "#D699B6" }, + { name = "wv", text = "", fg = "#7FBBB3" }, + { name = "wvc", text = "", fg = "#7FBBB3" }, + { name = "x", text = "", fg = "#7FBBB3" }, + { name = "xaml", text = "󰙳", fg = "#D699B6" }, + { name = "xcf", text = "", fg = "#374145" }, + { name = "xcplayground", text = "", fg = "#DBBC7F" }, + { name = "xcstrings", text = "", fg = "#7FBBB3" }, + { name = "xls", text = "󰈛", fg = "#A7C080" }, + { name = "xlsx", text = "󰈛", fg = "#A7C080" }, + { name = "xm", text = "", fg = "#7FBBB3" }, + { name = "xml", text = "󰗀", fg = "#DBBC7F" }, + { name = "xpi", text = "", fg = "#E67E80" }, + { name = "xul", text = "", fg = "#DBBC7F" }, + { name = "xz", text = "", fg = "#DBBC7F" }, + { name = "yaml", text = "", fg = "#374145" }, + { name = "yml", text = "", fg = "#374145" }, + { name = "zig", text = "", fg = "#DBBC7F" }, + { name = "zip", text = "", fg = "#DBBC7F" }, + { name = "zsh", text = "", fg = "#A7C080" }, + { name = "zst", text = "", fg = "#DBBC7F" }, + { name = "🔥", text = "", fg = "#E67E80" }, ] -- cgit v1.2.3