diff --git a/autoload/lightline/colorscheme/nekonight.vim b/autoload/lightline/colorscheme/nekonight.vim deleted file mode 100644 index 50dcfbf..0000000 --- a/autoload/lightline/colorscheme/nekonight.vim +++ /dev/null @@ -1,2 +0,0 @@ -let s:palette = v:lua.require('lightline.colorscheme.nekonight') -let g:lightline#colorscheme#nekonight#palette = lightline#colorscheme#fill(s:palette) diff --git a/emacs/nekonight-moon-theme.el b/emacs/nekonight-moon-theme.el deleted file mode 100755 index ddcc88b..0000000 --- a/emacs/nekonight-moon-theme.el +++ /dev/null @@ -1,430 +0,0 @@ -;;; nekonight-moon-theme.el --- NekoNight, an all-around theme -*- lexical-binding: t -*- - -;; Copyright (C) 2024 Bruno Ciccarino - -;; Author: Bruno Ciccarino -;; URL: https://github.com/BrunoCiccarino/nekonight -;; Keywords: faces, theme, nekonight, moon - -;; Package-Version: 0.0.3 -;; Package-Requires: ((emacs "24.0")) - -;; SPDX-License-Identifier: MIT - -;; This file is not part of GNU Emacs. - -;; Permission is hereby granted, free of charge, to any person obtaining a copy -;; of this software and associated documentation files (the "Software"), to deal -;; in the Software without restriction, including without limitation the rights -;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -;; copies of the Software, and to permit persons to whom the Software is -;; furnished to do so, subject to the following conditions: - -;; The above copyright notice and this permission notice shall be included in all -;; copies or substantial portions of the Software. - -;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -;; SOFTWARE. - -;;; Commentary: - -;; Looking for a theme that fits your vibe? Whether you're into dark mode, -;; light mode, or something in between, this NekoNight has got you covered. -;; It's a buffet of color schemes for every taste and mood. - -;;; Code: - -(deftheme nekonight-moon - "Nekonight-Moon color theme for Emacs 24.") - -;; Please, install rainbow-mode. -;; Colors with +x are lighter. Colors with -x are darker. -(let ((nekonight-moon-fg "#c8d3f5") - (nekonight-moon-fg+1 "#f4f4ff") - (nekonight-moon-fg+2 "#f5f5f5") - (nekonight-moon-white "#ffffff") - (nekonight-moon-black "#000000") - (nekonight-moon-bg-1 "#101010") - (nekonight-moon-bg "#222436") - (nekonight-moon-bg+1 "#1e2030") - (nekonight-moon-bg+2 "#191B29") - (nekonight-moon-bg+3 "#191B29") - (nekonight-moon-bg+4 "#636da6") - (nekonight-moon-red-1 "#c73c3f") - (nekonight-moon-red "#ff757f") - (nekonight-moon-red+1 "#c53b53") - (nekonight-moon-green "#c3e88d") - (nekonight-moon-pink "#fca7ea") - (nekonight-moon-brown "#cc8c3c") - (nekonight-moon-cyan "#86e1fc") - (nekonight-moon-purple "#c099ff") - (nekonight-moon-niagara-1 "#565f73") - (nekonight-moon-blue "#82aaff") - (nekonight-moon-wisteria "#9e95c7") - ) - (custom-theme-set-variables - 'nekonight-moon - '(frame-brackground-mode (quote dark))) - - (custom-theme-set-faces - 'nekonight-moon - - ;; Agda2 - `(agda2-highlight-datatype-face ((t (:foreground ,nekonight-moon-cyan)))) - `(agda2-highlight-primitive-type-face ((t (:foreground ,nekonight-moon-cyan)))) - `(agda2-highlight-function-face ((t (:foreground ,nekonight-moon-blue)))) - `(agda2-highlight-keyword-face ((t ,(list :foreground nekonight-moon-pink - :bold t)))) - `(agda2-highlight-inductive-constructor-face ((t (:foreground ,nekonight-moon-green)))) - `(agda2-highlight-number-face ((t (:foreground ,nekonight-moon-wisteria)))) - - ;; AUCTeX - `(font-latex-bold-face ((t (:foreground ,nekonight-moon-cyan :bold t)))) - `(font-latex-italic-face ((t (:foreground ,nekonight-moon-cyan :italic t)))) - `(font-latex-math-face ((t (:foreground ,nekonight-moon-green)))) - `(font-latex-sectioning-5-face ((t ,(list :foreground nekonight-moon-blue - :bold t)))) - `(font-latex-slide-title-face ((t (:foreground ,nekonight-moon-blue)))) - `(font-latex-string-face ((t (:foreground ,nekonight-moon-green)))) - `(font-latex-warning-face ((t (:foreground ,nekonight-moon-red)))) - - ;; Basic Coloring (or Uncategorized) - `(border ((t ,(list :background nekonight-moon-bg-1 - :foreground nekonight-moon-bg+2)))) - `(cursor ((t (:background ,nekonight-moon-pink)))) - `(default ((t ,(list :foreground nekonight-moon-fg - :background nekonight-moon-bg)))) - `(fringe ((t ,(list :background nil - :foreground nekonight-moon-bg+2)))) - `(vertical-border ((t ,(list :foreground nekonight-moon-bg+2)))) - `(link ((t (:foreground ,nekonight-moon-blue :underline t)))) - `(link-visited ((t (:foreground ,nekonight-moon-wisteria :underline t)))) - `(match ((t (:background ,nekonight-moon-bg+4)))) - `(shadow ((t (:foreground ,nekonight-moon-bg+4)))) - `(minibuffer-prompt ((t (:foreground ,nekonight-moon-blue)))) - `(region ((t (:background ,nekonight-moon-bg+3 :foreground nil)))) - `(secondary-selection ((t ,(list :background nekonight-moon-bg+3 - :foreground nil)))) - `(trailing-whitespace ((t ,(list :foreground nekonight-moon-black - :background nekonight-moon-red)))) - `(tooltip ((t ,(list :background nekonight-moon-bg+4 - :foreground nekonight-moon-white)))) - - ;; Calendar - `(holiday-face ((t (:foreground ,nekonight-moon-red)))) - - ;; Compilation - `(compilation-info ((t ,(list :foreground nekonight-moon-green - :inherit 'unspecified)))) - `(compilation-warning ((t ,(list :foreground nekonight-moon-brown - :bold t - :inherit 'unspecified)))) - `(compilation-error ((t (:foreground ,nekonight-moon-red+1)))) - `(compilation-mode-line-fail ((t ,(list :foreground nekonight-moon-red - :weight 'bold - :inherit 'unspecified)))) - `(compilation-mode-line-exit ((t ,(list :foreground nekonight-moon-green - :weight 'bold - :inherit 'unspecified)))) - - ;; Completion - `(completions-annotations ((t (:inherit 'shadow)))) - - ;; Custom - `(custom-state ((t (:foreground ,nekonight-moon-green)))) - - ;; Diff - `(diff-removed ((t ,(list :foreground nekonight-moon-red+1 - :background nil)))) - `(diff-added ((t ,(list :foreground nekonight-moon-green - :background nil)))) - - ;; Dired - `(dired-directory ((t (:foreground ,nekonight-moon-blue :weight bold)))) - `(dired-ignored ((t ,(list :foreground nekonight-moon-cyan - :inherit 'unspecified)))) - - ;; Ebrowse - `(ebrowse-root-class ((t (:foreground ,nekonight-moon-blue :weight bold)))) - `(ebrowse-progress ((t (:background ,nekonight-moon-blue)))) - - ;; Egg - `(egg-branch ((t (:foreground ,nekonight-moon-pink)))) - `(egg-branch-mono ((t (:foreground ,nekonight-moon-pink)))) - `(egg-diff-add ((t (:foreground ,nekonight-moon-green)))) - `(egg-diff-del ((t (:foreground ,nekonight-moon-red)))) - `(egg-diff-file-header ((t (:foreground ,nekonight-moon-wisteria)))) - `(egg-help-header-1 ((t (:foreground ,nekonight-moon-pink)))) - `(egg-help-header-2 ((t (:foreground ,nekonight-moon-blue)))) - `(egg-log-HEAD-name ((t (:box (:color ,nekonight-moon-fg))))) - `(egg-reflog-mono ((t (:foreground ,nekonight-moon-niagara-1)))) - `(egg-section-title ((t (:foreground ,nekonight-moon-pink)))) - `(egg-text-base ((t (:foreground ,nekonight-moon-fg)))) - `(egg-term ((t (:foreground ,nekonight-moon-pink)))) - - ;; ERC - `(erc-notice-face ((t (:foreground ,nekonight-moon-wisteria)))) - `(erc-timestamp-face ((t (:foreground ,nekonight-moon-green)))) - `(erc-input-face ((t (:foreground ,nekonight-moon-red+1)))) - `(erc-my-nick-face ((t (:foreground ,nekonight-moon-red+1)))) - - ;; EShell - `(eshell-ls-backup ((t (:foreground ,nekonight-moon-cyan)))) - `(eshell-ls-directory ((t (:foreground ,nekonight-moon-blue)))) - `(eshell-ls-executable ((t (:foreground ,nekonight-moon-green)))) - `(eshell-ls-symlink ((t (:foreground ,nekonight-moon-pink)))) - - ;; Font Lock - `(font-lock-builtin-face ((t (:foreground ,nekonight-moon-pink)))) - `(font-lock-comment-face ((t (:foreground ,nekonight-moon-brown)))) - `(font-lock-comment-delimiter-face ((t (:foreground ,nekonight-moon-brown)))) - `(font-lock-constant-face ((t (:foreground ,nekonight-moon-cyan)))) - `(font-lock-doc-face ((t (:foreground ,nekonight-moon-green)))) - `(font-lock-doc-string-face ((t (:foreground ,nekonight-moon-green)))) - `(font-lock-function-name-face ((t (:foreground ,nekonight-moon-blue)))) - `(font-lock-keyword-face ((t (:foreground ,nekonight-moon-pink :bold t)))) - `(font-lock-preprocessor-face ((t (:foreground ,nekonight-moon-cyan)))) - `(font-lock-reference-face ((t (:foreground ,nekonight-moon-cyan)))) - `(font-lock-string-face ((t (:foreground ,nekonight-moon-green)))) - `(font-lock-type-face ((t (:foreground ,nekonight-moon-cyan)))) - `(font-lock-variable-name-face ((t (:foreground ,nekonight-moon-fg+1)))) - `(font-lock-warning-face ((t (:foreground ,nekonight-moon-red)))) - - ;; Flymake - `(flymake-errline - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,nekonight-moon-red) - :foreground unspecified - :background unspecified - :inherit unspecified)) - (t (:foreground ,nekonight-moon-red :weight bold :underline t)))) - `(flymake-warnline - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,nekonight-moon-pink) - :foreground unspecified - :background unspecified - :inherit unspecified)) - (t (:forground ,nekonight-moon-pink :weight bold :underline t)))) - `(flymake-infoline - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,nekonight-moon-green) - :foreground unspecified - :background unspecified - :inherit unspecified)) - (t (:forground ,nekonight-moon-green :weight bold :underline t)))) - - ;; Flyspell - `(flyspell-incorrect - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,nekonight-moon-red) :inherit unspecified)) - (t (:foreground ,nekonight-moon-red :weight bold :underline t)))) - `(flyspell-duplicate - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,nekonight-moon-pink) :inherit unspecified)) - (t (:foreground ,nekonight-moon-pink :weight bold :underline t)))) - - ;; Helm - `(helm-candidate-number ((t ,(list :background nekonight-moon-bg+2 - :foreground nekonight-moon-pink - :bold t)))) - `(helm-ff-directory ((t ,(list :foreground nekonight-moon-blue - :background nekonight-moon-bg - :bold t)))) - `(helm-ff-executable ((t (:foreground ,nekonight-moon-green)))) - `(helm-ff-file ((t (:foreground ,nekonight-moon-fg :inherit unspecified)))) - `(helm-ff-invalid-symlink ((t ,(list :foreground nekonight-moon-bg - :background nekonight-moon-red)))) - `(helm-ff-symlink ((t (:foreground ,nekonight-moon-pink :bold t)))) - `(helm-selection-line ((t (:background ,nekonight-moon-bg+1)))) - `(helm-selection ((t (:background ,nekonight-moon-bg+1 :underline nil)))) - `(helm-source-header ((t ,(list :foreground nekonight-moon-pink - :background nekonight-moon-bg - :box (list :line-width -1 - :style 'released-button))))) - - ;; Ido - `(ido-first-match ((t (:foreground ,nekonight-moon-pink :bold nil)))) - `(ido-only-match ((t (:foreground ,nekonight-moon-brown :weight bold)))) - `(ido-subdir ((t (:foreground ,nekonight-moon-blue :weight bold)))) - - ;; Info - `(info-xref ((t (:foreground ,nekonight-moon-blue)))) - `(info-visited ((t (:foreground ,nekonight-moon-wisteria)))) - - ;; Jabber - `(jabber-chat-prompt-foreign ((t ,(list :foreground nekonight-moon-cyan - :bold nil)))) - `(jabber-chat-prompt-local ((t (:foreground ,nekonight-moon-pink)))) - `(jabber-chat-prompt-system ((t (:foreground ,nekonight-moon-green)))) - `(jabber-rare-time-face ((t (:foreground ,nekonight-moon-green)))) - `(jabber-roster-user-online ((t (:foreground ,nekonight-moon-green)))) - `(jabber-activity-face ((t (:foreground ,nekonight-moon-red)))) - `(jabber-activity-personal-face ((t (:foreground ,nekonight-moon-pink :bold t)))) - - ;; Line Highlighting - `(highlight ((t (:background ,nekonight-moon-bg+1 :foreground nil)))) - `(highlight-current-line-face ((t ,(list :background nekonight-moon-bg+1 - :foreground nil)))) - - ;; line numbers - `(line-number ((t (:inherit default :foreground ,nekonight-moon-bg+4)))) - `(line-number-current-line ((t (:inherit line-number :foreground ,nekonight-moon-pink)))) - - ;; Linum - `(linum ((t `(list :foreground nekonight-moon-cyan - :background nekonight-moon-bg)))) - - ;; Magit - `(magit-branch ((t (:foreground ,nekonight-moon-blue)))) - `(magit-diff-hunk-header ((t (:background ,nekonight-moon-bg+2)))) - `(magit-diff-file-header ((t (:background ,nekonight-moon-bg+4)))) - `(magit-log-sha1 ((t (:foreground ,nekonight-moon-red+1)))) - `(magit-log-author ((t (:foreground ,nekonight-moon-brown)))) - `(magit-log-head-label-remote ((t ,(list :foreground nekonight-moon-green - :background nekonight-moon-bg+1)))) - `(magit-log-head-label-local ((t ,(list :foreground nekonight-moon-blue - :background nekonight-moon-bg+1)))) - `(magit-log-head-label-tags ((t ,(list :foreground nekonight-moon-pink - :background nekonight-moon-bg+1)))) - `(magit-log-head-label-head ((t ,(list :foreground nekonight-moon-fg - :background nekonight-moon-bg+1)))) - `(magit-item-highlight ((t (:background ,nekonight-moon-bg+1)))) - `(magit-tag ((t ,(list :foreground nekonight-moon-pink - :background nekonight-moon-bg)))) - `(magit-blame-heading ((t ,(list :background nekonight-moon-bg+1 - :foreground nekonight-moon-fg)))) - - ;; Message - `(message-header-name ((t (:foreground ,nekonight-moon-green)))) - - ;; Mode Line - `(mode-line ((t ,(list :background nekonight-moon-bg+1 - :foreground nekonight-moon-white)))) - `(mode-line-buffer-id ((t ,(list :background nekonight-moon-bg+1 - :foreground nekonight-moon-white)))) - `(mode-line-inactive ((t ,(list :background nekonight-moon-bg+1 - :foreground nekonight-moon-cyan)))) - - ;; Neo Dir - `(neo-dir-link-face ((t (:foreground ,nekonight-moon-blue)))) - - ;; Org Mode - `(org-agenda-structure ((t (:foreground ,nekonight-moon-blue)))) - `(org-column ((t (:background ,nekonight-moon-bg-1)))) - `(org-column-title ((t (:background ,nekonight-moon-bg-1 :underline t :weight bold)))) - `(org-done ((t (:foreground ,nekonight-moon-green)))) - `(org-todo ((t (:foreground ,nekonight-moon-red-1)))) - `(org-upcoming-deadline ((t (:foreground ,nekonight-moon-pink)))) - - ;; Search - `(isearch ((t ,(list :foreground nekonight-moon-black - :background nekonight-moon-fg+2)))) - `(isearch-fail ((t ,(list :foreground nekonight-moon-black - :background nekonight-moon-red)))) - `(isearch-lazy-highlight-face ((t ,(list - :foreground nekonight-moon-fg+1 - :background nekonight-moon-niagara-1)))) - - ;; Sh - `(sh-quoted-exec ((t (:foreground ,nekonight-moon-red+1)))) - - ;; Show Paren - `(show-paren-match-face ((t (:background ,nekonight-moon-bg+4)))) - `(show-paren-mismatch-face ((t (:background ,nekonight-moon-red-1)))) - - ;; Slime - `(slime-repl-inputed-output-face ((t (:foreground ,nekonight-moon-red)))) - - ;; Tuareg - `(tuareg-font-lock-governing-face ((t (:foreground ,nekonight-moon-pink)))) - - ;; Speedbar - `(speedbar-directory-face ((t ,(list :foreground nekonight-moon-blue - :weight 'bold)))) - `(speedbar-file-face ((t (:foreground ,nekonight-moon-fg)))) - `(speedbar-highlight-face ((t (:background ,nekonight-moon-bg+1)))) - `(speedbar-selected-face ((t (:foreground ,nekonight-moon-red)))) - `(speedbar-tag-face ((t (:foreground ,nekonight-moon-pink)))) - - ;; Which Function - `(which-func ((t (:foreground ,nekonight-moon-wisteria)))) - - ;; Whitespace - `(whitespace-space ((t ,(list :background nekonight-moon-bg - :foreground nekonight-moon-bg+1)))) - `(whitespace-tab ((t ,(list :background nekonight-moon-bg - :foreground nekonight-moon-bg+1)))) - `(whitespace-hspace ((t ,(list :background nekonight-moon-bg - :foreground nekonight-moon-bg+2)))) - `(whitespace-line ((t ,(list :background nekonight-moon-bg+2 - :foreground nekonight-moon-red+1)))) - `(whitespace-newline ((t ,(list :background nekonight-moon-bg - :foreground nekonight-moon-bg+2)))) - `(whitespace-trailing ((t ,(list :background nekonight-moon-red - :foreground nekonight-moon-red)))) - `(whitespace-empty ((t ,(list :background nekonight-moon-pink - :foreground nekonight-moon-pink)))) - `(whitespace-indentation ((t ,(list :background nekonight-moon-pink - :foreground nekonight-moon-red)))) - `(whitespace-space-after-tab ((t ,(list :background nekonight-moon-pink - :foreground nekonight-moon-pink)))) - `(whitespace-space-before-tab ((t ,(list :background nekonight-moon-brown - :foreground nekonight-moon-brown)))) - - ;; tab-bar - `(tab-bar ((t (:background ,nekonight-moon-bg+1 :foreground ,nekonight-moon-bg+4)))) - `(tab-bar-tab ((t (:background nil :foreground ,nekonight-moon-pink :weight bold)))) - `(tab-bar-tab-inactive ((t (:background nil)))) - - ;; vterm / ansi-term - `(term-color-black ((t (:foreground ,nekonight-moon-bg+3 :background ,nekonight-moon-bg+4)))) - `(term-color-red ((t (:foreground ,nekonight-moon-red-1 :background ,nekonight-moon-red-1)))) - `(term-color-green ((t (:foreground ,nekonight-moon-green :background ,nekonight-moon-green)))) - `(term-color-blue ((t (:foreground ,nekonight-moon-blue :background ,nekonight-moon-blue)))) - `(term-color-pink ((t (:foreground ,nekonight-moon-pink :background ,nekonight-moon-pink)))) - `(term-color-magenta ((t (:foreground ,nekonight-moon-wisteria :background ,nekonight-moon-wisteria)))) - `(term-color-cyan ((t (:foreground ,nekonight-moon-cyan :background ,nekonight-moon-cyan)))) - `(term-color-white ((t (:foreground ,nekonight-moon-fg :background ,nekonight-moon-white)))) - - ;; company-mode - `(company-tooltip ((t (:foreground ,nekonight-moon-fg :background ,nekonight-moon-bg+1)))) - `(company-tooltip-annotation ((t (:foreground ,nekonight-moon-brown :background ,nekonight-moon-bg+1)))) - `(company-tooltip-annotation-selection ((t (:foreground ,nekonight-moon-brown :background ,nekonight-moon-bg-1)))) - `(company-tooltip-selection ((t (:foreground ,nekonight-moon-fg :background ,nekonight-moon-bg-1)))) - `(company-tooltip-mouse ((t (:background ,nekonight-moon-bg-1)))) - `(company-tooltip-common ((t (:foreground ,nekonight-moon-green)))) - `(company-tooltip-common-selection ((t (:foreground ,nekonight-moon-green)))) - `(company-scrollbar-fg ((t (:background ,nekonight-moon-bg-1)))) - `(company-scrollbar-bg ((t (:background ,nekonight-moon-bg+2)))) - `(company-preview ((t (:background ,nekonight-moon-green)))) - `(company-preview-common ((t (:foreground ,nekonight-moon-green :background ,nekonight-moon-bg-1)))) - - ;; Proof General - `(proof-locked-face ((t (:background ,nekonight-moon-purple)))) - - ;; Orderless - `(orderless-match-face-0 ((t (:foreground ,nekonight-moon-pink)))) - `(orderless-match-face-1 ((t (:foreground ,nekonight-moon-green)))) - `(orderless-match-face-2 ((t (:foreground ,nekonight-moon-brown)))) - `(orderless-match-face-3 ((t (:foreground ,nekonight-moon-cyan)))) - )) - -;;;###autoload -(when load-file-name - (add-to-list 'custom-theme-load-path - (file-name-as-directory (file-name-directory load-file-name)))) - -(provide-theme 'nekonight-moon) - -;; Local Variables: -;; no-byte-compile: t -;; indent-tabs-mode: nil -;; eval: (when (fboundp 'rainbow-mode) (rainbow-mode +1)) -;; End: - -;;; nekonight-moon-theme.el ends here. diff --git a/extras/sublime/tokyonight_day.tmTheme b/extras/sublime/tokyonight_day.tmTheme deleted file mode 100644 index b5917ee..0000000 --- a/extras/sublime/tokyonight_day.tmTheme +++ /dev/null @@ -1,1377 +0,0 @@ - - - - author - Folke Lemaitre (http://github.com/folke) - colorSpaceName - sRGB - name - NekoNight - semanticClass - enki.theme.neko - settings - - - settings - - activeGuide - #363b54 - background - #e1e2e7 - caret - #DBC08A - findHighlight - #ffa300 - findHighlightForeground - #000000 - foreground - #3760bf - guide - #4f4f5e40 - gutterForeground - #3b415caa - inactiveSelection - #282833 - invisibles - #4f4f5e - lineHighlight - #00000030 - selection - #9D599D40 - selectionBorder - #9D599D - shadow - #00000010 - stackGuide - #4f4f5e60 - tagsOptions - underline - - - - name - Italics - Comments, Storage, Keyword Flow, Vue attributes, Decorators - scope - comment, meta.var.expr storage.type, keyword.control.flow, meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html, tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js, storage.modifier - settings - - fontStyle - italic - - - - name - Comment - scope - comment, comment.block.documentation, punctuation.definition.comment - settings - - foreground - #848cb5 - - - - name - Comment Doc - scope - comment.block.documentation variable, comment.block.documentation storage, comment.block.documentation punctuation, comment.block.documentation keyword, comment.block.documentation support, comment.block.documentation markup, comment.block.documentation markup.inline.raw.string.markdown, keyword.other.phpdoc.php - settings - - foreground - #848cb5 - - - - name - Number, Boolean, Undefined, Null - scope - variable.other.constant, punctuation.definition.constant, constant.language, constant.numeric, support.constant - settings - - foreground - #b15c00 - - - - name - String, Symbols, Markup Heading - scope - meta.property.lua,string.unquoted.key.lua,support.other.metaproperty.lua,support.other.metaproperty.lua,constant.other.symbol, constant.other.key, markup.heading, meta.attribute-selector - settings - - fontStyle - - foreground - #387068 - - - - name - String - scope - string - settings - - fontStyle - - foreground - #587539 - - - - name - Colors - scope - constant.other.color, constant.other.color.rgb-value.hex punctuation.definition.constant - settings - - foreground - #9aa5ce - - - - name - Info - scope - markup.info - settings - - foreground - #07879d - background - #cbd9e0 - - - - name - Warning - scope - markup.warning - settings - - foreground - #8c6c3e - background - #d9d6d6 - - - - name - Error - scope - markup.error - settings - - foreground - #c64343 - background - #ded2d7 - - - - name - Invalid - scope - invalid, invalid.illegal - settings - - foreground - #f52a65 - - - - name - Invalid deprecated - scope - invalid.deprecated - settings - - foreground - #9854f1 - - - - name - Storage Type - scope - storage.type - settings - - foreground - #9854f1 - - - - name - Storage - modifier, var, const, let - scope - meta.var.expr storage.type, storage.modifier - settings - - foreground - #7847bd - - - - name - Interpolation - scope - punctuation.definition.template-expression, punctuation.section.embedded - settings - - foreground - #007197 - - - - name - Spread - scope - keyword.operator.spread, keyword.operator.rest - settings - - fontStyle - bold - foreground - #f52a65 - - - - name - Operator, Misc - scope - keyword.operator, keyword.control.as, keyword.other, keyword.operator.bitwise.shift, punctuation, punctuation.definition.constant.markdown, punctuation.definition.string, punctuation.support.type.property-name, text.html.vue-html meta.tag, punctuation.definition.keyword, punctuation.terminator.rule, punctuation.definition.entity, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, keyword.other.template, keyword.other.substitution, entity.name.operator, text.html.vue meta.tag.block.any.html, text.html.vue meta.tag.inline.any.html, text.html.vue meta.tag.other.html, text.html.twig meta.tag.inline.any.html, text.html.twig meta.tag.block.any.html, text.html.twig meta.tag.structure.any.html, text.html.twig meta.tag.any.html - settings - - foreground - #006a83 - - - - name - Import, Export, From, Default - scope - keyword.control.import, keyword.control.export, keyword.control.from, keyword.control.default, meta.import keyword.other - settings - - foreground - #007197 - - - - name - Keyword - scope - keyword, keyword.control, keyword.other.important - settings - - foreground - #9854f1 - - - - name - Keyword SQL - scope - keyword.other.DML - settings - - foreground - #007197 - - - - name - Keyword Operator Logical, Arrow, Ternary, Comparison - scope - keyword.operator.logical, storage.type.function, keyword.operator.bitwise, keyword.operator.ternary, keyword.operator.comparison, keyword.operator.relational, keyword.operator.or.regexp - settings - - foreground - #9854f1 - - - - name - Tag - scope - entity.name.tag, entity.name.tag support.class.component, meta.tag - settings - - foreground - #f52a65 - - - - name - Tag Punctuation - scope - punctuation.definition.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html - settings - - foreground - #ba3c97 - - - - name - Blade - scope - keyword.blade, entity.name.function.blade - settings - - foreground - #2e7de9 - - - - name - PHP - Embedded Tag - scope - punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php - settings - - foreground - #07879d - - - - name - Smarty - Twig tag - Blade - scope - punctuation.definition.variable.smarty, punctuation.section.embedded.begin.smarty, punctuation.section.embedded.end.smarty, meta.tag.template.value.twig, punctuation.section.tag.twig, meta.tag.expression.twig, punctuation.definition.tag.expression.twig, punctuation.definition.tag.output.twig, variable.parameter.smarty - settings - - foreground - #7DCFFF - - - - name - Smarty - Twig variable - function - scope - variable.other.property.twig, support.function.twig, meta.function-call.twig, keyword.control.twig, keyword.control.smarty, keyword.operator.other.twig, keyword.operator.comparison.twig, support.function.functions.twig, support.function.functions.twig, keyword.operator.assignment.twig, support.function.filters.twig, support.function.built-in.smarty, keyword.operator.smarty, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php entity.name.tag.block.any.html, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php constant.other.inline-data.html, text.blade text.html.blade custom.compiler.blade.php support.function constant.other.inline-data.html - settings - - foreground - #188092 - - - - name - Globals - PHP Constants etc - scope - constant.other.php, variable.other.global.safer, variable.other.global.safer punctuation.definition.variable, variable.other.global, variable.other.global punctuation.definition.variable, constant.other - settings - - foreground - #8c6c3e - - - - name - Variables - scope - variable, support.variable, string constant.other.placeholder - settings - - foreground - #3760bf - - - - name - Object Variable - scope - variable.other.object, support.module.node - settings - - foreground - #3760bf - - - - name - Object Key - scope - meta.object-literal.key, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js, string.alias.graphql, string.unquoted.graphql, string.unquoted.alias.graphql, meta.field.declaration.ts variable.object.property - settings - - foreground - #387068 - - - - name - Object Property - scope - variable.other.property, support.variable.property, support.variable.property.dom, meta.function-call variable.other.object.property, variable.language.prototype, meta.property.object, variable.other.member - settings - - foreground - #007197 - - - - name - Object Property - scope - variable.other.object.property - settings - - foreground - #3760bf - - - - name - Object Literal Member lvl 3 (Vue Prop Validation) - scope - meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.object-literal.key - settings - - foreground - #38919f - - - - name - C-related Block Level Variables - scope - source.cpp meta.block variable.other - settings - - foreground - #f52a65 - - - - name - Other Variable - scope - support.other.variable - settings - - foreground - #f52a65 - - - - name - Methods - scope - meta.class-method.js entity.name.function.js, entity.name.method.js, variable.function.constructor, keyword.other.special-method, storage.type.cs - settings - - foreground - #2e7de9 - - - - name - Function Definition - scope - entity.name.function, meta.function-call, meta.function-call entity.name.function, variable.function, meta.definition.method entity.name.function, meta.object-literal entity.name.function - settings - - foreground - #2e7de9 - - - - name - Function Argument - scope - variable.parameter.function.language.special, variable.parameter, meta.function.parameters punctuation.definition.variable, meta.function.parameter variable - settings - - foreground - #8c6c3e - - - - name - Constant, Tag Attribute - scope - keyword.other.type.php, storage.type.php, constant.character, constant.escape, keyword.other.unit - settings - - foreground - #9854f1 - - - - name - Variable Definition - scope - meta.definition.variable variable.other.constant, meta.definition.variable variable.other.readwrite, variable.other.declaration - settings - - foreground - #9854f1 - - - - name - Inherited Class - scope - entity.other.inherited-class - settings - - fontStyle - - foreground - #9854f1 - - - - name - Class, Support, DOM, etc - scope - support.class, support.type, variable.other.readwrite.alias, support.orther.namespace.use.php, meta.use.php, support.other.namespace.php, support.type.sys-types, support.variable.dom, support.constant.math, support.type.object.module, support.constant.json, entity.name.namespace, meta.import.qualifier, entity.name.class - settings - - foreground - #07879d - - - - name - Class Name - scope - entity.name - settings - - foreground - #3760bf - - - - name - Support Function - scope - support.function - settings - - foreground - #188092 - - - - name - CSS Class and Support - scope - source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name, support.type.property-name.css, support.type.vendored.property-name, support.type.map.key - settings - - foreground - #2e7de9 - - - - name - CSS Font - scope - support.constant.font-name, meta.definition.variable - settings - - foreground - #587539 - - - - name - CSS Class - scope - entity.other.attribute-name.class, meta.at-rule.mixin.scss entity.name.function.scss - settings - - foreground - #587539 - - - - name - CSS ID - scope - entity.other.attribute-name.id - settings - - foreground - #fc7b7b - - - - name - CSS Tag - scope - entity.name.tag.css, entity.name.tag.reference, entity.name.tag.scss - settings - - foreground - #07879d - - - - name - CSS Tag Reference - scope - entity.name.tag.reference - settings - - foreground - #8c6c3e - - - - name - CSS Property Separator - scope - meta.property-list punctuation.separator.key-value - settings - - foreground - #9abdf5 - - - - name - CSS Punctuation - scope - meta.property-list, punctuation.definition.entity.css - settings - - foreground - #8c6c3e - - - - name - SCSS @ - scope - meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.include entity.name.function.scss, meta.at-rule.include keyword.control.at-rule.include - settings - - foreground - #9854f1 - - - - name - SCSS Mixins, Extends, Include Keyword - scope - keyword.control.at-rule.include punctuation.definition.keyword, keyword.control.at-rule.mixin punctuation.definition.keyword, meta.at-rule.include keyword.control.at-rule.include, keyword.control.at-rule.extend punctuation.definition.keyword, meta.at-rule.extend keyword.control.at-rule.extend, entity.other.attribute-name.placeholder.css punctuation.definition.entity.css, meta.at-rule.media keyword.control.at-rule.media, meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.function keyword.control.at-rule.function, keyword.control punctuation.definition.keyword, meta.at-rule.import.scss entity.other.attribute-name.placeholder.scss punctuation.definition.entity.scss, meta.at-rule.import.scss keyword.control.at-rule.import.scss - settings - - foreground - #7847bd - - - - name - SCSS Include Mixin Argument - scope - meta.property-list meta.at-rule.include - settings - - foreground - #3760bf - - - - name - CSS value - scope - support.constant.property-value - settings - - foreground - #b15c00 - - - - name - Sub-methods - scope - entity.name.module.js, variable.import.parameter.js, variable.other.class.js - settings - - foreground - #3760bf - - - - name - Language methods - scope - variable.language - settings - - foreground - #f52a65 - - - - name - Variable punctuation - scope - variable.other punctuation.definition.variable - settings - - foreground - #3760bf - - - - name - Keyword this with Punctuation, ES7 Bind Operator - scope - source.js constant.other.object.key.js string.unquoted.label.js, variable.language.this punctuation.definition.variable, keyword.other.this - settings - - foreground - #f52a65 - - - - name - HTML Attributes - scope - entity.other.attribute-name, text.html.basic entity.other.attribute-name.html, text.html.basic entity.other.attribute-name, text.blade entity.other.attribute-name.class, text.html.smarty entity.other.attribute-name.class - settings - - foreground - #9854f1 - - - - name - Vue Template attributes - scope - meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html - settings - - foreground - #9854f1 - - - - name - Vue Template attribute separator - scope - meta.directive.vue punctuation.separator.key-value.html - settings - - foreground - #006a83 - - - - name - CSS IDs - scope - source.sass keyword.control - settings - - foreground - #2e7de9 - - - - name - CSS pseudo selectors - scope - entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.placeholder, meta.property-list meta.property-value - settings - - foreground - #9854f1 - - - - name - Inserted - scope - markup.inserted - settings - - foreground - #4197a4 - - - - name - Deleted - scope - markup.deleted - settings - - foreground - #c47981 - - - - name - Changed - scope - markup.changed - settings - - foreground - #506d9c - - - - name - Regular Expressions - scope - string.regexp - settings - - foreground - #2e5857 - - - - name - Regular Expressions - Punctuation - scope - punctuation.definition.group - settings - - foreground - #f52a65 - - - - name - Regular Expressions - Character Class - scope - constant.other.character-class.regexp - settings - - foreground - #9854f1 - - - - name - Regular Expressions - Character Class Set - scope - constant.other.character-class.set.regexp, punctuation.definition.character-class.regexp - settings - - foreground - #8c6c3e - - - - name - Regular Expressions - Quantifier - scope - keyword.operator.quantifier.regexp - settings - - foreground - #006a83 - - - - name - Regular Expressions - Backslash - scope - constant.character.escape.backslash - settings - - foreground - #3760bf - - - - name - Escape Characters - scope - constant.character.escape - settings - - foreground - #006a83 - - - - name - Decorators - scope - tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js - settings - - foreground - #2e7de9 - - - - name - CSS Units - scope - keyword.other.unit - settings - - foreground - #f52a65 - - - - name - JSON Key - Level 0 - scope - source.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #2e7de9 - - - - name - JSON Key - Level 1 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #07879d - - - - name - JSON Key - Level 2 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #007197 - - - - name - JSON Key - Level 3 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #9854f1 - - - - name - JSON Key - Level 4 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #8c6c3e - - - - name - JSON Key - Level 5 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #07879d - - - - name - JSON Key - Level 6 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #387068 - - - - name - JSON Key - Level 7 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json - settings - - foreground - #f52a65 - - - - name - JSON Key - Level 8 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json punctuation.definition.string.end.json - settings - - foreground - #587539 - - - - name - JSON Key - value - scope - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json - settings - - foreground - #587539 - - - - name - Plain Punctuation - scope - punctuation.definition.list_item.markdown - settings - - foreground - #9abdf5 - - - - name - Block Punctuation - scope - meta.block, meta.brace, punctuation.definition.block, punctuation.definition.use, punctuation.definition.group.shell, punctuation.definition.class, punctuation.definition.begin.bracket, punctuation.definition.end.bracket, punctuation.definition.parameters, punctuation.definition.arguments, punctuation.definition.dictionary, punctuation.definition.array, punctuation.section - settings - - foreground - #9abdf5 - - - - name - Markdown - Plain - scope - meta.jsx.children, meta.embedded.block - settings - - foreground - #3760bf - - - - name - HTML text - scope - text.html - settings - - foreground - #9aa5ce - - - - name - Markdown - Markup Raw Inline - scope - text.html.markdown markup.inline.raw.markdown - settings - - foreground - #9854f1 - - - - name - Markdown - Markup Raw Inline Punctuation - scope - text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown - settings - - foreground - #4E5579 - - - - name - Markdown - Heading 1 - scope - heading.1.markdown entity.name, heading.1.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #006a83 - - - - name - Markdown - Heading 2 - scope - heading.2.markdown entity.name, heading.2.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #61bdf2 - - - - name - Markdown - Heading 3 - scope - heading.3.markdown entity.name, heading.3.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #2e7de9 - - - - name - Markdown - Heading 4 - scope - heading.4.markdown entity.name, heading.4.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #6d91de - - - - name - Markdown - Heading 5 - scope - heading.5.markdown entity.name, heading.5.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #9aa5ce - - - - name - Markdown - Heading 6 - scope - heading.6.markdown entity.name, heading.6.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #747ca1 - - - - name - Markup - Italic - scope - markup.italic, markup.italic punctuation - settings - - fontStyle - italic - foreground - #3760bf - - - - name - Markup - Bold - scope - markup.bold, markup.bold punctuation - settings - - fontStyle - bold - foreground - #3760bf - - - - name - Markup - Bold-Italic - scope - markup.bold markup.italic, markup.bold markup.italic punctuation - settings - - fontStyle - bold italic - foreground - #3760bf - - - - name - Markup - Underline - scope - markup.underline, markup.underline punctuation - settings - - fontStyle - underline - - - - name - Markdown - Blockquote - scope - markup.quote punctuation.definition.blockquote.markdown - settings - - foreground - #4e5579 - - - - name - Markup - Quote - scope - markup.quote - settings - - fontStyle - italic - - - - name - Markdown - Link - scope - string.other.link, markup.underline.link, constant.other.reference.link.markdown, string.other.link.description.title.markdown - settings - - foreground - #387068 - - - - name - Markdown - Fenced Code Block - scope - markup.fenced_code.block.markdown, markup.inline.raw.string.markdown, variable.language.fenced.markdown - settings - - foreground - #006a83 - - - - name - Markdown - Separator - scope - meta.separator - settings - - fontStyle - bold - foreground - #444b6a - - - - name - Markup - Table - scope - markup.table - settings - - foreground - #c0cefc - - - - name - Token - Info - scope - token.info-token - settings - - foreground - #07879d - - - - name - Token - Warn - scope - token.warn-token - settings - - foreground - #ffdb69 - - - - name - Token - Error - scope - token.error-token - settings - - foreground - #c64343 - - - - name - Token - Debug - scope - token.debug-token - settings - - foreground - #b267e6 - - - - name - Apache Tag - scope - entity.tag.apacheconf - settings - - foreground - #f52a65 - - - - name - Preprocessor - scope - meta.preprocessor - settings - - foreground - #387068 - - - - name - ENV value - scope - source.env - settings - - foreground - #2e7de9 - - - - uuid - 06f855e3-9fb7-4fb1-b790-aef06065f34e - - - diff --git a/extras/sublime/tokyonight_moon.tmTheme b/extras/sublime/tokyonight_moon.tmTheme deleted file mode 100644 index 068d8d3..0000000 --- a/extras/sublime/tokyonight_moon.tmTheme +++ /dev/null @@ -1,1377 +0,0 @@ - - - - author - Folke Lemaitre (http://github.com/folke) - colorSpaceName - sRGB - name - NekoNight - semanticClass - enki.theme.neko - settings - - - settings - - activeGuide - #363b54 - background - #222436 - caret - #DBC08A - findHighlight - #ffa300 - findHighlightForeground - #000000 - foreground - #c8d3f5 - guide - #4f4f5e40 - gutterForeground - #3b415caa - inactiveSelection - #282833 - invisibles - #4f4f5e - lineHighlight - #00000030 - selection - #9D599D40 - selectionBorder - #9D599D - shadow - #00000010 - stackGuide - #4f4f5e60 - tagsOptions - underline - - - - name - Italics - Comments, Storage, Keyword Flow, Vue attributes, Decorators - scope - comment, meta.var.expr storage.type, keyword.control.flow, meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html, tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js, storage.modifier - settings - - fontStyle - italic - - - - name - Comment - scope - comment, comment.block.documentation, punctuation.definition.comment - settings - - foreground - #636da6 - - - - name - Comment Doc - scope - comment.block.documentation variable, comment.block.documentation storage, comment.block.documentation punctuation, comment.block.documentation keyword, comment.block.documentation support, comment.block.documentation markup, comment.block.documentation markup.inline.raw.string.markdown, keyword.other.phpdoc.php - settings - - foreground - #636da6 - - - - name - Number, Boolean, Undefined, Null - scope - variable.other.constant, punctuation.definition.constant, constant.language, constant.numeric, support.constant - settings - - foreground - #ff966c - - - - name - String, Symbols, Markup Heading - scope - meta.property.lua,string.unquoted.key.lua,support.other.metaproperty.lua,support.other.metaproperty.lua,constant.other.symbol, constant.other.key, markup.heading, meta.attribute-selector - settings - - fontStyle - - foreground - #4fd6be - - - - name - String - scope - string - settings - - fontStyle - - foreground - #c3e88d - - - - name - Colors - scope - constant.other.color, constant.other.color.rgb-value.hex punctuation.definition.constant - settings - - foreground - #9aa5ce - - - - name - Info - scope - markup.info - settings - - foreground - #0db9d7 - background - #203346 - - - - name - Warning - scope - markup.warning - settings - - foreground - #ffc777 - background - #38343d - - - - name - Error - scope - markup.error - settings - - foreground - #c53b53 - background - #322639 - - - - name - Invalid - scope - invalid, invalid.illegal - settings - - foreground - #ff757f - - - - name - Invalid deprecated - scope - invalid.deprecated - settings - - foreground - #c099ff - - - - name - Storage Type - scope - storage.type - settings - - foreground - #c099ff - - - - name - Storage - modifier, var, const, let - scope - meta.var.expr storage.type, storage.modifier - settings - - foreground - #fca7ea - - - - name - Interpolation - scope - punctuation.definition.template-expression, punctuation.section.embedded - settings - - foreground - #86e1fc - - - - name - Spread - scope - keyword.operator.spread, keyword.operator.rest - settings - - fontStyle - bold - foreground - #ff757f - - - - name - Operator, Misc - scope - keyword.operator, keyword.control.as, keyword.other, keyword.operator.bitwise.shift, punctuation, punctuation.definition.constant.markdown, punctuation.definition.string, punctuation.support.type.property-name, text.html.vue-html meta.tag, punctuation.definition.keyword, punctuation.terminator.rule, punctuation.definition.entity, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, keyword.other.template, keyword.other.substitution, entity.name.operator, text.html.vue meta.tag.block.any.html, text.html.vue meta.tag.inline.any.html, text.html.vue meta.tag.other.html, text.html.twig meta.tag.inline.any.html, text.html.twig meta.tag.block.any.html, text.html.twig meta.tag.structure.any.html, text.html.twig meta.tag.any.html - settings - - foreground - #89ddff - - - - name - Import, Export, From, Default - scope - keyword.control.import, keyword.control.export, keyword.control.from, keyword.control.default, meta.import keyword.other - settings - - foreground - #86e1fc - - - - name - Keyword - scope - keyword, keyword.control, keyword.other.important - settings - - foreground - #c099ff - - - - name - Keyword SQL - scope - keyword.other.DML - settings - - foreground - #86e1fc - - - - name - Keyword Operator Logical, Arrow, Ternary, Comparison - scope - keyword.operator.logical, storage.type.function, keyword.operator.bitwise, keyword.operator.ternary, keyword.operator.comparison, keyword.operator.relational, keyword.operator.or.regexp - settings - - foreground - #c099ff - - - - name - Tag - scope - entity.name.tag, entity.name.tag support.class.component, meta.tag - settings - - foreground - #ff757f - - - - name - Tag Punctuation - scope - punctuation.definition.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html - settings - - foreground - #ba3c97 - - - - name - Blade - scope - keyword.blade, entity.name.function.blade - settings - - foreground - #82aaff - - - - name - PHP - Embedded Tag - scope - punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php - settings - - foreground - #0db9d7 - - - - name - Smarty - Twig tag - Blade - scope - punctuation.definition.variable.smarty, punctuation.section.embedded.begin.smarty, punctuation.section.embedded.end.smarty, meta.tag.template.value.twig, punctuation.section.tag.twig, meta.tag.expression.twig, punctuation.definition.tag.expression.twig, punctuation.definition.tag.output.twig, variable.parameter.smarty - settings - - foreground - #7DCFFF - - - - name - Smarty - Twig variable - function - scope - variable.other.property.twig, support.function.twig, meta.function-call.twig, keyword.control.twig, keyword.control.smarty, keyword.operator.other.twig, keyword.operator.comparison.twig, support.function.functions.twig, support.function.functions.twig, keyword.operator.assignment.twig, support.function.filters.twig, support.function.built-in.smarty, keyword.operator.smarty, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php entity.name.tag.block.any.html, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php constant.other.inline-data.html, text.blade text.html.blade custom.compiler.blade.php support.function constant.other.inline-data.html - settings - - foreground - #65bcff - - - - name - Globals - PHP Constants etc - scope - constant.other.php, variable.other.global.safer, variable.other.global.safer punctuation.definition.variable, variable.other.global, variable.other.global punctuation.definition.variable, constant.other - settings - - foreground - #ffc777 - - - - name - Variables - scope - variable, support.variable, string constant.other.placeholder - settings - - foreground - #c8d3f5 - - - - name - Object Variable - scope - variable.other.object, support.module.node - settings - - foreground - #c8d3f5 - - - - name - Object Key - scope - meta.object-literal.key, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js, string.alias.graphql, string.unquoted.graphql, string.unquoted.alias.graphql, meta.field.declaration.ts variable.object.property - settings - - foreground - #4fd6be - - - - name - Object Property - scope - variable.other.property, support.variable.property, support.variable.property.dom, meta.function-call variable.other.object.property, variable.language.prototype, meta.property.object, variable.other.member - settings - - foreground - #86e1fc - - - - name - Object Property - scope - variable.other.object.property - settings - - foreground - #c8d3f5 - - - - name - Object Literal Member lvl 3 (Vue Prop Validation) - scope - meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.object-literal.key - settings - - foreground - #41a6b5 - - - - name - C-related Block Level Variables - scope - source.cpp meta.block variable.other - settings - - foreground - #ff757f - - - - name - Other Variable - scope - support.other.variable - settings - - foreground - #ff757f - - - - name - Methods - scope - meta.class-method.js entity.name.function.js, entity.name.method.js, variable.function.constructor, keyword.other.special-method, storage.type.cs - settings - - foreground - #82aaff - - - - name - Function Definition - scope - entity.name.function, meta.function-call, meta.function-call entity.name.function, variable.function, meta.definition.method entity.name.function, meta.object-literal entity.name.function - settings - - foreground - #82aaff - - - - name - Function Argument - scope - variable.parameter.function.language.special, variable.parameter, meta.function.parameters punctuation.definition.variable, meta.function.parameter variable - settings - - foreground - #ffc777 - - - - name - Constant, Tag Attribute - scope - keyword.other.type.php, storage.type.php, constant.character, constant.escape, keyword.other.unit - settings - - foreground - #c099ff - - - - name - Variable Definition - scope - meta.definition.variable variable.other.constant, meta.definition.variable variable.other.readwrite, variable.other.declaration - settings - - foreground - #c099ff - - - - name - Inherited Class - scope - entity.other.inherited-class - settings - - fontStyle - - foreground - #c099ff - - - - name - Class, Support, DOM, etc - scope - support.class, support.type, variable.other.readwrite.alias, support.orther.namespace.use.php, meta.use.php, support.other.namespace.php, support.type.sys-types, support.variable.dom, support.constant.math, support.type.object.module, support.constant.json, entity.name.namespace, meta.import.qualifier, entity.name.class - settings - - foreground - #0db9d7 - - - - name - Class Name - scope - entity.name - settings - - foreground - #c8d3f5 - - - - name - Support Function - scope - support.function - settings - - foreground - #65bcff - - - - name - CSS Class and Support - scope - source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name, support.type.property-name.css, support.type.vendored.property-name, support.type.map.key - settings - - foreground - #82aaff - - - - name - CSS Font - scope - support.constant.font-name, meta.definition.variable - settings - - foreground - #c3e88d - - - - name - CSS Class - scope - entity.other.attribute-name.class, meta.at-rule.mixin.scss entity.name.function.scss - settings - - foreground - #c3e88d - - - - name - CSS ID - scope - entity.other.attribute-name.id - settings - - foreground - #fc7b7b - - - - name - CSS Tag - scope - entity.name.tag.css, entity.name.tag.reference, entity.name.tag.scss - settings - - foreground - #0db9d7 - - - - name - CSS Tag Reference - scope - entity.name.tag.reference - settings - - foreground - #ffc777 - - - - name - CSS Property Separator - scope - meta.property-list punctuation.separator.key-value - settings - - foreground - #9abdf5 - - - - name - CSS Punctuation - scope - meta.property-list, punctuation.definition.entity.css - settings - - foreground - #ffc777 - - - - name - SCSS @ - scope - meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.include entity.name.function.scss, meta.at-rule.include keyword.control.at-rule.include - settings - - foreground - #c099ff - - - - name - SCSS Mixins, Extends, Include Keyword - scope - keyword.control.at-rule.include punctuation.definition.keyword, keyword.control.at-rule.mixin punctuation.definition.keyword, meta.at-rule.include keyword.control.at-rule.include, keyword.control.at-rule.extend punctuation.definition.keyword, meta.at-rule.extend keyword.control.at-rule.extend, entity.other.attribute-name.placeholder.css punctuation.definition.entity.css, meta.at-rule.media keyword.control.at-rule.media, meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.function keyword.control.at-rule.function, keyword.control punctuation.definition.keyword, meta.at-rule.import.scss entity.other.attribute-name.placeholder.scss punctuation.definition.entity.scss, meta.at-rule.import.scss keyword.control.at-rule.import.scss - settings - - foreground - #fca7ea - - - - name - SCSS Include Mixin Argument - scope - meta.property-list meta.at-rule.include - settings - - foreground - #c8d3f5 - - - - name - CSS value - scope - support.constant.property-value - settings - - foreground - #ff966c - - - - name - Sub-methods - scope - entity.name.module.js, variable.import.parameter.js, variable.other.class.js - settings - - foreground - #c8d3f5 - - - - name - Language methods - scope - variable.language - settings - - foreground - #ff757f - - - - name - Variable punctuation - scope - variable.other punctuation.definition.variable - settings - - foreground - #c8d3f5 - - - - name - Keyword this with Punctuation, ES7 Bind Operator - scope - source.js constant.other.object.key.js string.unquoted.label.js, variable.language.this punctuation.definition.variable, keyword.other.this - settings - - foreground - #ff757f - - - - name - HTML Attributes - scope - entity.other.attribute-name, text.html.basic entity.other.attribute-name.html, text.html.basic entity.other.attribute-name, text.blade entity.other.attribute-name.class, text.html.smarty entity.other.attribute-name.class - settings - - foreground - #c099ff - - - - name - Vue Template attributes - scope - meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html - settings - - foreground - #c099ff - - - - name - Vue Template attribute separator - scope - meta.directive.vue punctuation.separator.key-value.html - settings - - foreground - #89ddff - - - - name - CSS IDs - scope - source.sass keyword.control - settings - - foreground - #82aaff - - - - name - CSS pseudo selectors - scope - entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.placeholder, meta.property-list meta.property-value - settings - - foreground - #c099ff - - - - name - Inserted - scope - markup.inserted - settings - - foreground - #b8db87 - - - - name - Deleted - scope - markup.deleted - settings - - foreground - #e26a75 - - - - name - Changed - scope - markup.changed - settings - - foreground - #7ca1f2 - - - - name - Regular Expressions - scope - string.regexp - settings - - foreground - #b4f9f8 - - - - name - Regular Expressions - Punctuation - scope - punctuation.definition.group - settings - - foreground - #ff757f - - - - name - Regular Expressions - Character Class - scope - constant.other.character-class.regexp - settings - - foreground - #c099ff - - - - name - Regular Expressions - Character Class Set - scope - constant.other.character-class.set.regexp, punctuation.definition.character-class.regexp - settings - - foreground - #ffc777 - - - - name - Regular Expressions - Quantifier - scope - keyword.operator.quantifier.regexp - settings - - foreground - #89ddff - - - - name - Regular Expressions - Backslash - scope - constant.character.escape.backslash - settings - - foreground - #c8d3f5 - - - - name - Escape Characters - scope - constant.character.escape - settings - - foreground - #89ddff - - - - name - Decorators - scope - tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js - settings - - foreground - #82aaff - - - - name - CSS Units - scope - keyword.other.unit - settings - - foreground - #ff757f - - - - name - JSON Key - Level 0 - scope - source.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #82aaff - - - - name - JSON Key - Level 1 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 2 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #86e1fc - - - - name - JSON Key - Level 3 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #c099ff - - - - name - JSON Key - Level 4 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #ffc777 - - - - name - JSON Key - Level 5 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 6 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #4fd6be - - - - name - JSON Key - Level 7 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json - settings - - foreground - #ff757f - - - - name - JSON Key - Level 8 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json punctuation.definition.string.end.json - settings - - foreground - #c3e88d - - - - name - JSON Key - value - scope - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json - settings - - foreground - #c3e88d - - - - name - Plain Punctuation - scope - punctuation.definition.list_item.markdown - settings - - foreground - #9abdf5 - - - - name - Block Punctuation - scope - meta.block, meta.brace, punctuation.definition.block, punctuation.definition.use, punctuation.definition.group.shell, punctuation.definition.class, punctuation.definition.begin.bracket, punctuation.definition.end.bracket, punctuation.definition.parameters, punctuation.definition.arguments, punctuation.definition.dictionary, punctuation.definition.array, punctuation.section - settings - - foreground - #9abdf5 - - - - name - Markdown - Plain - scope - meta.jsx.children, meta.embedded.block - settings - - foreground - #c8d3f5 - - - - name - HTML text - scope - text.html - settings - - foreground - #9aa5ce - - - - name - Markdown - Markup Raw Inline - scope - text.html.markdown markup.inline.raw.markdown - settings - - foreground - #c099ff - - - - name - Markdown - Markup Raw Inline Punctuation - scope - text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown - settings - - foreground - #4E5579 - - - - name - Markdown - Heading 1 - scope - heading.1.markdown entity.name, heading.1.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #89ddff - - - - name - Markdown - Heading 2 - scope - heading.2.markdown entity.name, heading.2.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #61bdf2 - - - - name - Markdown - Heading 3 - scope - heading.3.markdown entity.name, heading.3.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #82aaff - - - - name - Markdown - Heading 4 - scope - heading.4.markdown entity.name, heading.4.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #6d91de - - - - name - Markdown - Heading 5 - scope - heading.5.markdown entity.name, heading.5.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #9aa5ce - - - - name - Markdown - Heading 6 - scope - heading.6.markdown entity.name, heading.6.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #747ca1 - - - - name - Markup - Italic - scope - markup.italic, markup.italic punctuation - settings - - fontStyle - italic - foreground - #c8d3f5 - - - - name - Markup - Bold - scope - markup.bold, markup.bold punctuation - settings - - fontStyle - bold - foreground - #c8d3f5 - - - - name - Markup - Bold-Italic - scope - markup.bold markup.italic, markup.bold markup.italic punctuation - settings - - fontStyle - bold italic - foreground - #c8d3f5 - - - - name - Markup - Underline - scope - markup.underline, markup.underline punctuation - settings - - fontStyle - underline - - - - name - Markdown - Blockquote - scope - markup.quote punctuation.definition.blockquote.markdown - settings - - foreground - #4e5579 - - - - name - Markup - Quote - scope - markup.quote - settings - - fontStyle - italic - - - - name - Markdown - Link - scope - string.other.link, markup.underline.link, constant.other.reference.link.markdown, string.other.link.description.title.markdown - settings - - foreground - #4fd6be - - - - name - Markdown - Fenced Code Block - scope - markup.fenced_code.block.markdown, markup.inline.raw.string.markdown, variable.language.fenced.markdown - settings - - foreground - #89ddff - - - - name - Markdown - Separator - scope - meta.separator - settings - - fontStyle - bold - foreground - #444b6a - - - - name - Markup - Table - scope - markup.table - settings - - foreground - #c0cefc - - - - name - Token - Info - scope - token.info-token - settings - - foreground - #0db9d7 - - - - name - Token - Warn - scope - token.warn-token - settings - - foreground - #ffdb69 - - - - name - Token - Error - scope - token.error-token - settings - - foreground - #c53b53 - - - - name - Token - Debug - scope - token.debug-token - settings - - foreground - #b267e6 - - - - name - Apache Tag - scope - entity.tag.apacheconf - settings - - foreground - #ff757f - - - - name - Preprocessor - scope - meta.preprocessor - settings - - foreground - #4fd6be - - - - name - ENV value - scope - source.env - settings - - foreground - #82aaff - - - - uuid - 06f855e3-9fb7-4fb1-b790-aef06065f34e - - - diff --git a/extras/sublime/tokyonight_night.tmTheme b/extras/sublime/tokyonight_night.tmTheme deleted file mode 100644 index 33108dd..0000000 --- a/extras/sublime/tokyonight_night.tmTheme +++ /dev/null @@ -1,1377 +0,0 @@ - - - - author - Folke Lemaitre (http://github.com/folke) - colorSpaceName - sRGB - name - NekoNight - semanticClass - enki.theme.neko - settings - - - settings - - activeGuide - #363b54 - background - #1a1b26 - caret - #DBC08A - findHighlight - #ffa300 - findHighlightForeground - #000000 - foreground - #c0caf5 - guide - #4f4f5e40 - gutterForeground - #3b415caa - inactiveSelection - #282833 - invisibles - #4f4f5e - lineHighlight - #00000030 - selection - #9D599D40 - selectionBorder - #9D599D - shadow - #00000010 - stackGuide - #4f4f5e60 - tagsOptions - underline - - - - name - Italics - Comments, Storage, Keyword Flow, Vue attributes, Decorators - scope - comment, meta.var.expr storage.type, keyword.control.flow, meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html, tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js, storage.modifier - settings - - fontStyle - italic - - - - name - Comment - scope - comment, comment.block.documentation, punctuation.definition.comment - settings - - foreground - #565f89 - - - - name - Comment Doc - scope - comment.block.documentation variable, comment.block.documentation storage, comment.block.documentation punctuation, comment.block.documentation keyword, comment.block.documentation support, comment.block.documentation markup, comment.block.documentation markup.inline.raw.string.markdown, keyword.other.phpdoc.php - settings - - foreground - #565f89 - - - - name - Number, Boolean, Undefined, Null - scope - variable.other.constant, punctuation.definition.constant, constant.language, constant.numeric, support.constant - settings - - foreground - #ff9e64 - - - - name - String, Symbols, Markup Heading - scope - meta.property.lua,string.unquoted.key.lua,support.other.metaproperty.lua,support.other.metaproperty.lua,constant.other.symbol, constant.other.key, markup.heading, meta.attribute-selector - settings - - fontStyle - - foreground - #73daca - - - - name - String - scope - string - settings - - fontStyle - - foreground - #9ece6a - - - - name - Colors - scope - constant.other.color, constant.other.color.rgb-value.hex punctuation.definition.constant - settings - - foreground - #9aa5ce - - - - name - Info - scope - markup.info - settings - - foreground - #0db9d7 - background - #192b38 - - - - name - Warning - scope - markup.warning - settings - - foreground - #e0af68 - background - #2e2a2d - - - - name - Error - scope - markup.error - settings - - foreground - #db4b4b - background - #2d202a - - - - name - Invalid - scope - invalid, invalid.illegal - settings - - foreground - #f7768e - - - - name - Invalid deprecated - scope - invalid.deprecated - settings - - foreground - #bb9af7 - - - - name - Storage Type - scope - storage.type - settings - - foreground - #bb9af7 - - - - name - Storage - modifier, var, const, let - scope - meta.var.expr storage.type, storage.modifier - settings - - foreground - #9d7cd8 - - - - name - Interpolation - scope - punctuation.definition.template-expression, punctuation.section.embedded - settings - - foreground - #7dcfff - - - - name - Spread - scope - keyword.operator.spread, keyword.operator.rest - settings - - fontStyle - bold - foreground - #f7768e - - - - name - Operator, Misc - scope - keyword.operator, keyword.control.as, keyword.other, keyword.operator.bitwise.shift, punctuation, punctuation.definition.constant.markdown, punctuation.definition.string, punctuation.support.type.property-name, text.html.vue-html meta.tag, punctuation.definition.keyword, punctuation.terminator.rule, punctuation.definition.entity, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, keyword.other.template, keyword.other.substitution, entity.name.operator, text.html.vue meta.tag.block.any.html, text.html.vue meta.tag.inline.any.html, text.html.vue meta.tag.other.html, text.html.twig meta.tag.inline.any.html, text.html.twig meta.tag.block.any.html, text.html.twig meta.tag.structure.any.html, text.html.twig meta.tag.any.html - settings - - foreground - #89ddff - - - - name - Import, Export, From, Default - scope - keyword.control.import, keyword.control.export, keyword.control.from, keyword.control.default, meta.import keyword.other - settings - - foreground - #7dcfff - - - - name - Keyword - scope - keyword, keyword.control, keyword.other.important - settings - - foreground - #bb9af7 - - - - name - Keyword SQL - scope - keyword.other.DML - settings - - foreground - #7dcfff - - - - name - Keyword Operator Logical, Arrow, Ternary, Comparison - scope - keyword.operator.logical, storage.type.function, keyword.operator.bitwise, keyword.operator.ternary, keyword.operator.comparison, keyword.operator.relational, keyword.operator.or.regexp - settings - - foreground - #bb9af7 - - - - name - Tag - scope - entity.name.tag, entity.name.tag support.class.component, meta.tag - settings - - foreground - #f7768e - - - - name - Tag Punctuation - scope - punctuation.definition.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html - settings - - foreground - #ba3c97 - - - - name - Blade - scope - keyword.blade, entity.name.function.blade - settings - - foreground - #7aa2f7 - - - - name - PHP - Embedded Tag - scope - punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php - settings - - foreground - #0db9d7 - - - - name - Smarty - Twig tag - Blade - scope - punctuation.definition.variable.smarty, punctuation.section.embedded.begin.smarty, punctuation.section.embedded.end.smarty, meta.tag.template.value.twig, punctuation.section.tag.twig, meta.tag.expression.twig, punctuation.definition.tag.expression.twig, punctuation.definition.tag.output.twig, variable.parameter.smarty - settings - - foreground - #7DCFFF - - - - name - Smarty - Twig variable - function - scope - variable.other.property.twig, support.function.twig, meta.function-call.twig, keyword.control.twig, keyword.control.smarty, keyword.operator.other.twig, keyword.operator.comparison.twig, support.function.functions.twig, support.function.functions.twig, keyword.operator.assignment.twig, support.function.filters.twig, support.function.built-in.smarty, keyword.operator.smarty, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php entity.name.tag.block.any.html, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php constant.other.inline-data.html, text.blade text.html.blade custom.compiler.blade.php support.function constant.other.inline-data.html - settings - - foreground - #2ac3de - - - - name - Globals - PHP Constants etc - scope - constant.other.php, variable.other.global.safer, variable.other.global.safer punctuation.definition.variable, variable.other.global, variable.other.global punctuation.definition.variable, constant.other - settings - - foreground - #e0af68 - - - - name - Variables - scope - variable, support.variable, string constant.other.placeholder - settings - - foreground - #c0caf5 - - - - name - Object Variable - scope - variable.other.object, support.module.node - settings - - foreground - #c0caf5 - - - - name - Object Key - scope - meta.object-literal.key, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js, string.alias.graphql, string.unquoted.graphql, string.unquoted.alias.graphql, meta.field.declaration.ts variable.object.property - settings - - foreground - #73daca - - - - name - Object Property - scope - variable.other.property, support.variable.property, support.variable.property.dom, meta.function-call variable.other.object.property, variable.language.prototype, meta.property.object, variable.other.member - settings - - foreground - #7dcfff - - - - name - Object Property - scope - variable.other.object.property - settings - - foreground - #c0caf5 - - - - name - Object Literal Member lvl 3 (Vue Prop Validation) - scope - meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.object-literal.key - settings - - foreground - #41a6b5 - - - - name - C-related Block Level Variables - scope - source.cpp meta.block variable.other - settings - - foreground - #f7768e - - - - name - Other Variable - scope - support.other.variable - settings - - foreground - #f7768e - - - - name - Methods - scope - meta.class-method.js entity.name.function.js, entity.name.method.js, variable.function.constructor, keyword.other.special-method, storage.type.cs - settings - - foreground - #7aa2f7 - - - - name - Function Definition - scope - entity.name.function, meta.function-call, meta.function-call entity.name.function, variable.function, meta.definition.method entity.name.function, meta.object-literal entity.name.function - settings - - foreground - #7aa2f7 - - - - name - Function Argument - scope - variable.parameter.function.language.special, variable.parameter, meta.function.parameters punctuation.definition.variable, meta.function.parameter variable - settings - - foreground - #e0af68 - - - - name - Constant, Tag Attribute - scope - keyword.other.type.php, storage.type.php, constant.character, constant.escape, keyword.other.unit - settings - - foreground - #bb9af7 - - - - name - Variable Definition - scope - meta.definition.variable variable.other.constant, meta.definition.variable variable.other.readwrite, variable.other.declaration - settings - - foreground - #bb9af7 - - - - name - Inherited Class - scope - entity.other.inherited-class - settings - - fontStyle - - foreground - #bb9af7 - - - - name - Class, Support, DOM, etc - scope - support.class, support.type, variable.other.readwrite.alias, support.orther.namespace.use.php, meta.use.php, support.other.namespace.php, support.type.sys-types, support.variable.dom, support.constant.math, support.type.object.module, support.constant.json, entity.name.namespace, meta.import.qualifier, entity.name.class - settings - - foreground - #0db9d7 - - - - name - Class Name - scope - entity.name - settings - - foreground - #c0caf5 - - - - name - Support Function - scope - support.function - settings - - foreground - #2ac3de - - - - name - CSS Class and Support - scope - source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name, support.type.property-name.css, support.type.vendored.property-name, support.type.map.key - settings - - foreground - #7aa2f7 - - - - name - CSS Font - scope - support.constant.font-name, meta.definition.variable - settings - - foreground - #9ece6a - - - - name - CSS Class - scope - entity.other.attribute-name.class, meta.at-rule.mixin.scss entity.name.function.scss - settings - - foreground - #9ece6a - - - - name - CSS ID - scope - entity.other.attribute-name.id - settings - - foreground - #fc7b7b - - - - name - CSS Tag - scope - entity.name.tag.css, entity.name.tag.reference, entity.name.tag.scss - settings - - foreground - #0db9d7 - - - - name - CSS Tag Reference - scope - entity.name.tag.reference - settings - - foreground - #e0af68 - - - - name - CSS Property Separator - scope - meta.property-list punctuation.separator.key-value - settings - - foreground - #9abdf5 - - - - name - CSS Punctuation - scope - meta.property-list, punctuation.definition.entity.css - settings - - foreground - #e0af68 - - - - name - SCSS @ - scope - meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.include entity.name.function.scss, meta.at-rule.include keyword.control.at-rule.include - settings - - foreground - #bb9af7 - - - - name - SCSS Mixins, Extends, Include Keyword - scope - keyword.control.at-rule.include punctuation.definition.keyword, keyword.control.at-rule.mixin punctuation.definition.keyword, meta.at-rule.include keyword.control.at-rule.include, keyword.control.at-rule.extend punctuation.definition.keyword, meta.at-rule.extend keyword.control.at-rule.extend, entity.other.attribute-name.placeholder.css punctuation.definition.entity.css, meta.at-rule.media keyword.control.at-rule.media, meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.function keyword.control.at-rule.function, keyword.control punctuation.definition.keyword, meta.at-rule.import.scss entity.other.attribute-name.placeholder.scss punctuation.definition.entity.scss, meta.at-rule.import.scss keyword.control.at-rule.import.scss - settings - - foreground - #9d7cd8 - - - - name - SCSS Include Mixin Argument - scope - meta.property-list meta.at-rule.include - settings - - foreground - #c0caf5 - - - - name - CSS value - scope - support.constant.property-value - settings - - foreground - #ff9e64 - - - - name - Sub-methods - scope - entity.name.module.js, variable.import.parameter.js, variable.other.class.js - settings - - foreground - #c0caf5 - - - - name - Language methods - scope - variable.language - settings - - foreground - #f7768e - - - - name - Variable punctuation - scope - variable.other punctuation.definition.variable - settings - - foreground - #c0caf5 - - - - name - Keyword this with Punctuation, ES7 Bind Operator - scope - source.js constant.other.object.key.js string.unquoted.label.js, variable.language.this punctuation.definition.variable, keyword.other.this - settings - - foreground - #f7768e - - - - name - HTML Attributes - scope - entity.other.attribute-name, text.html.basic entity.other.attribute-name.html, text.html.basic entity.other.attribute-name, text.blade entity.other.attribute-name.class, text.html.smarty entity.other.attribute-name.class - settings - - foreground - #bb9af7 - - - - name - Vue Template attributes - scope - meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html - settings - - foreground - #bb9af7 - - - - name - Vue Template attribute separator - scope - meta.directive.vue punctuation.separator.key-value.html - settings - - foreground - #89ddff - - - - name - CSS IDs - scope - source.sass keyword.control - settings - - foreground - #7aa2f7 - - - - name - CSS pseudo selectors - scope - entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.placeholder, meta.property-list meta.property-value - settings - - foreground - #bb9af7 - - - - name - Inserted - scope - markup.inserted - settings - - foreground - #449dab - - - - name - Deleted - scope - markup.deleted - settings - - foreground - #914c54 - - - - name - Changed - scope - markup.changed - settings - - foreground - #6183bb - - - - name - Regular Expressions - scope - string.regexp - settings - - foreground - #b4f9f8 - - - - name - Regular Expressions - Punctuation - scope - punctuation.definition.group - settings - - foreground - #f7768e - - - - name - Regular Expressions - Character Class - scope - constant.other.character-class.regexp - settings - - foreground - #bb9af7 - - - - name - Regular Expressions - Character Class Set - scope - constant.other.character-class.set.regexp, punctuation.definition.character-class.regexp - settings - - foreground - #e0af68 - - - - name - Regular Expressions - Quantifier - scope - keyword.operator.quantifier.regexp - settings - - foreground - #89ddff - - - - name - Regular Expressions - Backslash - scope - constant.character.escape.backslash - settings - - foreground - #c0caf5 - - - - name - Escape Characters - scope - constant.character.escape - settings - - foreground - #89ddff - - - - name - Decorators - scope - tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js - settings - - foreground - #7aa2f7 - - - - name - CSS Units - scope - keyword.other.unit - settings - - foreground - #f7768e - - - - name - JSON Key - Level 0 - scope - source.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #7aa2f7 - - - - name - JSON Key - Level 1 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 2 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #7dcfff - - - - name - JSON Key - Level 3 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #bb9af7 - - - - name - JSON Key - Level 4 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #e0af68 - - - - name - JSON Key - Level 5 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 6 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #73daca - - - - name - JSON Key - Level 7 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json - settings - - foreground - #f7768e - - - - name - JSON Key - Level 8 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json punctuation.definition.string.end.json - settings - - foreground - #9ece6a - - - - name - JSON Key - value - scope - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json - settings - - foreground - #9ece6a - - - - name - Plain Punctuation - scope - punctuation.definition.list_item.markdown - settings - - foreground - #9abdf5 - - - - name - Block Punctuation - scope - meta.block, meta.brace, punctuation.definition.block, punctuation.definition.use, punctuation.definition.group.shell, punctuation.definition.class, punctuation.definition.begin.bracket, punctuation.definition.end.bracket, punctuation.definition.parameters, punctuation.definition.arguments, punctuation.definition.dictionary, punctuation.definition.array, punctuation.section - settings - - foreground - #9abdf5 - - - - name - Markdown - Plain - scope - meta.jsx.children, meta.embedded.block - settings - - foreground - #c0caf5 - - - - name - HTML text - scope - text.html - settings - - foreground - #9aa5ce - - - - name - Markdown - Markup Raw Inline - scope - text.html.markdown markup.inline.raw.markdown - settings - - foreground - #bb9af7 - - - - name - Markdown - Markup Raw Inline Punctuation - scope - text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown - settings - - foreground - #4E5579 - - - - name - Markdown - Heading 1 - scope - heading.1.markdown entity.name, heading.1.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #89ddff - - - - name - Markdown - Heading 2 - scope - heading.2.markdown entity.name, heading.2.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #61bdf2 - - - - name - Markdown - Heading 3 - scope - heading.3.markdown entity.name, heading.3.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #7aa2f7 - - - - name - Markdown - Heading 4 - scope - heading.4.markdown entity.name, heading.4.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #6d91de - - - - name - Markdown - Heading 5 - scope - heading.5.markdown entity.name, heading.5.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #9aa5ce - - - - name - Markdown - Heading 6 - scope - heading.6.markdown entity.name, heading.6.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #747ca1 - - - - name - Markup - Italic - scope - markup.italic, markup.italic punctuation - settings - - fontStyle - italic - foreground - #c0caf5 - - - - name - Markup - Bold - scope - markup.bold, markup.bold punctuation - settings - - fontStyle - bold - foreground - #c0caf5 - - - - name - Markup - Bold-Italic - scope - markup.bold markup.italic, markup.bold markup.italic punctuation - settings - - fontStyle - bold italic - foreground - #c0caf5 - - - - name - Markup - Underline - scope - markup.underline, markup.underline punctuation - settings - - fontStyle - underline - - - - name - Markdown - Blockquote - scope - markup.quote punctuation.definition.blockquote.markdown - settings - - foreground - #4e5579 - - - - name - Markup - Quote - scope - markup.quote - settings - - fontStyle - italic - - - - name - Markdown - Link - scope - string.other.link, markup.underline.link, constant.other.reference.link.markdown, string.other.link.description.title.markdown - settings - - foreground - #73daca - - - - name - Markdown - Fenced Code Block - scope - markup.fenced_code.block.markdown, markup.inline.raw.string.markdown, variable.language.fenced.markdown - settings - - foreground - #89ddff - - - - name - Markdown - Separator - scope - meta.separator - settings - - fontStyle - bold - foreground - #444b6a - - - - name - Markup - Table - scope - markup.table - settings - - foreground - #c0cefc - - - - name - Token - Info - scope - token.info-token - settings - - foreground - #0db9d7 - - - - name - Token - Warn - scope - token.warn-token - settings - - foreground - #ffdb69 - - - - name - Token - Error - scope - token.error-token - settings - - foreground - #db4b4b - - - - name - Token - Debug - scope - token.debug-token - settings - - foreground - #b267e6 - - - - name - Apache Tag - scope - entity.tag.apacheconf - settings - - foreground - #f7768e - - - - name - Preprocessor - scope - meta.preprocessor - settings - - foreground - #73daca - - - - name - ENV value - scope - source.env - settings - - foreground - #7aa2f7 - - - - uuid - 06f855e3-9fb7-4fb1-b790-aef06065f34e - - - diff --git a/extras/sublime/tokyonight_storm.tmTheme b/extras/sublime/tokyonight_storm.tmTheme deleted file mode 100644 index 5940e8f..0000000 --- a/extras/sublime/tokyonight_storm.tmTheme +++ /dev/null @@ -1,1377 +0,0 @@ - - - - author - Folke Lemaitre (http://github.com/folke) - colorSpaceName - sRGB - name - NekoNight - semanticClass - enki.theme.neko - settings - - - settings - - activeGuide - #363b54 - background - #24283b - caret - #DBC08A - findHighlight - #ffa300 - findHighlightForeground - #000000 - foreground - #c0caf5 - guide - #4f4f5e40 - gutterForeground - #3b415caa - inactiveSelection - #282833 - invisibles - #4f4f5e - lineHighlight - #00000030 - selection - #9D599D40 - selectionBorder - #9D599D - shadow - #00000010 - stackGuide - #4f4f5e60 - tagsOptions - underline - - - - name - Italics - Comments, Storage, Keyword Flow, Vue attributes, Decorators - scope - comment, meta.var.expr storage.type, keyword.control.flow, meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html, tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js, storage.modifier - settings - - fontStyle - italic - - - - name - Comment - scope - comment, comment.block.documentation, punctuation.definition.comment - settings - - foreground - #565f89 - - - - name - Comment Doc - scope - comment.block.documentation variable, comment.block.documentation storage, comment.block.documentation punctuation, comment.block.documentation keyword, comment.block.documentation support, comment.block.documentation markup, comment.block.documentation markup.inline.raw.string.markdown, keyword.other.phpdoc.php - settings - - foreground - #565f89 - - - - name - Number, Boolean, Undefined, Null - scope - variable.other.constant, punctuation.definition.constant, constant.language, constant.numeric, support.constant - settings - - foreground - #ff9e64 - - - - name - String, Symbols, Markup Heading - scope - meta.property.lua,string.unquoted.key.lua,support.other.metaproperty.lua,support.other.metaproperty.lua,constant.other.symbol, constant.other.key, markup.heading, meta.attribute-selector - settings - - fontStyle - - foreground - #73daca - - - - name - String - scope - string - settings - - fontStyle - - foreground - #9ece6a - - - - name - Colors - scope - constant.other.color, constant.other.color.rgb-value.hex punctuation.definition.constant - settings - - foreground - #9aa5ce - - - - name - Info - scope - markup.info - settings - - foreground - #0db9d7 - background - #22374b - - - - name - Warning - scope - markup.warning - settings - - foreground - #e0af68 - background - #373640 - - - - name - Error - scope - markup.error - settings - - foreground - #db4b4b - background - #362c3d - - - - name - Invalid - scope - invalid, invalid.illegal - settings - - foreground - #f7768e - - - - name - Invalid deprecated - scope - invalid.deprecated - settings - - foreground - #bb9af7 - - - - name - Storage Type - scope - storage.type - settings - - foreground - #bb9af7 - - - - name - Storage - modifier, var, const, let - scope - meta.var.expr storage.type, storage.modifier - settings - - foreground - #9d7cd8 - - - - name - Interpolation - scope - punctuation.definition.template-expression, punctuation.section.embedded - settings - - foreground - #7dcfff - - - - name - Spread - scope - keyword.operator.spread, keyword.operator.rest - settings - - fontStyle - bold - foreground - #f7768e - - - - name - Operator, Misc - scope - keyword.operator, keyword.control.as, keyword.other, keyword.operator.bitwise.shift, punctuation, punctuation.definition.constant.markdown, punctuation.definition.string, punctuation.support.type.property-name, text.html.vue-html meta.tag, punctuation.definition.keyword, punctuation.terminator.rule, punctuation.definition.entity, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, keyword.other.template, keyword.other.substitution, entity.name.operator, text.html.vue meta.tag.block.any.html, text.html.vue meta.tag.inline.any.html, text.html.vue meta.tag.other.html, text.html.twig meta.tag.inline.any.html, text.html.twig meta.tag.block.any.html, text.html.twig meta.tag.structure.any.html, text.html.twig meta.tag.any.html - settings - - foreground - #89ddff - - - - name - Import, Export, From, Default - scope - keyword.control.import, keyword.control.export, keyword.control.from, keyword.control.default, meta.import keyword.other - settings - - foreground - #7dcfff - - - - name - Keyword - scope - keyword, keyword.control, keyword.other.important - settings - - foreground - #bb9af7 - - - - name - Keyword SQL - scope - keyword.other.DML - settings - - foreground - #7dcfff - - - - name - Keyword Operator Logical, Arrow, Ternary, Comparison - scope - keyword.operator.logical, storage.type.function, keyword.operator.bitwise, keyword.operator.ternary, keyword.operator.comparison, keyword.operator.relational, keyword.operator.or.regexp - settings - - foreground - #bb9af7 - - - - name - Tag - scope - entity.name.tag, entity.name.tag support.class.component, meta.tag - settings - - foreground - #f7768e - - - - name - Tag Punctuation - scope - punctuation.definition.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html - settings - - foreground - #ba3c97 - - - - name - Blade - scope - keyword.blade, entity.name.function.blade - settings - - foreground - #7aa2f7 - - - - name - PHP - Embedded Tag - scope - punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php - settings - - foreground - #0db9d7 - - - - name - Smarty - Twig tag - Blade - scope - punctuation.definition.variable.smarty, punctuation.section.embedded.begin.smarty, punctuation.section.embedded.end.smarty, meta.tag.template.value.twig, punctuation.section.tag.twig, meta.tag.expression.twig, punctuation.definition.tag.expression.twig, punctuation.definition.tag.output.twig, variable.parameter.smarty - settings - - foreground - #7DCFFF - - - - name - Smarty - Twig variable - function - scope - variable.other.property.twig, support.function.twig, meta.function-call.twig, keyword.control.twig, keyword.control.smarty, keyword.operator.other.twig, keyword.operator.comparison.twig, support.function.functions.twig, support.function.functions.twig, keyword.operator.assignment.twig, support.function.filters.twig, support.function.built-in.smarty, keyword.operator.smarty, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php entity.name.tag.block.any.html, text.blade text.html.blade custom.compiler.blade.php punctuation.section.embedded.php constant.other.inline-data.html, text.blade text.html.blade custom.compiler.blade.php support.function constant.other.inline-data.html - settings - - foreground - #2ac3de - - - - name - Globals - PHP Constants etc - scope - constant.other.php, variable.other.global.safer, variable.other.global.safer punctuation.definition.variable, variable.other.global, variable.other.global punctuation.definition.variable, constant.other - settings - - foreground - #e0af68 - - - - name - Variables - scope - variable, support.variable, string constant.other.placeholder - settings - - foreground - #c0caf5 - - - - name - Object Variable - scope - variable.other.object, support.module.node - settings - - foreground - #c0caf5 - - - - name - Object Key - scope - meta.object-literal.key, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js, string.alias.graphql, string.unquoted.graphql, string.unquoted.alias.graphql, meta.field.declaration.ts variable.object.property - settings - - foreground - #73daca - - - - name - Object Property - scope - variable.other.property, support.variable.property, support.variable.property.dom, meta.function-call variable.other.object.property, variable.language.prototype, meta.property.object, variable.other.member - settings - - foreground - #7dcfff - - - - name - Object Property - scope - variable.other.object.property - settings - - foreground - #c0caf5 - - - - name - Object Literal Member lvl 3 (Vue Prop Validation) - scope - meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.object-literal.key - settings - - foreground - #41a6b5 - - - - name - C-related Block Level Variables - scope - source.cpp meta.block variable.other - settings - - foreground - #f7768e - - - - name - Other Variable - scope - support.other.variable - settings - - foreground - #f7768e - - - - name - Methods - scope - meta.class-method.js entity.name.function.js, entity.name.method.js, variable.function.constructor, keyword.other.special-method, storage.type.cs - settings - - foreground - #7aa2f7 - - - - name - Function Definition - scope - entity.name.function, meta.function-call, meta.function-call entity.name.function, variable.function, meta.definition.method entity.name.function, meta.object-literal entity.name.function - settings - - foreground - #7aa2f7 - - - - name - Function Argument - scope - variable.parameter.function.language.special, variable.parameter, meta.function.parameters punctuation.definition.variable, meta.function.parameter variable - settings - - foreground - #e0af68 - - - - name - Constant, Tag Attribute - scope - keyword.other.type.php, storage.type.php, constant.character, constant.escape, keyword.other.unit - settings - - foreground - #bb9af7 - - - - name - Variable Definition - scope - meta.definition.variable variable.other.constant, meta.definition.variable variable.other.readwrite, variable.other.declaration - settings - - foreground - #bb9af7 - - - - name - Inherited Class - scope - entity.other.inherited-class - settings - - fontStyle - - foreground - #bb9af7 - - - - name - Class, Support, DOM, etc - scope - support.class, support.type, variable.other.readwrite.alias, support.orther.namespace.use.php, meta.use.php, support.other.namespace.php, support.type.sys-types, support.variable.dom, support.constant.math, support.type.object.module, support.constant.json, entity.name.namespace, meta.import.qualifier, entity.name.class - settings - - foreground - #0db9d7 - - - - name - Class Name - scope - entity.name - settings - - foreground - #c0caf5 - - - - name - Support Function - scope - support.function - settings - - foreground - #2ac3de - - - - name - CSS Class and Support - scope - source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name, support.type.property-name.css, support.type.vendored.property-name, support.type.map.key - settings - - foreground - #7aa2f7 - - - - name - CSS Font - scope - support.constant.font-name, meta.definition.variable - settings - - foreground - #9ece6a - - - - name - CSS Class - scope - entity.other.attribute-name.class, meta.at-rule.mixin.scss entity.name.function.scss - settings - - foreground - #9ece6a - - - - name - CSS ID - scope - entity.other.attribute-name.id - settings - - foreground - #fc7b7b - - - - name - CSS Tag - scope - entity.name.tag.css, entity.name.tag.reference, entity.name.tag.scss - settings - - foreground - #0db9d7 - - - - name - CSS Tag Reference - scope - entity.name.tag.reference - settings - - foreground - #e0af68 - - - - name - CSS Property Separator - scope - meta.property-list punctuation.separator.key-value - settings - - foreground - #9abdf5 - - - - name - CSS Punctuation - scope - meta.property-list, punctuation.definition.entity.css - settings - - foreground - #e0af68 - - - - name - SCSS @ - scope - meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.include entity.name.function.scss, meta.at-rule.include keyword.control.at-rule.include - settings - - foreground - #bb9af7 - - - - name - SCSS Mixins, Extends, Include Keyword - scope - keyword.control.at-rule.include punctuation.definition.keyword, keyword.control.at-rule.mixin punctuation.definition.keyword, meta.at-rule.include keyword.control.at-rule.include, keyword.control.at-rule.extend punctuation.definition.keyword, meta.at-rule.extend keyword.control.at-rule.extend, entity.other.attribute-name.placeholder.css punctuation.definition.entity.css, meta.at-rule.media keyword.control.at-rule.media, meta.at-rule.mixin keyword.control.at-rule.mixin, meta.at-rule.function keyword.control.at-rule.function, keyword.control punctuation.definition.keyword, meta.at-rule.import.scss entity.other.attribute-name.placeholder.scss punctuation.definition.entity.scss, meta.at-rule.import.scss keyword.control.at-rule.import.scss - settings - - foreground - #9d7cd8 - - - - name - SCSS Include Mixin Argument - scope - meta.property-list meta.at-rule.include - settings - - foreground - #c0caf5 - - - - name - CSS value - scope - support.constant.property-value - settings - - foreground - #ff9e64 - - - - name - Sub-methods - scope - entity.name.module.js, variable.import.parameter.js, variable.other.class.js - settings - - foreground - #c0caf5 - - - - name - Language methods - scope - variable.language - settings - - foreground - #f7768e - - - - name - Variable punctuation - scope - variable.other punctuation.definition.variable - settings - - foreground - #c0caf5 - - - - name - Keyword this with Punctuation, ES7 Bind Operator - scope - source.js constant.other.object.key.js string.unquoted.label.js, variable.language.this punctuation.definition.variable, keyword.other.this - settings - - foreground - #f7768e - - - - name - HTML Attributes - scope - entity.other.attribute-name, text.html.basic entity.other.attribute-name.html, text.html.basic entity.other.attribute-name, text.blade entity.other.attribute-name.class, text.html.smarty entity.other.attribute-name.class - settings - - foreground - #bb9af7 - - - - name - Vue Template attributes - scope - meta.directive.vue punctuation.separator.key-value.html, meta.directive.vue entity.other.attribute-name.html - settings - - foreground - #bb9af7 - - - - name - Vue Template attribute separator - scope - meta.directive.vue punctuation.separator.key-value.html - settings - - foreground - #89ddff - - - - name - CSS IDs - scope - source.sass keyword.control - settings - - foreground - #7aa2f7 - - - - name - CSS pseudo selectors - scope - entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.placeholder, meta.property-list meta.property-value - settings - - foreground - #bb9af7 - - - - name - Inserted - scope - markup.inserted - settings - - foreground - #449dab - - - - name - Deleted - scope - markup.deleted - settings - - foreground - #914c54 - - - - name - Changed - scope - markup.changed - settings - - foreground - #6183bb - - - - name - Regular Expressions - scope - string.regexp - settings - - foreground - #b4f9f8 - - - - name - Regular Expressions - Punctuation - scope - punctuation.definition.group - settings - - foreground - #f7768e - - - - name - Regular Expressions - Character Class - scope - constant.other.character-class.regexp - settings - - foreground - #bb9af7 - - - - name - Regular Expressions - Character Class Set - scope - constant.other.character-class.set.regexp, punctuation.definition.character-class.regexp - settings - - foreground - #e0af68 - - - - name - Regular Expressions - Quantifier - scope - keyword.operator.quantifier.regexp - settings - - foreground - #89ddff - - - - name - Regular Expressions - Backslash - scope - constant.character.escape.backslash - settings - - foreground - #c0caf5 - - - - name - Escape Characters - scope - constant.character.escape - settings - - foreground - #89ddff - - - - name - Decorators - scope - tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js - settings - - foreground - #7aa2f7 - - - - name - CSS Units - scope - keyword.other.unit - settings - - foreground - #f7768e - - - - name - JSON Key - Level 0 - scope - source.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #7aa2f7 - - - - name - JSON Key - Level 1 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 2 - scope - source.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #7dcfff - - - - name - JSON Key - Level 3 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #bb9af7 - - - - name - JSON Key - Level 4 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #e0af68 - - - - name - JSON Key - Level 5 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #0db9d7 - - - - name - JSON Key - Level 6 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - settings - - foreground - #73daca - - - - name - JSON Key - Level 7 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json - settings - - foreground - #f7768e - - - - name - JSON Key - Level 8 - scope - source.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.value.json meta.sequence.json meta.mapping.key.json string.quoted.double.json punctuation.definition.string.end.json - settings - - foreground - #9ece6a - - - - name - JSON Key - value - scope - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json - settings - - foreground - #9ece6a - - - - name - Plain Punctuation - scope - punctuation.definition.list_item.markdown - settings - - foreground - #9abdf5 - - - - name - Block Punctuation - scope - meta.block, meta.brace, punctuation.definition.block, punctuation.definition.use, punctuation.definition.group.shell, punctuation.definition.class, punctuation.definition.begin.bracket, punctuation.definition.end.bracket, punctuation.definition.parameters, punctuation.definition.arguments, punctuation.definition.dictionary, punctuation.definition.array, punctuation.section - settings - - foreground - #9abdf5 - - - - name - Markdown - Plain - scope - meta.jsx.children, meta.embedded.block - settings - - foreground - #c0caf5 - - - - name - HTML text - scope - text.html - settings - - foreground - #9aa5ce - - - - name - Markdown - Markup Raw Inline - scope - text.html.markdown markup.inline.raw.markdown - settings - - foreground - #bb9af7 - - - - name - Markdown - Markup Raw Inline Punctuation - scope - text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown - settings - - foreground - #4E5579 - - - - name - Markdown - Heading 1 - scope - heading.1.markdown entity.name, heading.1.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #89ddff - - - - name - Markdown - Heading 2 - scope - heading.2.markdown entity.name, heading.2.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #61bdf2 - - - - name - Markdown - Heading 3 - scope - heading.3.markdown entity.name, heading.3.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #7aa2f7 - - - - name - Markdown - Heading 4 - scope - heading.4.markdown entity.name, heading.4.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #6d91de - - - - name - Markdown - Heading 5 - scope - heading.5.markdown entity.name, heading.5.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #9aa5ce - - - - name - Markdown - Heading 6 - scope - heading.6.markdown entity.name, heading.6.markdown punctuation.definition.heading.markdown - settings - - fontStyle - bold - foreground - #747ca1 - - - - name - Markup - Italic - scope - markup.italic, markup.italic punctuation - settings - - fontStyle - italic - foreground - #c0caf5 - - - - name - Markup - Bold - scope - markup.bold, markup.bold punctuation - settings - - fontStyle - bold - foreground - #c0caf5 - - - - name - Markup - Bold-Italic - scope - markup.bold markup.italic, markup.bold markup.italic punctuation - settings - - fontStyle - bold italic - foreground - #c0caf5 - - - - name - Markup - Underline - scope - markup.underline, markup.underline punctuation - settings - - fontStyle - underline - - - - name - Markdown - Blockquote - scope - markup.quote punctuation.definition.blockquote.markdown - settings - - foreground - #4e5579 - - - - name - Markup - Quote - scope - markup.quote - settings - - fontStyle - italic - - - - name - Markdown - Link - scope - string.other.link, markup.underline.link, constant.other.reference.link.markdown, string.other.link.description.title.markdown - settings - - foreground - #73daca - - - - name - Markdown - Fenced Code Block - scope - markup.fenced_code.block.markdown, markup.inline.raw.string.markdown, variable.language.fenced.markdown - settings - - foreground - #89ddff - - - - name - Markdown - Separator - scope - meta.separator - settings - - fontStyle - bold - foreground - #444b6a - - - - name - Markup - Table - scope - markup.table - settings - - foreground - #c0cefc - - - - name - Token - Info - scope - token.info-token - settings - - foreground - #0db9d7 - - - - name - Token - Warn - scope - token.warn-token - settings - - foreground - #ffdb69 - - - - name - Token - Error - scope - token.error-token - settings - - foreground - #db4b4b - - - - name - Token - Debug - scope - token.debug-token - settings - - foreground - #b267e6 - - - - name - Apache Tag - scope - entity.tag.apacheconf - settings - - foreground - #f7768e - - - - name - Preprocessor - scope - meta.preprocessor - settings - - foreground - #73daca - - - - name - ENV value - scope - source.env - settings - - foreground - #7aa2f7 - - - - uuid - 06f855e3-9fb7-4fb1-b790-aef06065f34e - - - diff --git a/extras/vim/README.md b/extras/vim/README.md deleted file mode 100644 index e1cfa3b..0000000 --- a/extras/vim/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Vim ColorScheme - -Clone the repo somewhere. - -```sh -git clone https://github.com/BrunoCiccarino/nekonight ~/projects/nekonight -``` - -Add the below to your `~/.vimrc` file. - -```vim -set termguicolors -set rtp+=~/projects/nekonight/extras/vim -colorscheme nekonight -``` diff --git a/extras/vim/colors/nekonight-day.vim b/extras/vim/colors/nekonight-day.vim deleted file mode 100644 index 2c8c884..0000000 --- a/extras/vim/colors/nekonight-day.vim +++ /dev/null @@ -1,317 +0,0 @@ -let g:colors_name = "nekonight-day" -hi clear - -hi ALEErrorSign guibg=NONE guifg=#c64343 -hi ALEWarningSign guibg=NONE guifg=#8c6c3e -hi BlinkCmpDoc guibg=#d0d5e3 guifg=#3760bf -hi BlinkCmpDocBorder guibg=#d0d5e3 guifg=#4094a3 -hi BlinkCmpGhostText guibg=NONE guifg=#a1a6c5 -hi BlinkCmpKindCodeium guibg=NONE guifg=#118c74 -hi BlinkCmpKindCopilot guibg=NONE guifg=#118c74 -hi BlinkCmpKindDefault guibg=NONE guifg=#6172b0 -hi BlinkCmpKindSupermaven guibg=NONE guifg=#118c74 -hi BlinkCmpKindTabNine guibg=NONE guifg=#118c74 -hi BlinkCmpLabel guibg=NONE guifg=#3760bf -hi BlinkCmpLabelDeprecated gui=strikethrough guibg=NONE guifg=#a8aecb -hi BlinkCmpLabelMatch guibg=NONE guifg=#188092 -hi Bold gui=bold guibg=NONE guifg=#3760bf -hi Character guibg=NONE guifg=#587539 -hi ColorColumn guibg=#b4b5b9 -hi Comment gui=italic guibg=NONE guifg=#848cb5 -hi Conceal guibg=NONE guifg=#68709a -hi Constant guibg=NONE guifg=#b15c00 -hi CopilotAnnotation guibg=NONE guifg=#a1a6c5 -hi CopilotSuggestion guibg=NONE guifg=#a1a6c5 -hi Cursor guibg=#3760bf guifg=#e1e2e7 -hi CursorColumn guibg=#c4c8da -hi CursorIM guibg=#3760bf guifg=#e1e2e7 -hi CursorLine guibg=#c4c8da -hi CursorLineNr gui=bold guibg=NONE guifg=#b15c00 -hi Debug guibg=NONE guifg=#b15c00 -hi DiagnosticError guibg=NONE guifg=#c64343 -hi DiagnosticHint guibg=NONE guifg=#118c74 -hi DiagnosticInfo guibg=NONE guifg=#07879d -hi DiagnosticUnderlineError gui=undercurl guibg=NONE guisp=#c64343 -hi DiagnosticUnderlineHint gui=undercurl guibg=NONE guisp=#118c74 -hi DiagnosticUnderlineInfo gui=undercurl guibg=NONE guisp=#07879d -hi DiagnosticUnderlineWarn gui=undercurl guibg=NONE guisp=#8c6c3e -hi DiagnosticUnnecessary guibg=NONE guifg=#a1a6c5 -hi DiagnosticVirtualTextError guibg=#ded2d7 guifg=#c64343 -hi DiagnosticVirtualTextHint guibg=#ccd9dc guifg=#118c74 -hi DiagnosticVirtualTextInfo guibg=#cbd9e0 guifg=#07879d -hi DiagnosticVirtualTextWarn guibg=#d9d6d6 guifg=#8c6c3e -hi DiagnosticWarn guibg=NONE guifg=#8c6c3e -hi DiffAdd guibg=#c8d6dc -hi DiffChange guibg=#d5d9e4 -hi DiffDelete guibg=#ddcace -hi DiffText guibg=#92a6d5 -hi Directory guibg=NONE guifg=#2e7de9 -hi EndOfBuffer guibg=NONE guifg=#e1e2e7 -hi Error guibg=NONE guifg=#c64343 -hi ErrorMsg guibg=NONE guifg=#c64343 -hi FloatBorder guibg=#d0d5e3 guifg=#4094a3 -hi FloatTitle guibg=#d0d5e3 guifg=#4094a3 -hi FoldColumn guibg=#e1e2e7 guifg=#848cb5 -hi Folded guibg=#a8aecb guifg=#2e7de9 -hi Foo guibg=#d20065 guifg=#3760bf -hi Function guibg=NONE guifg=#2e7de9 -hi FzfLuaBorder guibg=#d0d5e3 guifg=#4094a3 -hi FzfLuaDirPart guibg=NONE guifg=#6172b0 -hi FzfLuaFzfNormal guibg=NONE guifg=#3760bf -hi FzfLuaFzfPointer guibg=NONE guifg=#d20065 -hi FzfLuaFzfSeparator guibg=#d0d5e3 guifg=#b15c00 -hi FzfLuaNormal guibg=#d0d5e3 guifg=#3760bf -hi FzfLuaPreviewTitle guibg=#d0d5e3 guifg=#4094a3 -hi FzfLuaTitle guibg=#d0d5e3 guifg=#b15c00 -hi GitGutterAdd guibg=NONE guifg=#4197a4 -hi GitGutterAddLineNr guibg=NONE guifg=#4197a4 -hi GitGutterChange guibg=NONE guifg=#506d9c -hi GitGutterChangeLineNr guibg=NONE guifg=#506d9c -hi GitGutterDelete guibg=NONE guifg=#c47981 -hi GitGutterDeleteLineNr guibg=NONE guifg=#c47981 -hi GlyphPalette1 guibg=NONE guifg=#c64343 -hi GlyphPalette2 guibg=NONE guifg=#587539 -hi GlyphPalette3 guibg=NONE guifg=#8c6c3e -hi GlyphPalette4 guibg=NONE guifg=#2e7de9 -hi GlyphPalette6 guibg=NONE guifg=#387068 -hi GlyphPalette7 guibg=NONE guifg=#3760bf -hi GlyphPalette9 guibg=NONE guifg=#f52a65 -hi Identifier guibg=NONE guifg=#9854f1 -hi IlluminatedWordRead guibg=#a8aecb -hi IlluminatedWordText guibg=#a8aecb -hi IlluminatedWordWrite guibg=#a8aecb -hi IncSearch guibg=#b15c00 guifg=#b4b5b9 -hi Italic gui=italic guibg=NONE guifg=#3760bf -hi Keyword gui=italic guibg=NONE guifg=#007197 -hi LineNr guibg=NONE guifg=#a8aecb -hi LineNrAbove guibg=NONE guifg=#a8aecb -hi LineNrBelow guibg=NONE guifg=#a8aecb -hi LspCodeLens guibg=NONE guifg=#848cb5 -hi LspInfoBorder guibg=#d0d5e3 guifg=#4094a3 -hi LspInlayHint guibg=#d9dce5 guifg=#8990b3 -hi LspReferenceRead guibg=#a8aecb -hi LspReferenceText guibg=#a8aecb -hi LspReferenceWrite guibg=#a8aecb -hi LspSignatureActiveParameter gui=bold guibg=#d0d5e5 -hi MatchParen gui=bold guibg=NONE guifg=#b15c00 -hi MiniAnimateCursor gui=nocombine guibg=NONE -hi MiniCompletionActiveParameter gui=underline guibg=NONE -hi MiniCursorword guibg=#a8aecb -hi MiniCursorwordCurrent guibg=#a8aecb -hi MiniDepsTitleError guibg=#c47981 guifg=#b4b5b9 -hi MiniDepsTitleUpdate guibg=#4197a4 guifg=#b4b5b9 -hi MiniDiffSignAdd guibg=NONE guifg=#4197a4 -hi MiniDiffSignChange guibg=NONE guifg=#506d9c -hi MiniDiffSignDelete guibg=NONE guifg=#c47981 -hi MiniFilesFile guibg=NONE guifg=#3760bf -hi MiniFilesTitleFocused gui=bold guibg=#d0d5e3 guifg=#4094a3 -hi MiniHipatternsFixme gui=bold guibg=#c64343 guifg=#b4b5b9 -hi MiniHipatternsHack gui=bold guibg=#8c6c3e guifg=#b4b5b9 -hi MiniHipatternsNote gui=bold guibg=#118c74 guifg=#b4b5b9 -hi MiniHipatternsTodo gui=bold guibg=#07879d guifg=#b4b5b9 -hi MiniIconsAzure guibg=NONE guifg=#07879d -hi MiniIconsBlue guibg=NONE guifg=#2e7de9 -hi MiniIconsCyan guibg=NONE guifg=#118c74 -hi MiniIconsGreen guibg=NONE guifg=#587539 -hi MiniIconsGrey guibg=NONE guifg=#3760bf -hi MiniIconsOrange guibg=NONE guifg=#b15c00 -hi MiniIconsPurple guibg=NONE guifg=#7847bd -hi MiniIconsRed guibg=NONE guifg=#f52a65 -hi MiniIconsYellow guibg=NONE guifg=#8c6c3e -hi MiniIndentscopePrefix gui=nocombine guibg=NONE -hi MiniIndentscopeSymbol gui=nocombine guibg=NONE guifg=#188092 -hi MiniJump guibg=#d20065 guifg=#ffffff -hi MiniJump2dSpot gui=bold,nocombine guibg=NONE guifg=#d20065 -hi MiniJump2dSpotAhead gui=nocombine guibg=#d0d5e3 guifg=#118c74 -hi MiniJump2dSpotUnique gui=bold,nocombine guibg=NONE guifg=#b15c00 -hi MiniPickBorderText guibg=#d0d5e3 guifg=#118c74 -hi MiniPickPrompt guibg=#d0d5e3 guifg=#07879d -hi MiniStarterCurrent gui=nocombine guibg=NONE -hi MiniStarterFooter gui=italic guibg=NONE guifg=#8c6c3e -hi MiniStarterHeader guibg=NONE guifg=#2e7de9 -hi MiniStarterInactive gui=italic guibg=NONE guifg=#848cb5 -hi MiniStarterItem guibg=#e1e2e7 guifg=#3760bf -hi MiniStarterItemBullet guibg=NONE guifg=#4094a3 -hi MiniStarterItemPrefix guibg=NONE guifg=#8c6c3e -hi MiniStarterQuery guibg=NONE guifg=#07879d -hi MiniStarterSection guibg=NONE guifg=#188092 -hi MiniStatuslineDevinfo guibg=#a8aecb guifg=#6172b0 -hi MiniStatuslineFileinfo guibg=#a8aecb guifg=#6172b0 -hi MiniStatuslineFilename guibg=#c4c8da guifg=#6172b0 -hi MiniStatuslineInactive guibg=#d0d5e3 guifg=#2e7de9 -hi MiniStatuslineModeCommand gui=bold guibg=#8c6c3e guifg=#b4b5b9 -hi MiniStatuslineModeInsert gui=bold guibg=#587539 guifg=#b4b5b9 -hi MiniStatuslineModeNormal gui=bold guibg=#2e7de9 guifg=#b4b5b9 -hi MiniStatuslineModeOther gui=bold guibg=#118c74 guifg=#b4b5b9 -hi MiniStatuslineModeReplace gui=bold guibg=#f52a65 guifg=#b4b5b9 -hi MiniStatuslineModeVisual gui=bold guibg=#9854f1 guifg=#b4b5b9 -hi MiniSurround guibg=#b15c00 guifg=#b4b5b9 -hi MiniTablineCurrent guibg=#a8aecb guifg=#3760bf -hi MiniTablineFill guibg=#b4b5b9 -hi MiniTablineHidden guibg=#d0d5e3 guifg=#68709a -hi MiniTablineModifiedCurrent guibg=#a8aecb guifg=#8c6c3e -hi MiniTablineModifiedHidden guibg=#d0d5e3 guifg=#a68f71 -hi MiniTablineModifiedVisible guibg=#d0d5e3 guifg=#8c6c3e -hi MiniTablineTabpagesection guibg=#a8aecb guifg=NONE -hi MiniTablineVisible guibg=#d0d5e3 guifg=#3760bf -hi MiniTestEmphasis gui=bold guibg=NONE -hi MiniTestFail gui=bold guibg=NONE guifg=#f52a65 -hi MiniTestPass gui=bold guibg=NONE guifg=#587539 -hi MiniTrailspace guibg=#f52a65 -hi ModeMsg gui=bold guibg=NONE guifg=#6172b0 -hi MoreMsg guibg=NONE guifg=#2e7de9 -hi MsgArea guibg=NONE guifg=#6172b0 -hi NeogitBranch guibg=NONE guifg=#9854f1 -hi NeogitDiffAddHighlight guibg=#c8d6dc guifg=#4197a4 -hi NeogitDiffContextHighlight guibg=#c5c8d9 guifg=#6172b0 -hi NeogitDiffDeleteHighlight guibg=#ddcace guifg=#c47981 -hi NeogitHunkHeader guibg=#c4c8da guifg=#3760bf -hi NeogitHunkHeaderHighlight guibg=#a8aecb guifg=#2e7de9 -hi NeogitRemote guibg=NONE guifg=#7847bd -hi NeotestAdapterName gui=bold guibg=NONE guifg=#7847bd -hi NeotestBorder guibg=NONE guifg=#2e7de9 -hi NeotestDir guibg=NONE guifg=#2e7de9 -hi NeotestExpandMarker guibg=NONE guifg=#6172b0 -hi NeotestFailed guibg=NONE guifg=#f52a65 -hi NeotestFile guibg=NONE guifg=#118c74 -hi NeotestFocused guibg=NONE guifg=#8c6c3e -hi NeotestIndent guibg=NONE guifg=#6172b0 -hi NeotestMarked guibg=NONE guifg=#2e7de9 -hi NeotestNamespace guibg=NONE guifg=#38919f -hi NeotestPassed guibg=NONE guifg=#587539 -hi NeotestRunning guibg=NONE guifg=#8c6c3e -hi NeotestSkipped guibg=NONE guifg=#2e7de9 -hi NeotestTarget guibg=NONE guifg=#2e7de9 -hi NeotestTest guibg=NONE guifg=#6172b0 -hi NeotestWinSelect guibg=NONE guifg=#2e7de9 -hi NonText guibg=NONE guifg=#8990b3 -hi Normal guibg=#e1e2e7 guifg=#3760bf -hi NormalFloat guibg=#d0d5e3 guifg=#3760bf -hi NormalNC guibg=#e1e2e7 guifg=#3760bf -hi NormalSB guibg=#d0d5e3 guifg=#6172b0 -hi Operator guibg=NONE guifg=#006a83 -hi Pmenu guibg=#d0d5e3 guifg=#3760bf -hi PmenuMatch guibg=#d0d5e3 guifg=#188092 -hi PmenuMatchSel guibg=#b3b8d1 guifg=#188092 -hi PmenuSbar guibg=#c8cfe1 -hi PmenuSel guibg=#b3b8d1 -hi PmenuThumb guibg=#a8aecb -hi PreProc guibg=NONE guifg=#007197 -hi Question guibg=NONE guifg=#2e7de9 -hi QuickFixLine gui=bold guibg=#b7c1e3 -hi Search guibg=#7890dd guifg=#3760bf -hi SignColumn guibg=#e1e2e7 guifg=#a8aecb -hi SignColumnSB guibg=#d0d5e3 guifg=#a8aecb -hi Sneak guibg=#9854f1 guifg=#c4c8da -hi SneakScope guibg=#b7c1e3 -hi Special guibg=NONE guifg=#188092 -hi SpecialKey guibg=NONE guifg=#8990b3 -hi SpellBad gui=undercurl guibg=NONE guisp=#c64343 -hi SpellCap gui=undercurl guibg=NONE guisp=#8c6c3e -hi SpellLocal gui=undercurl guibg=NONE guisp=#07879d -hi SpellRare gui=undercurl guibg=NONE guisp=#118c74 -hi Statement guibg=NONE guifg=#9854f1 -hi StatusLine guibg=#d0d5e3 guifg=#6172b0 -hi StatusLineNC guibg=#d0d5e3 guifg=#a8aecb -hi String guibg=NONE guifg=#587539 -hi Substitute guibg=#f52a65 guifg=#b4b5b9 -hi TabLine guibg=#d0d5e3 guifg=#a8aecb -hi TabLineFill guibg=#b4b5b9 -hi TabLineSel guibg=#2e7de9 guifg=#b4b5b9 -hi Title gui=bold guibg=NONE guifg=#2e7de9 -hi Todo guibg=#8c6c3e guifg=#e1e2e7 -hi Type guibg=NONE guifg=#188092 -hi Underlined gui=underline guibg=NONE -hi VertSplit guibg=NONE guifg=#b4b5b9 -hi VimwikiHR guibg=NONE guifg=#8c6c3e -hi VimwikiHeader1 gui=bold guibg=NONE guifg=#2e7de9 -hi VimwikiHeader2 gui=bold guibg=NONE guifg=#8c6c3e -hi VimwikiHeader3 gui=bold guibg=NONE guifg=#587539 -hi VimwikiHeader4 gui=bold guibg=NONE guifg=#118c74 -hi VimwikiHeader5 gui=bold guibg=NONE guifg=#9854f1 -hi VimwikiHeader6 gui=bold guibg=NONE guifg=#7847bd -hi VimwikiHeader7 gui=bold guibg=NONE guifg=#b15c00 -hi VimwikiHeader8 gui=bold guibg=NONE guifg=#f52a65 -hi VimwikiHeaderChar guibg=NONE guifg=#8c6c3e -hi VimwikiLink guibg=NONE guifg=#2e7de9 -hi VimwikiList guibg=NONE guifg=#b15c00 -hi VimwikiMarkers guibg=NONE guifg=#2e7de9 -hi VimwikiTag guibg=NONE guifg=#587539 -hi Visual guibg=#b7c1e3 -hi VisualNOS guibg=#b7c1e3 -hi WarningMsg guibg=NONE guifg=#8c6c3e -hi Whitespace guibg=NONE guifg=#a8aecb -hi WildMenu guibg=#b7c1e3 -hi WinSeparator gui=bold guibg=NONE guifg=#b4b5b9 -hi debugBreakpoint guibg=#cbd9e0 guifg=#07879d -hi debugPC guibg=#d0d5e3 -hi diffAdded guibg=NONE guifg=#4197a4 -hi diffChanged guibg=NONE guifg=#506d9c -hi diffFile guibg=NONE guifg=#2e7de9 -hi diffIndexLine guibg=NONE guifg=#9854f1 -hi diffLine guibg=NONE guifg=#848cb5 -hi diffNewFile guibg=NONE guifg=#b15c00 -hi diffOldFile guibg=NONE guifg=#8c6c3e -hi diffRemoved guibg=NONE guifg=#c47981 -hi healthError guibg=NONE guifg=#c64343 -hi healthSuccess guibg=NONE guifg=#387068 -hi healthWarning guibg=NONE guifg=#8c6c3e -hi helpCommand guibg=#a1a6c5 guifg=#2e7de9 -hi helpExample guibg=NONE guifg=#848cb5 -hi htmlH1 gui=bold guibg=NONE guifg=#9854f1 -hi htmlH2 gui=bold guibg=NONE guifg=#2e7de9 -hi illuminatedCurWord guibg=#a8aecb -hi illuminatedWord guibg=#a8aecb -hi lCursor guibg=#3760bf guifg=#e1e2e7 -hi qfFileName guibg=NONE guifg=#2e7de9 -hi qfLineNr guibg=NONE guifg=#68709a -hi! link CurSearch IncSearch -hi! link Delimiter Special -hi! link FzfLuaCursor IncSearch -hi! link FzfLuaFilePart FzfLuaFzfNormal -hi! link FzfLuaFzfCursorLine Visual -hi! link FzfLuaHeaderText Title -hi! link FzfLuaPath Directory -hi! link LspKindColor Special -hi! link LspKindEvent Special -hi! link LspKindFile Normal -hi! link LspKindFolder Directory -hi! link LspKindSnippet Conceal -hi! link MiniAnimateNormalFloat NormalFloat -hi! link MiniClueBorder FloatBorder -hi! link MiniClueDescSingle NormalFloat -hi! link MiniClueTitle FloatTitle -hi! link MiniDepsChangeAdded diffAdded -hi! link MiniDepsChangeRemoved diffRemoved -hi! link MiniDepsHint DiagnosticHint -hi! link MiniDepsInfo DiagnosticInfo -hi! link MiniDepsMsgBreaking DiagnosticWarn -hi! link MiniDepsPlaceholder Comment -hi! link MiniDepsTitle Title -hi! link MiniDepsTitleSame Comment -hi! link MiniDiffOverAdd DiffAdd -hi! link MiniDiffOverChange DiffText -hi! link MiniDiffOverContext DiffChange -hi! link MiniDiffOverDelete DiffDelete -hi! link MiniFilesBorder FloatBorder -hi! link MiniFilesCursorLine CursorLine -hi! link MiniFilesDirectory Directory -hi! link MiniFilesNormal NormalFloat -hi! link MiniFilesTitle FloatTitle -hi! link MiniJump2dDim Comment -hi! link MiniMapNormal NormalFloat -hi! link MiniMapSymbolCount Special -hi! link MiniMapSymbolLine Title -hi! link MiniNotifyBorder FloatBorder -hi! link MiniNotifyNormal NormalFloat -hi! link MiniNotifyTitle FloatTitle -hi! link MiniOperatorsExchangeFrom IncSearch -hi! link MiniPickBorder FloatBorder -hi! link MiniPickIconDirectory Directory -hi! link MiniPickMatchCurrent CursorLine -hi! link MiniPickMatchMarked Visual -hi! link MiniPickNormal NormalFloat -hi! link MiniPickPreviewLine CursorLine -hi! link MiniPickPreviewRegion IncSearch -hi! link WinBar StatusLine -hi! link WinBarNC StatusLineNC \ No newline at end of file diff --git a/extras/vim/colors/nekonight-moon.vim b/extras/vim/colors/nekonight-moon.vim deleted file mode 100644 index 0025b6c..0000000 --- a/extras/vim/colors/nekonight-moon.vim +++ /dev/null @@ -1,317 +0,0 @@ -let g:colors_name = "nekonight-moon" -hi clear - -hi ALEErrorSign guibg=NONE guifg=#c53b53 -hi ALEWarningSign guibg=NONE guifg=#ffc777 -hi BlinkCmpDoc guibg=#1e2030 guifg=#c8d3f5 -hi BlinkCmpDocBorder guibg=#1e2030 guifg=#589ed7 -hi BlinkCmpGhostText guibg=NONE guifg=#444a73 -hi BlinkCmpKindCodeium guibg=NONE guifg=#4fd6be -hi BlinkCmpKindCopilot guibg=NONE guifg=#4fd6be -hi BlinkCmpKindDefault guibg=NONE guifg=#828bb8 -hi BlinkCmpKindSupermaven guibg=NONE guifg=#4fd6be -hi BlinkCmpKindTabNine guibg=NONE guifg=#4fd6be -hi BlinkCmpLabel guibg=NONE guifg=#c8d3f5 -hi BlinkCmpLabelDeprecated gui=strikethrough guibg=NONE guifg=#3b4261 -hi BlinkCmpLabelMatch guibg=NONE guifg=#65bcff -hi Bold gui=bold guibg=NONE guifg=#c8d3f5 -hi Character guibg=NONE guifg=#c3e88d -hi ColorColumn guibg=#1b1d2b -hi Comment gui=italic guibg=NONE guifg=#636da6 -hi Conceal guibg=NONE guifg=#737aa2 -hi Constant guibg=NONE guifg=#ff966c -hi CopilotAnnotation guibg=NONE guifg=#444a73 -hi CopilotSuggestion guibg=NONE guifg=#444a73 -hi Cursor guibg=#c8d3f5 guifg=#222436 -hi CursorColumn guibg=#2f334d -hi CursorIM guibg=#c8d3f5 guifg=#222436 -hi CursorLine guibg=#2f334d -hi CursorLineNr gui=bold guibg=NONE guifg=#ff966c -hi Debug guibg=NONE guifg=#ff966c -hi DiagnosticError guibg=NONE guifg=#c53b53 -hi DiagnosticHint guibg=NONE guifg=#4fd6be -hi DiagnosticInfo guibg=NONE guifg=#0db9d7 -hi DiagnosticUnderlineError gui=undercurl guibg=NONE guisp=#c53b53 -hi DiagnosticUnderlineHint gui=undercurl guibg=NONE guisp=#4fd6be -hi DiagnosticUnderlineInfo gui=undercurl guibg=NONE guisp=#0db9d7 -hi DiagnosticUnderlineWarn gui=undercurl guibg=NONE guisp=#ffc777 -hi DiagnosticUnnecessary guibg=NONE guifg=#444a73 -hi DiagnosticVirtualTextError guibg=#322639 guifg=#c53b53 -hi DiagnosticVirtualTextHint guibg=#273644 guifg=#4fd6be -hi DiagnosticVirtualTextInfo guibg=#203346 guifg=#0db9d7 -hi DiagnosticVirtualTextWarn guibg=#38343d guifg=#ffc777 -hi DiagnosticWarn guibg=NONE guifg=#ffc777 -hi DiffAdd guibg=#273849 -hi DiffChange guibg=#252a3f -hi DiffDelete guibg=#3a273a -hi DiffText guibg=#394b70 -hi Directory guibg=NONE guifg=#82aaff -hi EndOfBuffer guibg=NONE guifg=#222436 -hi Error guibg=NONE guifg=#c53b53 -hi ErrorMsg guibg=NONE guifg=#c53b53 -hi FloatBorder guibg=#1e2030 guifg=#589ed7 -hi FloatTitle guibg=#1e2030 guifg=#589ed7 -hi FoldColumn guibg=#222436 guifg=#636da6 -hi Folded guibg=#3b4261 guifg=#82aaff -hi Foo guibg=#ff007c guifg=#c8d3f5 -hi Function guibg=NONE guifg=#82aaff -hi FzfLuaBorder guibg=#1e2030 guifg=#589ed7 -hi FzfLuaDirPart guibg=NONE guifg=#828bb8 -hi FzfLuaFzfNormal guibg=NONE guifg=#c8d3f5 -hi FzfLuaFzfPointer guibg=NONE guifg=#ff007c -hi FzfLuaFzfSeparator guibg=#1e2030 guifg=#ff966c -hi FzfLuaNormal guibg=#1e2030 guifg=#c8d3f5 -hi FzfLuaPreviewTitle guibg=#1e2030 guifg=#589ed7 -hi FzfLuaTitle guibg=#1e2030 guifg=#ff966c -hi GitGutterAdd guibg=NONE guifg=#b8db87 -hi GitGutterAddLineNr guibg=NONE guifg=#b8db87 -hi GitGutterChange guibg=NONE guifg=#7ca1f2 -hi GitGutterChangeLineNr guibg=NONE guifg=#7ca1f2 -hi GitGutterDelete guibg=NONE guifg=#e26a75 -hi GitGutterDeleteLineNr guibg=NONE guifg=#e26a75 -hi GlyphPalette1 guibg=NONE guifg=#c53b53 -hi GlyphPalette2 guibg=NONE guifg=#c3e88d -hi GlyphPalette3 guibg=NONE guifg=#ffc777 -hi GlyphPalette4 guibg=NONE guifg=#82aaff -hi GlyphPalette6 guibg=NONE guifg=#4fd6be -hi GlyphPalette7 guibg=NONE guifg=#c8d3f5 -hi GlyphPalette9 guibg=NONE guifg=#ff757f -hi Identifier guibg=NONE guifg=#c099ff -hi IlluminatedWordRead guibg=#3b4261 -hi IlluminatedWordText guibg=#3b4261 -hi IlluminatedWordWrite guibg=#3b4261 -hi IncSearch guibg=#ff966c guifg=#1b1d2b -hi Italic gui=italic guibg=NONE guifg=#c8d3f5 -hi Keyword gui=italic guibg=NONE guifg=#86e1fc -hi LineNr guibg=NONE guifg=#3b4261 -hi LineNrAbove guibg=NONE guifg=#3b4261 -hi LineNrBelow guibg=NONE guifg=#3b4261 -hi LspCodeLens guibg=NONE guifg=#636da6 -hi LspInfoBorder guibg=#1e2030 guifg=#589ed7 -hi LspInlayHint guibg=#24283c guifg=#545c7e -hi LspReferenceRead guibg=#3b4261 -hi LspReferenceText guibg=#3b4261 -hi LspReferenceWrite guibg=#3b4261 -hi LspSignatureActiveParameter gui=bold guibg=#262f50 -hi MatchParen gui=bold guibg=NONE guifg=#ff966c -hi MiniAnimateCursor gui=nocombine guibg=NONE -hi MiniCompletionActiveParameter gui=underline guibg=NONE -hi MiniCursorword guibg=#3b4261 -hi MiniCursorwordCurrent guibg=#3b4261 -hi MiniDepsTitleError guibg=#e26a75 guifg=#1b1d2b -hi MiniDepsTitleUpdate guibg=#b8db87 guifg=#1b1d2b -hi MiniDiffSignAdd guibg=NONE guifg=#b8db87 -hi MiniDiffSignChange guibg=NONE guifg=#7ca1f2 -hi MiniDiffSignDelete guibg=NONE guifg=#e26a75 -hi MiniFilesFile guibg=NONE guifg=#c8d3f5 -hi MiniFilesTitleFocused gui=bold guibg=#1e2030 guifg=#589ed7 -hi MiniHipatternsFixme gui=bold guibg=#c53b53 guifg=#1b1d2b -hi MiniHipatternsHack gui=bold guibg=#ffc777 guifg=#1b1d2b -hi MiniHipatternsNote gui=bold guibg=#4fd6be guifg=#1b1d2b -hi MiniHipatternsTodo gui=bold guibg=#0db9d7 guifg=#1b1d2b -hi MiniIconsAzure guibg=NONE guifg=#0db9d7 -hi MiniIconsBlue guibg=NONE guifg=#82aaff -hi MiniIconsCyan guibg=NONE guifg=#4fd6be -hi MiniIconsGreen guibg=NONE guifg=#c3e88d -hi MiniIconsGrey guibg=NONE guifg=#c8d3f5 -hi MiniIconsOrange guibg=NONE guifg=#ff966c -hi MiniIconsPurple guibg=NONE guifg=#fca7ea -hi MiniIconsRed guibg=NONE guifg=#ff757f -hi MiniIconsYellow guibg=NONE guifg=#ffc777 -hi MiniIndentscopePrefix gui=nocombine guibg=NONE -hi MiniIndentscopeSymbol gui=nocombine guibg=NONE guifg=#65bcff -hi MiniJump guibg=#ff007c guifg=#ffffff -hi MiniJump2dSpot gui=bold,nocombine guibg=NONE guifg=#ff007c -hi MiniJump2dSpotAhead gui=nocombine guibg=#1e2030 guifg=#4fd6be -hi MiniJump2dSpotUnique gui=bold,nocombine guibg=NONE guifg=#ff966c -hi MiniPickBorderText guibg=#1e2030 guifg=#4fd6be -hi MiniPickPrompt guibg=#1e2030 guifg=#0db9d7 -hi MiniStarterCurrent gui=nocombine guibg=NONE -hi MiniStarterFooter gui=italic guibg=NONE guifg=#ffc777 -hi MiniStarterHeader guibg=NONE guifg=#82aaff -hi MiniStarterInactive gui=italic guibg=NONE guifg=#636da6 -hi MiniStarterItem guibg=#222436 guifg=#c8d3f5 -hi MiniStarterItemBullet guibg=NONE guifg=#589ed7 -hi MiniStarterItemPrefix guibg=NONE guifg=#ffc777 -hi MiniStarterQuery guibg=NONE guifg=#0db9d7 -hi MiniStarterSection guibg=NONE guifg=#65bcff -hi MiniStatuslineDevinfo guibg=#3b4261 guifg=#828bb8 -hi MiniStatuslineFileinfo guibg=#3b4261 guifg=#828bb8 -hi MiniStatuslineFilename guibg=#2f334d guifg=#828bb8 -hi MiniStatuslineInactive guibg=#1e2030 guifg=#82aaff -hi MiniStatuslineModeCommand gui=bold guibg=#ffc777 guifg=#1b1d2b -hi MiniStatuslineModeInsert gui=bold guibg=#c3e88d guifg=#1b1d2b -hi MiniStatuslineModeNormal gui=bold guibg=#82aaff guifg=#1b1d2b -hi MiniStatuslineModeOther gui=bold guibg=#4fd6be guifg=#1b1d2b -hi MiniStatuslineModeReplace gui=bold guibg=#ff757f guifg=#1b1d2b -hi MiniStatuslineModeVisual gui=bold guibg=#c099ff guifg=#1b1d2b -hi MiniSurround guibg=#ff966c guifg=#1b1d2b -hi MiniTablineCurrent guibg=#3b4261 guifg=#c8d3f5 -hi MiniTablineFill guibg=#1b1d2b -hi MiniTablineHidden guibg=#1e2030 guifg=#737aa2 -hi MiniTablineModifiedCurrent guibg=#3b4261 guifg=#ffc777 -hi MiniTablineModifiedHidden guibg=#1e2030 guifg=#bd9664 -hi MiniTablineModifiedVisible guibg=#1e2030 guifg=#ffc777 -hi MiniTablineTabpagesection guibg=#3b4261 guifg=NONE -hi MiniTablineVisible guibg=#1e2030 guifg=#c8d3f5 -hi MiniTestEmphasis gui=bold guibg=NONE -hi MiniTestFail gui=bold guibg=NONE guifg=#ff757f -hi MiniTestPass gui=bold guibg=NONE guifg=#c3e88d -hi MiniTrailspace guibg=#ff757f -hi ModeMsg gui=bold guibg=NONE guifg=#828bb8 -hi MoreMsg guibg=NONE guifg=#82aaff -hi MsgArea guibg=NONE guifg=#828bb8 -hi NeogitBranch guibg=NONE guifg=#c099ff -hi NeogitDiffAddHighlight guibg=#273849 guifg=#b8db87 -hi NeogitDiffContextHighlight guibg=#2f334c guifg=#828bb8 -hi NeogitDiffDeleteHighlight guibg=#3a273a guifg=#e26a75 -hi NeogitHunkHeader guibg=#2f334d guifg=#c8d3f5 -hi NeogitHunkHeaderHighlight guibg=#3b4261 guifg=#82aaff -hi NeogitRemote guibg=NONE guifg=#fca7ea -hi NeotestAdapterName gui=bold guibg=NONE guifg=#fca7ea -hi NeotestBorder guibg=NONE guifg=#82aaff -hi NeotestDir guibg=NONE guifg=#82aaff -hi NeotestExpandMarker guibg=NONE guifg=#828bb8 -hi NeotestFailed guibg=NONE guifg=#ff757f -hi NeotestFile guibg=NONE guifg=#4fd6be -hi NeotestFocused guibg=NONE guifg=#ffc777 -hi NeotestIndent guibg=NONE guifg=#828bb8 -hi NeotestMarked guibg=NONE guifg=#82aaff -hi NeotestNamespace guibg=NONE guifg=#41a6b5 -hi NeotestPassed guibg=NONE guifg=#c3e88d -hi NeotestRunning guibg=NONE guifg=#ffc777 -hi NeotestSkipped guibg=NONE guifg=#82aaff -hi NeotestTarget guibg=NONE guifg=#82aaff -hi NeotestTest guibg=NONE guifg=#828bb8 -hi NeotestWinSelect guibg=NONE guifg=#82aaff -hi NonText guibg=NONE guifg=#545c7e -hi Normal guibg=#222436 guifg=#c8d3f5 -hi NormalFloat guibg=#1e2030 guifg=#c8d3f5 -hi NormalNC guibg=#222436 guifg=#c8d3f5 -hi NormalSB guibg=#1e2030 guifg=#828bb8 -hi Operator guibg=NONE guifg=#89ddff -hi Pmenu guibg=#1e2030 guifg=#c8d3f5 -hi PmenuMatch guibg=#1e2030 guifg=#65bcff -hi PmenuMatchSel guibg=#363c58 guifg=#65bcff -hi PmenuSbar guibg=#27293a -hi PmenuSel guibg=#363c58 -hi PmenuThumb guibg=#3b4261 -hi PreProc guibg=NONE guifg=#86e1fc -hi Question guibg=NONE guifg=#82aaff -hi QuickFixLine gui=bold guibg=#2d3f76 -hi Search guibg=#3e68d7 guifg=#c8d3f5 -hi SignColumn guibg=#222436 guifg=#3b4261 -hi SignColumnSB guibg=#1e2030 guifg=#3b4261 -hi Sneak guibg=#c099ff guifg=#2f334d -hi SneakScope guibg=#2d3f76 -hi Special guibg=NONE guifg=#65bcff -hi SpecialKey guibg=NONE guifg=#545c7e -hi SpellBad gui=undercurl guibg=NONE guisp=#c53b53 -hi SpellCap gui=undercurl guibg=NONE guisp=#ffc777 -hi SpellLocal gui=undercurl guibg=NONE guisp=#0db9d7 -hi SpellRare gui=undercurl guibg=NONE guisp=#4fd6be -hi Statement guibg=NONE guifg=#c099ff -hi StatusLine guibg=#1e2030 guifg=#828bb8 -hi StatusLineNC guibg=#1e2030 guifg=#3b4261 -hi String guibg=NONE guifg=#c3e88d -hi Substitute guibg=#ff757f guifg=#1b1d2b -hi TabLine guibg=#1e2030 guifg=#3b4261 -hi TabLineFill guibg=#1b1d2b -hi TabLineSel guibg=#82aaff guifg=#1b1d2b -hi Title gui=bold guibg=NONE guifg=#82aaff -hi Todo guibg=#ffc777 guifg=#222436 -hi Type guibg=NONE guifg=#65bcff -hi Underlined gui=underline guibg=NONE -hi VertSplit guibg=NONE guifg=#1b1d2b -hi VimwikiHR guibg=NONE guifg=#ffc777 -hi VimwikiHeader1 gui=bold guibg=NONE guifg=#82aaff -hi VimwikiHeader2 gui=bold guibg=NONE guifg=#ffc777 -hi VimwikiHeader3 gui=bold guibg=NONE guifg=#c3e88d -hi VimwikiHeader4 gui=bold guibg=NONE guifg=#4fd6be -hi VimwikiHeader5 gui=bold guibg=NONE guifg=#c099ff -hi VimwikiHeader6 gui=bold guibg=NONE guifg=#fca7ea -hi VimwikiHeader7 gui=bold guibg=NONE guifg=#ff966c -hi VimwikiHeader8 gui=bold guibg=NONE guifg=#ff757f -hi VimwikiHeaderChar guibg=NONE guifg=#ffc777 -hi VimwikiLink guibg=NONE guifg=#82aaff -hi VimwikiList guibg=NONE guifg=#ff966c -hi VimwikiMarkers guibg=NONE guifg=#82aaff -hi VimwikiTag guibg=NONE guifg=#c3e88d -hi Visual guibg=#2d3f76 -hi VisualNOS guibg=#2d3f76 -hi WarningMsg guibg=NONE guifg=#ffc777 -hi Whitespace guibg=NONE guifg=#3b4261 -hi WildMenu guibg=#2d3f76 -hi WinSeparator gui=bold guibg=NONE guifg=#1b1d2b -hi debugBreakpoint guibg=#203346 guifg=#0db9d7 -hi debugPC guibg=#1e2030 -hi diffAdded guibg=NONE guifg=#b8db87 -hi diffChanged guibg=NONE guifg=#7ca1f2 -hi diffFile guibg=NONE guifg=#82aaff -hi diffIndexLine guibg=NONE guifg=#c099ff -hi diffLine guibg=NONE guifg=#636da6 -hi diffNewFile guibg=NONE guifg=#ff966c -hi diffOldFile guibg=NONE guifg=#ffc777 -hi diffRemoved guibg=NONE guifg=#e26a75 -hi healthError guibg=NONE guifg=#c53b53 -hi healthSuccess guibg=NONE guifg=#4fd6be -hi healthWarning guibg=NONE guifg=#ffc777 -hi helpCommand guibg=#444a73 guifg=#82aaff -hi helpExample guibg=NONE guifg=#636da6 -hi htmlH1 gui=bold guibg=NONE guifg=#c099ff -hi htmlH2 gui=bold guibg=NONE guifg=#82aaff -hi illuminatedCurWord guibg=#3b4261 -hi illuminatedWord guibg=#3b4261 -hi lCursor guibg=#c8d3f5 guifg=#222436 -hi qfFileName guibg=NONE guifg=#82aaff -hi qfLineNr guibg=NONE guifg=#737aa2 -hi! link CurSearch IncSearch -hi! link Delimiter Special -hi! link FzfLuaCursor IncSearch -hi! link FzfLuaFilePart FzfLuaFzfNormal -hi! link FzfLuaFzfCursorLine Visual -hi! link FzfLuaHeaderText Title -hi! link FzfLuaPath Directory -hi! link LspKindColor Special -hi! link LspKindEvent Special -hi! link LspKindFile Normal -hi! link LspKindFolder Directory -hi! link LspKindSnippet Conceal -hi! link MiniAnimateNormalFloat NormalFloat -hi! link MiniClueBorder FloatBorder -hi! link MiniClueDescSingle NormalFloat -hi! link MiniClueTitle FloatTitle -hi! link MiniDepsChangeAdded diffAdded -hi! link MiniDepsChangeRemoved diffRemoved -hi! link MiniDepsHint DiagnosticHint -hi! link MiniDepsInfo DiagnosticInfo -hi! link MiniDepsMsgBreaking DiagnosticWarn -hi! link MiniDepsPlaceholder Comment -hi! link MiniDepsTitle Title -hi! link MiniDepsTitleSame Comment -hi! link MiniDiffOverAdd DiffAdd -hi! link MiniDiffOverChange DiffText -hi! link MiniDiffOverContext DiffChange -hi! link MiniDiffOverDelete DiffDelete -hi! link MiniFilesBorder FloatBorder -hi! link MiniFilesCursorLine CursorLine -hi! link MiniFilesDirectory Directory -hi! link MiniFilesNormal NormalFloat -hi! link MiniFilesTitle FloatTitle -hi! link MiniJump2dDim Comment -hi! link MiniMapNormal NormalFloat -hi! link MiniMapSymbolCount Special -hi! link MiniMapSymbolLine Title -hi! link MiniNotifyBorder FloatBorder -hi! link MiniNotifyNormal NormalFloat -hi! link MiniNotifyTitle FloatTitle -hi! link MiniOperatorsExchangeFrom IncSearch -hi! link MiniPickBorder FloatBorder -hi! link MiniPickIconDirectory Directory -hi! link MiniPickMatchCurrent CursorLine -hi! link MiniPickMatchMarked Visual -hi! link MiniPickNormal NormalFloat -hi! link MiniPickPreviewLine CursorLine -hi! link MiniPickPreviewRegion IncSearch -hi! link WinBar StatusLine -hi! link WinBarNC StatusLineNC \ No newline at end of file diff --git a/extras/vim/colors/nekonight-night.vim b/extras/vim/colors/nekonight-night.vim deleted file mode 100644 index c946744..0000000 --- a/extras/vim/colors/nekonight-night.vim +++ /dev/null @@ -1,317 +0,0 @@ -let g:colors_name = "nekonight-night" -hi clear - -hi ALEErrorSign guibg=NONE guifg=#db4b4b -hi ALEWarningSign guibg=NONE guifg=#e0af68 -hi BlinkCmpDoc guibg=#16161e guifg=#c0caf5 -hi BlinkCmpDocBorder guibg=#16161e guifg=#27a1b9 -hi BlinkCmpGhostText guibg=NONE guifg=#414868 -hi BlinkCmpKindCodeium guibg=NONE guifg=#1abc9c -hi BlinkCmpKindCopilot guibg=NONE guifg=#1abc9c -hi BlinkCmpKindDefault guibg=NONE guifg=#a9b1d6 -hi BlinkCmpKindSupermaven guibg=NONE guifg=#1abc9c -hi BlinkCmpKindTabNine guibg=NONE guifg=#1abc9c -hi BlinkCmpLabel guibg=NONE guifg=#c0caf5 -hi BlinkCmpLabelDeprecated gui=strikethrough guibg=NONE guifg=#3b4261 -hi BlinkCmpLabelMatch guibg=NONE guifg=#2ac3de -hi Bold gui=bold guibg=NONE guifg=#c0caf5 -hi Character guibg=NONE guifg=#9ece6a -hi ColorColumn guibg=#15161e -hi Comment gui=italic guibg=NONE guifg=#565f89 -hi Conceal guibg=NONE guifg=#737aa2 -hi Constant guibg=NONE guifg=#ff9e64 -hi CopilotAnnotation guibg=NONE guifg=#414868 -hi CopilotSuggestion guibg=NONE guifg=#414868 -hi Cursor guibg=#c0caf5 guifg=#1a1b26 -hi CursorColumn guibg=#292e42 -hi CursorIM guibg=#c0caf5 guifg=#1a1b26 -hi CursorLine guibg=#292e42 -hi CursorLineNr gui=bold guibg=NONE guifg=#ff9e64 -hi Debug guibg=NONE guifg=#ff9e64 -hi DiagnosticError guibg=NONE guifg=#db4b4b -hi DiagnosticHint guibg=NONE guifg=#1abc9c -hi DiagnosticInfo guibg=NONE guifg=#0db9d7 -hi DiagnosticUnderlineError gui=undercurl guibg=NONE guisp=#db4b4b -hi DiagnosticUnderlineHint gui=undercurl guibg=NONE guisp=#1abc9c -hi DiagnosticUnderlineInfo gui=undercurl guibg=NONE guisp=#0db9d7 -hi DiagnosticUnderlineWarn gui=undercurl guibg=NONE guisp=#e0af68 -hi DiagnosticUnnecessary guibg=NONE guifg=#414868 -hi DiagnosticVirtualTextError guibg=#2d202a guifg=#db4b4b -hi DiagnosticVirtualTextHint guibg=#1a2b32 guifg=#1abc9c -hi DiagnosticVirtualTextInfo guibg=#192b38 guifg=#0db9d7 -hi DiagnosticVirtualTextWarn guibg=#2e2a2d guifg=#e0af68 -hi DiagnosticWarn guibg=NONE guifg=#e0af68 -hi DiffAdd guibg=#20303b -hi DiffChange guibg=#1f2231 -hi DiffDelete guibg=#37222c -hi DiffText guibg=#394b70 -hi Directory guibg=NONE guifg=#7aa2f7 -hi EndOfBuffer guibg=NONE guifg=#1a1b26 -hi Error guibg=NONE guifg=#db4b4b -hi ErrorMsg guibg=NONE guifg=#db4b4b -hi FloatBorder guibg=#16161e guifg=#27a1b9 -hi FloatTitle guibg=#16161e guifg=#27a1b9 -hi FoldColumn guibg=#1a1b26 guifg=#565f89 -hi Folded guibg=#3b4261 guifg=#7aa2f7 -hi Foo guibg=#ff007c guifg=#c0caf5 -hi Function guibg=NONE guifg=#7aa2f7 -hi FzfLuaBorder guibg=#16161e guifg=#27a1b9 -hi FzfLuaDirPart guibg=NONE guifg=#a9b1d6 -hi FzfLuaFzfNormal guibg=NONE guifg=#c0caf5 -hi FzfLuaFzfPointer guibg=NONE guifg=#ff007c -hi FzfLuaFzfSeparator guibg=#16161e guifg=#ff9e64 -hi FzfLuaNormal guibg=#16161e guifg=#c0caf5 -hi FzfLuaPreviewTitle guibg=#16161e guifg=#27a1b9 -hi FzfLuaTitle guibg=#16161e guifg=#ff9e64 -hi GitGutterAdd guibg=NONE guifg=#449dab -hi GitGutterAddLineNr guibg=NONE guifg=#449dab -hi GitGutterChange guibg=NONE guifg=#6183bb -hi GitGutterChangeLineNr guibg=NONE guifg=#6183bb -hi GitGutterDelete guibg=NONE guifg=#914c54 -hi GitGutterDeleteLineNr guibg=NONE guifg=#914c54 -hi GlyphPalette1 guibg=NONE guifg=#db4b4b -hi GlyphPalette2 guibg=NONE guifg=#9ece6a -hi GlyphPalette3 guibg=NONE guifg=#e0af68 -hi GlyphPalette4 guibg=NONE guifg=#7aa2f7 -hi GlyphPalette6 guibg=NONE guifg=#73daca -hi GlyphPalette7 guibg=NONE guifg=#c0caf5 -hi GlyphPalette9 guibg=NONE guifg=#f7768e -hi Identifier guibg=NONE guifg=#bb9af7 -hi IlluminatedWordRead guibg=#3b4261 -hi IlluminatedWordText guibg=#3b4261 -hi IlluminatedWordWrite guibg=#3b4261 -hi IncSearch guibg=#ff9e64 guifg=#15161e -hi Italic gui=italic guibg=NONE guifg=#c0caf5 -hi Keyword gui=italic guibg=NONE guifg=#7dcfff -hi LineNr guibg=NONE guifg=#3b4261 -hi LineNrAbove guibg=NONE guifg=#3b4261 -hi LineNrBelow guibg=NONE guifg=#3b4261 -hi LspCodeLens guibg=NONE guifg=#565f89 -hi LspInfoBorder guibg=#16161e guifg=#27a1b9 -hi LspInlayHint guibg=#1d202d guifg=#545c7e -hi LspReferenceRead guibg=#3b4261 -hi LspReferenceText guibg=#3b4261 -hi LspReferenceWrite guibg=#3b4261 -hi LspSignatureActiveParameter gui=bold guibg=#20253a -hi MatchParen gui=bold guibg=NONE guifg=#ff9e64 -hi MiniAnimateCursor gui=nocombine guibg=NONE -hi MiniCompletionActiveParameter gui=underline guibg=NONE -hi MiniCursorword guibg=#3b4261 -hi MiniCursorwordCurrent guibg=#3b4261 -hi MiniDepsTitleError guibg=#914c54 guifg=#15161e -hi MiniDepsTitleUpdate guibg=#449dab guifg=#15161e -hi MiniDiffSignAdd guibg=NONE guifg=#449dab -hi MiniDiffSignChange guibg=NONE guifg=#6183bb -hi MiniDiffSignDelete guibg=NONE guifg=#914c54 -hi MiniFilesFile guibg=NONE guifg=#c0caf5 -hi MiniFilesTitleFocused gui=bold guibg=#16161e guifg=#27a1b9 -hi MiniHipatternsFixme gui=bold guibg=#db4b4b guifg=#15161e -hi MiniHipatternsHack gui=bold guibg=#e0af68 guifg=#15161e -hi MiniHipatternsNote gui=bold guibg=#1abc9c guifg=#15161e -hi MiniHipatternsTodo gui=bold guibg=#0db9d7 guifg=#15161e -hi MiniIconsAzure guibg=NONE guifg=#0db9d7 -hi MiniIconsBlue guibg=NONE guifg=#7aa2f7 -hi MiniIconsCyan guibg=NONE guifg=#1abc9c -hi MiniIconsGreen guibg=NONE guifg=#9ece6a -hi MiniIconsGrey guibg=NONE guifg=#c0caf5 -hi MiniIconsOrange guibg=NONE guifg=#ff9e64 -hi MiniIconsPurple guibg=NONE guifg=#9d7cd8 -hi MiniIconsRed guibg=NONE guifg=#f7768e -hi MiniIconsYellow guibg=NONE guifg=#e0af68 -hi MiniIndentscopePrefix gui=nocombine guibg=NONE -hi MiniIndentscopeSymbol gui=nocombine guibg=NONE guifg=#2ac3de -hi MiniJump guibg=#ff007c guifg=#ffffff -hi MiniJump2dSpot gui=bold,nocombine guibg=NONE guifg=#ff007c -hi MiniJump2dSpotAhead gui=nocombine guibg=#16161e guifg=#1abc9c -hi MiniJump2dSpotUnique gui=bold,nocombine guibg=NONE guifg=#ff9e64 -hi MiniPickBorderText guibg=#16161e guifg=#1abc9c -hi MiniPickPrompt guibg=#16161e guifg=#0db9d7 -hi MiniStarterCurrent gui=nocombine guibg=NONE -hi MiniStarterFooter gui=italic guibg=NONE guifg=#e0af68 -hi MiniStarterHeader guibg=NONE guifg=#7aa2f7 -hi MiniStarterInactive gui=italic guibg=NONE guifg=#565f89 -hi MiniStarterItem guibg=#1a1b26 guifg=#c0caf5 -hi MiniStarterItemBullet guibg=NONE guifg=#27a1b9 -hi MiniStarterItemPrefix guibg=NONE guifg=#e0af68 -hi MiniStarterQuery guibg=NONE guifg=#0db9d7 -hi MiniStarterSection guibg=NONE guifg=#2ac3de -hi MiniStatuslineDevinfo guibg=#3b4261 guifg=#a9b1d6 -hi MiniStatuslineFileinfo guibg=#3b4261 guifg=#a9b1d6 -hi MiniStatuslineFilename guibg=#292e42 guifg=#a9b1d6 -hi MiniStatuslineInactive guibg=#16161e guifg=#7aa2f7 -hi MiniStatuslineModeCommand gui=bold guibg=#e0af68 guifg=#15161e -hi MiniStatuslineModeInsert gui=bold guibg=#9ece6a guifg=#15161e -hi MiniStatuslineModeNormal gui=bold guibg=#7aa2f7 guifg=#15161e -hi MiniStatuslineModeOther gui=bold guibg=#1abc9c guifg=#15161e -hi MiniStatuslineModeReplace gui=bold guibg=#f7768e guifg=#15161e -hi MiniStatuslineModeVisual gui=bold guibg=#bb9af7 guifg=#15161e -hi MiniSurround guibg=#ff9e64 guifg=#15161e -hi MiniTablineCurrent guibg=#3b4261 guifg=#c0caf5 -hi MiniTablineFill guibg=#15161e -hi MiniTablineHidden guibg=#16161e guifg=#737aa2 -hi MiniTablineModifiedCurrent guibg=#3b4261 guifg=#e0af68 -hi MiniTablineModifiedHidden guibg=#16161e guifg=#a58354 -hi MiniTablineModifiedVisible guibg=#16161e guifg=#e0af68 -hi MiniTablineTabpagesection guibg=#3b4261 guifg=NONE -hi MiniTablineVisible guibg=#16161e guifg=#c0caf5 -hi MiniTestEmphasis gui=bold guibg=NONE -hi MiniTestFail gui=bold guibg=NONE guifg=#f7768e -hi MiniTestPass gui=bold guibg=NONE guifg=#9ece6a -hi MiniTrailspace guibg=#f7768e -hi ModeMsg gui=bold guibg=NONE guifg=#a9b1d6 -hi MoreMsg guibg=NONE guifg=#7aa2f7 -hi MsgArea guibg=NONE guifg=#a9b1d6 -hi NeogitBranch guibg=NONE guifg=#bb9af7 -hi NeogitDiffAddHighlight guibg=#20303b guifg=#449dab -hi NeogitDiffContextHighlight guibg=#2b2f44 guifg=#a9b1d6 -hi NeogitDiffDeleteHighlight guibg=#37222c guifg=#914c54 -hi NeogitHunkHeader guibg=#292e42 guifg=#c0caf5 -hi NeogitHunkHeaderHighlight guibg=#3b4261 guifg=#7aa2f7 -hi NeogitRemote guibg=NONE guifg=#9d7cd8 -hi NeotestAdapterName gui=bold guibg=NONE guifg=#9d7cd8 -hi NeotestBorder guibg=NONE guifg=#7aa2f7 -hi NeotestDir guibg=NONE guifg=#7aa2f7 -hi NeotestExpandMarker guibg=NONE guifg=#a9b1d6 -hi NeotestFailed guibg=NONE guifg=#f7768e -hi NeotestFile guibg=NONE guifg=#1abc9c -hi NeotestFocused guibg=NONE guifg=#e0af68 -hi NeotestIndent guibg=NONE guifg=#a9b1d6 -hi NeotestMarked guibg=NONE guifg=#7aa2f7 -hi NeotestNamespace guibg=NONE guifg=#41a6b5 -hi NeotestPassed guibg=NONE guifg=#9ece6a -hi NeotestRunning guibg=NONE guifg=#e0af68 -hi NeotestSkipped guibg=NONE guifg=#7aa2f7 -hi NeotestTarget guibg=NONE guifg=#7aa2f7 -hi NeotestTest guibg=NONE guifg=#a9b1d6 -hi NeotestWinSelect guibg=NONE guifg=#7aa2f7 -hi NonText guibg=NONE guifg=#545c7e -hi Normal guibg=#1a1b26 guifg=#c0caf5 -hi NormalFloat guibg=#16161e guifg=#c0caf5 -hi NormalNC guibg=#1a1b26 guifg=#c0caf5 -hi NormalSB guibg=#16161e guifg=#a9b1d6 -hi Operator guibg=NONE guifg=#89ddff -hi Pmenu guibg=#16161e guifg=#c0caf5 -hi PmenuMatch guibg=#16161e guifg=#2ac3de -hi PmenuMatchSel guibg=#343a55 guifg=#2ac3de -hi PmenuSbar guibg=#1f1f29 -hi PmenuSel guibg=#343a55 -hi PmenuThumb guibg=#3b4261 -hi PreProc guibg=NONE guifg=#7dcfff -hi Question guibg=NONE guifg=#7aa2f7 -hi QuickFixLine gui=bold guibg=#283457 -hi Search guibg=#3d59a1 guifg=#c0caf5 -hi SignColumn guibg=#1a1b26 guifg=#3b4261 -hi SignColumnSB guibg=#16161e guifg=#3b4261 -hi Sneak guibg=#bb9af7 guifg=#292e42 -hi SneakScope guibg=#283457 -hi Special guibg=NONE guifg=#2ac3de -hi SpecialKey guibg=NONE guifg=#545c7e -hi SpellBad gui=undercurl guibg=NONE guisp=#db4b4b -hi SpellCap gui=undercurl guibg=NONE guisp=#e0af68 -hi SpellLocal gui=undercurl guibg=NONE guisp=#0db9d7 -hi SpellRare gui=undercurl guibg=NONE guisp=#1abc9c -hi Statement guibg=NONE guifg=#bb9af7 -hi StatusLine guibg=#16161e guifg=#a9b1d6 -hi StatusLineNC guibg=#16161e guifg=#3b4261 -hi String guibg=NONE guifg=#9ece6a -hi Substitute guibg=#f7768e guifg=#15161e -hi TabLine guibg=#16161e guifg=#3b4261 -hi TabLineFill guibg=#15161e -hi TabLineSel guibg=#7aa2f7 guifg=#15161e -hi Title gui=bold guibg=NONE guifg=#7aa2f7 -hi Todo guibg=#e0af68 guifg=#1a1b26 -hi Type guibg=NONE guifg=#2ac3de -hi Underlined gui=underline guibg=NONE -hi VertSplit guibg=NONE guifg=#15161e -hi VimwikiHR guibg=NONE guifg=#e0af68 -hi VimwikiHeader1 gui=bold guibg=NONE guifg=#7aa2f7 -hi VimwikiHeader2 gui=bold guibg=NONE guifg=#e0af68 -hi VimwikiHeader3 gui=bold guibg=NONE guifg=#9ece6a -hi VimwikiHeader4 gui=bold guibg=NONE guifg=#1abc9c -hi VimwikiHeader5 gui=bold guibg=NONE guifg=#bb9af7 -hi VimwikiHeader6 gui=bold guibg=NONE guifg=#9d7cd8 -hi VimwikiHeader7 gui=bold guibg=NONE guifg=#ff9e64 -hi VimwikiHeader8 gui=bold guibg=NONE guifg=#f7768e -hi VimwikiHeaderChar guibg=NONE guifg=#e0af68 -hi VimwikiLink guibg=NONE guifg=#7aa2f7 -hi VimwikiList guibg=NONE guifg=#ff9e64 -hi VimwikiMarkers guibg=NONE guifg=#7aa2f7 -hi VimwikiTag guibg=NONE guifg=#9ece6a -hi Visual guibg=#283457 -hi VisualNOS guibg=#283457 -hi WarningMsg guibg=NONE guifg=#e0af68 -hi Whitespace guibg=NONE guifg=#3b4261 -hi WildMenu guibg=#283457 -hi WinSeparator gui=bold guibg=NONE guifg=#15161e -hi debugBreakpoint guibg=#192b38 guifg=#0db9d7 -hi debugPC guibg=#16161e -hi diffAdded guibg=NONE guifg=#449dab -hi diffChanged guibg=NONE guifg=#6183bb -hi diffFile guibg=NONE guifg=#7aa2f7 -hi diffIndexLine guibg=NONE guifg=#bb9af7 -hi diffLine guibg=NONE guifg=#565f89 -hi diffNewFile guibg=NONE guifg=#ff9e64 -hi diffOldFile guibg=NONE guifg=#e0af68 -hi diffRemoved guibg=NONE guifg=#914c54 -hi healthError guibg=NONE guifg=#db4b4b -hi healthSuccess guibg=NONE guifg=#73daca -hi healthWarning guibg=NONE guifg=#e0af68 -hi helpCommand guibg=#414868 guifg=#7aa2f7 -hi helpExample guibg=NONE guifg=#565f89 -hi htmlH1 gui=bold guibg=NONE guifg=#bb9af7 -hi htmlH2 gui=bold guibg=NONE guifg=#7aa2f7 -hi illuminatedCurWord guibg=#3b4261 -hi illuminatedWord guibg=#3b4261 -hi lCursor guibg=#c0caf5 guifg=#1a1b26 -hi qfFileName guibg=NONE guifg=#7aa2f7 -hi qfLineNr guibg=NONE guifg=#737aa2 -hi! link CurSearch IncSearch -hi! link Delimiter Special -hi! link FzfLuaCursor IncSearch -hi! link FzfLuaFilePart FzfLuaFzfNormal -hi! link FzfLuaFzfCursorLine Visual -hi! link FzfLuaHeaderText Title -hi! link FzfLuaPath Directory -hi! link LspKindColor Special -hi! link LspKindEvent Special -hi! link LspKindFile Normal -hi! link LspKindFolder Directory -hi! link LspKindSnippet Conceal -hi! link MiniAnimateNormalFloat NormalFloat -hi! link MiniClueBorder FloatBorder -hi! link MiniClueDescSingle NormalFloat -hi! link MiniClueTitle FloatTitle -hi! link MiniDepsChangeAdded diffAdded -hi! link MiniDepsChangeRemoved diffRemoved -hi! link MiniDepsHint DiagnosticHint -hi! link MiniDepsInfo DiagnosticInfo -hi! link MiniDepsMsgBreaking DiagnosticWarn -hi! link MiniDepsPlaceholder Comment -hi! link MiniDepsTitle Title -hi! link MiniDepsTitleSame Comment -hi! link MiniDiffOverAdd DiffAdd -hi! link MiniDiffOverChange DiffText -hi! link MiniDiffOverContext DiffChange -hi! link MiniDiffOverDelete DiffDelete -hi! link MiniFilesBorder FloatBorder -hi! link MiniFilesCursorLine CursorLine -hi! link MiniFilesDirectory Directory -hi! link MiniFilesNormal NormalFloat -hi! link MiniFilesTitle FloatTitle -hi! link MiniJump2dDim Comment -hi! link MiniMapNormal NormalFloat -hi! link MiniMapSymbolCount Special -hi! link MiniMapSymbolLine Title -hi! link MiniNotifyBorder FloatBorder -hi! link MiniNotifyNormal NormalFloat -hi! link MiniNotifyTitle FloatTitle -hi! link MiniOperatorsExchangeFrom IncSearch -hi! link MiniPickBorder FloatBorder -hi! link MiniPickIconDirectory Directory -hi! link MiniPickMatchCurrent CursorLine -hi! link MiniPickMatchMarked Visual -hi! link MiniPickNormal NormalFloat -hi! link MiniPickPreviewLine CursorLine -hi! link MiniPickPreviewRegion IncSearch -hi! link WinBar StatusLine -hi! link WinBarNC StatusLineNC \ No newline at end of file diff --git a/extras/vim/colors/nekonight-storm.vim b/extras/vim/colors/nekonight-storm.vim deleted file mode 100644 index 0020d84..0000000 --- a/extras/vim/colors/nekonight-storm.vim +++ /dev/null @@ -1,317 +0,0 @@ -let g:colors_name = "nekonight-storm" -hi clear - -hi ALEErrorSign guibg=NONE guifg=#db4b4b -hi ALEWarningSign guibg=NONE guifg=#e0af68 -hi BlinkCmpDoc guibg=#1f2335 guifg=#c0caf5 -hi BlinkCmpDocBorder guibg=#1f2335 guifg=#29a4bd -hi BlinkCmpGhostText guibg=NONE guifg=#414868 -hi BlinkCmpKindCodeium guibg=NONE guifg=#1abc9c -hi BlinkCmpKindCopilot guibg=NONE guifg=#1abc9c -hi BlinkCmpKindDefault guibg=NONE guifg=#a9b1d6 -hi BlinkCmpKindSupermaven guibg=NONE guifg=#1abc9c -hi BlinkCmpKindTabNine guibg=NONE guifg=#1abc9c -hi BlinkCmpLabel guibg=NONE guifg=#c0caf5 -hi BlinkCmpLabelDeprecated gui=strikethrough guibg=NONE guifg=#3b4261 -hi BlinkCmpLabelMatch guibg=NONE guifg=#2ac3de -hi Bold gui=bold guibg=NONE guifg=#c0caf5 -hi Character guibg=NONE guifg=#9ece6a -hi ColorColumn guibg=#1d202f -hi Comment gui=italic guibg=NONE guifg=#565f89 -hi Conceal guibg=NONE guifg=#737aa2 -hi Constant guibg=NONE guifg=#ff9e64 -hi CopilotAnnotation guibg=NONE guifg=#414868 -hi CopilotSuggestion guibg=NONE guifg=#414868 -hi Cursor guibg=#c0caf5 guifg=#24283b -hi CursorColumn guibg=#292e42 -hi CursorIM guibg=#c0caf5 guifg=#24283b -hi CursorLine guibg=#292e42 -hi CursorLineNr gui=bold guibg=NONE guifg=#ff9e64 -hi Debug guibg=NONE guifg=#ff9e64 -hi DiagnosticError guibg=NONE guifg=#db4b4b -hi DiagnosticHint guibg=NONE guifg=#1abc9c -hi DiagnosticInfo guibg=NONE guifg=#0db9d7 -hi DiagnosticUnderlineError gui=undercurl guibg=NONE guisp=#db4b4b -hi DiagnosticUnderlineHint gui=undercurl guibg=NONE guisp=#1abc9c -hi DiagnosticUnderlineInfo gui=undercurl guibg=NONE guisp=#0db9d7 -hi DiagnosticUnderlineWarn gui=undercurl guibg=NONE guisp=#e0af68 -hi DiagnosticUnnecessary guibg=NONE guifg=#414868 -hi DiagnosticVirtualTextError guibg=#362c3d guifg=#db4b4b -hi DiagnosticVirtualTextHint guibg=#233745 guifg=#1abc9c -hi DiagnosticVirtualTextInfo guibg=#22374b guifg=#0db9d7 -hi DiagnosticVirtualTextWarn guibg=#373640 guifg=#e0af68 -hi DiagnosticWarn guibg=NONE guifg=#e0af68 -hi DiffAdd guibg=#283b4d -hi DiffChange guibg=#272d43 -hi DiffDelete guibg=#3f2d3d -hi DiffText guibg=#394b70 -hi Directory guibg=NONE guifg=#7aa2f7 -hi EndOfBuffer guibg=NONE guifg=#24283b -hi Error guibg=NONE guifg=#db4b4b -hi ErrorMsg guibg=NONE guifg=#db4b4b -hi FloatBorder guibg=#1f2335 guifg=#29a4bd -hi FloatTitle guibg=#1f2335 guifg=#29a4bd -hi FoldColumn guibg=#24283b guifg=#565f89 -hi Folded guibg=#3b4261 guifg=#7aa2f7 -hi Foo guibg=#ff007c guifg=#c0caf5 -hi Function guibg=NONE guifg=#7aa2f7 -hi FzfLuaBorder guibg=#1f2335 guifg=#29a4bd -hi FzfLuaDirPart guibg=NONE guifg=#a9b1d6 -hi FzfLuaFzfNormal guibg=NONE guifg=#c0caf5 -hi FzfLuaFzfPointer guibg=NONE guifg=#ff007c -hi FzfLuaFzfSeparator guibg=#1f2335 guifg=#ff9e64 -hi FzfLuaNormal guibg=#1f2335 guifg=#c0caf5 -hi FzfLuaPreviewTitle guibg=#1f2335 guifg=#29a4bd -hi FzfLuaTitle guibg=#1f2335 guifg=#ff9e64 -hi GitGutterAdd guibg=NONE guifg=#449dab -hi GitGutterAddLineNr guibg=NONE guifg=#449dab -hi GitGutterChange guibg=NONE guifg=#6183bb -hi GitGutterChangeLineNr guibg=NONE guifg=#6183bb -hi GitGutterDelete guibg=NONE guifg=#914c54 -hi GitGutterDeleteLineNr guibg=NONE guifg=#914c54 -hi GlyphPalette1 guibg=NONE guifg=#db4b4b -hi GlyphPalette2 guibg=NONE guifg=#9ece6a -hi GlyphPalette3 guibg=NONE guifg=#e0af68 -hi GlyphPalette4 guibg=NONE guifg=#7aa2f7 -hi GlyphPalette6 guibg=NONE guifg=#73daca -hi GlyphPalette7 guibg=NONE guifg=#c0caf5 -hi GlyphPalette9 guibg=NONE guifg=#f7768e -hi Identifier guibg=NONE guifg=#bb9af7 -hi IlluminatedWordRead guibg=#3b4261 -hi IlluminatedWordText guibg=#3b4261 -hi IlluminatedWordWrite guibg=#3b4261 -hi IncSearch guibg=#ff9e64 guifg=#1d202f -hi Italic gui=italic guibg=NONE guifg=#c0caf5 -hi Keyword gui=italic guibg=NONE guifg=#7dcfff -hi LineNr guibg=NONE guifg=#3b4261 -hi LineNrAbove guibg=NONE guifg=#3b4261 -hi LineNrBelow guibg=NONE guifg=#3b4261 -hi LspCodeLens guibg=NONE guifg=#565f89 -hi LspInfoBorder guibg=#1f2335 guifg=#29a4bd -hi LspInlayHint guibg=#262c40 guifg=#545c7e -hi LspReferenceRead guibg=#3b4261 -hi LspReferenceText guibg=#3b4261 -hi LspReferenceWrite guibg=#3b4261 -hi LspSignatureActiveParameter gui=bold guibg=#28304b -hi MatchParen gui=bold guibg=NONE guifg=#ff9e64 -hi MiniAnimateCursor gui=nocombine guibg=NONE -hi MiniCompletionActiveParameter gui=underline guibg=NONE -hi MiniCursorword guibg=#3b4261 -hi MiniCursorwordCurrent guibg=#3b4261 -hi MiniDepsTitleError guibg=#914c54 guifg=#1d202f -hi MiniDepsTitleUpdate guibg=#449dab guifg=#1d202f -hi MiniDiffSignAdd guibg=NONE guifg=#449dab -hi MiniDiffSignChange guibg=NONE guifg=#6183bb -hi MiniDiffSignDelete guibg=NONE guifg=#914c54 -hi MiniFilesFile guibg=NONE guifg=#c0caf5 -hi MiniFilesTitleFocused gui=bold guibg=#1f2335 guifg=#29a4bd -hi MiniHipatternsFixme gui=bold guibg=#db4b4b guifg=#1d202f -hi MiniHipatternsHack gui=bold guibg=#e0af68 guifg=#1d202f -hi MiniHipatternsNote gui=bold guibg=#1abc9c guifg=#1d202f -hi MiniHipatternsTodo gui=bold guibg=#0db9d7 guifg=#1d202f -hi MiniIconsAzure guibg=NONE guifg=#0db9d7 -hi MiniIconsBlue guibg=NONE guifg=#7aa2f7 -hi MiniIconsCyan guibg=NONE guifg=#1abc9c -hi MiniIconsGreen guibg=NONE guifg=#9ece6a -hi MiniIconsGrey guibg=NONE guifg=#c0caf5 -hi MiniIconsOrange guibg=NONE guifg=#ff9e64 -hi MiniIconsPurple guibg=NONE guifg=#9d7cd8 -hi MiniIconsRed guibg=NONE guifg=#f7768e -hi MiniIconsYellow guibg=NONE guifg=#e0af68 -hi MiniIndentscopePrefix gui=nocombine guibg=NONE -hi MiniIndentscopeSymbol gui=nocombine guibg=NONE guifg=#2ac3de -hi MiniJump guibg=#ff007c guifg=#ffffff -hi MiniJump2dSpot gui=bold,nocombine guibg=NONE guifg=#ff007c -hi MiniJump2dSpotAhead gui=nocombine guibg=#1f2335 guifg=#1abc9c -hi MiniJump2dSpotUnique gui=bold,nocombine guibg=NONE guifg=#ff9e64 -hi MiniPickBorderText guibg=#1f2335 guifg=#1abc9c -hi MiniPickPrompt guibg=#1f2335 guifg=#0db9d7 -hi MiniStarterCurrent gui=nocombine guibg=NONE -hi MiniStarterFooter gui=italic guibg=NONE guifg=#e0af68 -hi MiniStarterHeader guibg=NONE guifg=#7aa2f7 -hi MiniStarterInactive gui=italic guibg=NONE guifg=#565f89 -hi MiniStarterItem guibg=#24283b guifg=#c0caf5 -hi MiniStarterItemBullet guibg=NONE guifg=#29a4bd -hi MiniStarterItemPrefix guibg=NONE guifg=#e0af68 -hi MiniStarterQuery guibg=NONE guifg=#0db9d7 -hi MiniStarterSection guibg=NONE guifg=#2ac3de -hi MiniStatuslineDevinfo guibg=#3b4261 guifg=#a9b1d6 -hi MiniStatuslineFileinfo guibg=#3b4261 guifg=#a9b1d6 -hi MiniStatuslineFilename guibg=#292e42 guifg=#a9b1d6 -hi MiniStatuslineInactive guibg=#1f2335 guifg=#7aa2f7 -hi MiniStatuslineModeCommand gui=bold guibg=#e0af68 guifg=#1d202f -hi MiniStatuslineModeInsert gui=bold guibg=#9ece6a guifg=#1d202f -hi MiniStatuslineModeNormal gui=bold guibg=#7aa2f7 guifg=#1d202f -hi MiniStatuslineModeOther gui=bold guibg=#1abc9c guifg=#1d202f -hi MiniStatuslineModeReplace gui=bold guibg=#f7768e guifg=#1d202f -hi MiniStatuslineModeVisual gui=bold guibg=#bb9af7 guifg=#1d202f -hi MiniSurround guibg=#ff9e64 guifg=#1d202f -hi MiniTablineCurrent guibg=#3b4261 guifg=#c0caf5 -hi MiniTablineFill guibg=#1d202f -hi MiniTablineHidden guibg=#1f2335 guifg=#737aa2 -hi MiniTablineModifiedCurrent guibg=#3b4261 guifg=#e0af68 -hi MiniTablineModifiedHidden guibg=#1f2335 guifg=#a8875b -hi MiniTablineModifiedVisible guibg=#1f2335 guifg=#e0af68 -hi MiniTablineTabpagesection guibg=#3b4261 guifg=NONE -hi MiniTablineVisible guibg=#1f2335 guifg=#c0caf5 -hi MiniTestEmphasis gui=bold guibg=NONE -hi MiniTestFail gui=bold guibg=NONE guifg=#f7768e -hi MiniTestPass gui=bold guibg=NONE guifg=#9ece6a -hi MiniTrailspace guibg=#f7768e -hi ModeMsg gui=bold guibg=NONE guifg=#a9b1d6 -hi MoreMsg guibg=NONE guifg=#7aa2f7 -hi MsgArea guibg=NONE guifg=#a9b1d6 -hi NeogitBranch guibg=NONE guifg=#bb9af7 -hi NeogitDiffAddHighlight guibg=#283b4d guifg=#449dab -hi NeogitDiffContextHighlight guibg=#30354e guifg=#a9b1d6 -hi NeogitDiffDeleteHighlight guibg=#3f2d3d guifg=#914c54 -hi NeogitHunkHeader guibg=#292e42 guifg=#c0caf5 -hi NeogitHunkHeaderHighlight guibg=#3b4261 guifg=#7aa2f7 -hi NeogitRemote guibg=NONE guifg=#9d7cd8 -hi NeotestAdapterName gui=bold guibg=NONE guifg=#9d7cd8 -hi NeotestBorder guibg=NONE guifg=#7aa2f7 -hi NeotestDir guibg=NONE guifg=#7aa2f7 -hi NeotestExpandMarker guibg=NONE guifg=#a9b1d6 -hi NeotestFailed guibg=NONE guifg=#f7768e -hi NeotestFile guibg=NONE guifg=#1abc9c -hi NeotestFocused guibg=NONE guifg=#e0af68 -hi NeotestIndent guibg=NONE guifg=#a9b1d6 -hi NeotestMarked guibg=NONE guifg=#7aa2f7 -hi NeotestNamespace guibg=NONE guifg=#41a6b5 -hi NeotestPassed guibg=NONE guifg=#9ece6a -hi NeotestRunning guibg=NONE guifg=#e0af68 -hi NeotestSkipped guibg=NONE guifg=#7aa2f7 -hi NeotestTarget guibg=NONE guifg=#7aa2f7 -hi NeotestTest guibg=NONE guifg=#a9b1d6 -hi NeotestWinSelect guibg=NONE guifg=#7aa2f7 -hi NonText guibg=NONE guifg=#545c7e -hi Normal guibg=#24283b guifg=#c0caf5 -hi NormalFloat guibg=#1f2335 guifg=#c0caf5 -hi NormalNC guibg=#24283b guifg=#c0caf5 -hi NormalSB guibg=#1f2335 guifg=#a9b1d6 -hi Operator guibg=NONE guifg=#89ddff -hi Pmenu guibg=#1f2335 guifg=#c0caf5 -hi PmenuMatch guibg=#1f2335 guifg=#2ac3de -hi PmenuMatchSel guibg=#363d59 guifg=#2ac3de -hi PmenuSbar guibg=#272b3f -hi PmenuSel guibg=#363d59 -hi PmenuThumb guibg=#3b4261 -hi PreProc guibg=NONE guifg=#7dcfff -hi Question guibg=NONE guifg=#7aa2f7 -hi QuickFixLine gui=bold guibg=#2e3c64 -hi Search guibg=#3d59a1 guifg=#c0caf5 -hi SignColumn guibg=#24283b guifg=#3b4261 -hi SignColumnSB guibg=#1f2335 guifg=#3b4261 -hi Sneak guibg=#bb9af7 guifg=#292e42 -hi SneakScope guibg=#2e3c64 -hi Special guibg=NONE guifg=#2ac3de -hi SpecialKey guibg=NONE guifg=#545c7e -hi SpellBad gui=undercurl guibg=NONE guisp=#db4b4b -hi SpellCap gui=undercurl guibg=NONE guisp=#e0af68 -hi SpellLocal gui=undercurl guibg=NONE guisp=#0db9d7 -hi SpellRare gui=undercurl guibg=NONE guisp=#1abc9c -hi Statement guibg=NONE guifg=#bb9af7 -hi StatusLine guibg=#1f2335 guifg=#a9b1d6 -hi StatusLineNC guibg=#1f2335 guifg=#3b4261 -hi String guibg=NONE guifg=#9ece6a -hi Substitute guibg=#f7768e guifg=#1d202f -hi TabLine guibg=#1f2335 guifg=#3b4261 -hi TabLineFill guibg=#1d202f -hi TabLineSel guibg=#7aa2f7 guifg=#1d202f -hi Title gui=bold guibg=NONE guifg=#7aa2f7 -hi Todo guibg=#e0af68 guifg=#24283b -hi Type guibg=NONE guifg=#2ac3de -hi Underlined gui=underline guibg=NONE -hi VertSplit guibg=NONE guifg=#1d202f -hi VimwikiHR guibg=NONE guifg=#e0af68 -hi VimwikiHeader1 gui=bold guibg=NONE guifg=#7aa2f7 -hi VimwikiHeader2 gui=bold guibg=NONE guifg=#e0af68 -hi VimwikiHeader3 gui=bold guibg=NONE guifg=#9ece6a -hi VimwikiHeader4 gui=bold guibg=NONE guifg=#1abc9c -hi VimwikiHeader5 gui=bold guibg=NONE guifg=#bb9af7 -hi VimwikiHeader6 gui=bold guibg=NONE guifg=#9d7cd8 -hi VimwikiHeader7 gui=bold guibg=NONE guifg=#ff9e64 -hi VimwikiHeader8 gui=bold guibg=NONE guifg=#f7768e -hi VimwikiHeaderChar guibg=NONE guifg=#e0af68 -hi VimwikiLink guibg=NONE guifg=#7aa2f7 -hi VimwikiList guibg=NONE guifg=#ff9e64 -hi VimwikiMarkers guibg=NONE guifg=#7aa2f7 -hi VimwikiTag guibg=NONE guifg=#9ece6a -hi Visual guibg=#2e3c64 -hi VisualNOS guibg=#2e3c64 -hi WarningMsg guibg=NONE guifg=#e0af68 -hi Whitespace guibg=NONE guifg=#3b4261 -hi WildMenu guibg=#2e3c64 -hi WinSeparator gui=bold guibg=NONE guifg=#1d202f -hi debugBreakpoint guibg=#22374b guifg=#0db9d7 -hi debugPC guibg=#1f2335 -hi diffAdded guibg=NONE guifg=#449dab -hi diffChanged guibg=NONE guifg=#6183bb -hi diffFile guibg=NONE guifg=#7aa2f7 -hi diffIndexLine guibg=NONE guifg=#bb9af7 -hi diffLine guibg=NONE guifg=#565f89 -hi diffNewFile guibg=NONE guifg=#ff9e64 -hi diffOldFile guibg=NONE guifg=#e0af68 -hi diffRemoved guibg=NONE guifg=#914c54 -hi healthError guibg=NONE guifg=#db4b4b -hi healthSuccess guibg=NONE guifg=#73daca -hi healthWarning guibg=NONE guifg=#e0af68 -hi helpCommand guibg=#414868 guifg=#7aa2f7 -hi helpExample guibg=NONE guifg=#565f89 -hi htmlH1 gui=bold guibg=NONE guifg=#bb9af7 -hi htmlH2 gui=bold guibg=NONE guifg=#7aa2f7 -hi illuminatedCurWord guibg=#3b4261 -hi illuminatedWord guibg=#3b4261 -hi lCursor guibg=#c0caf5 guifg=#24283b -hi qfFileName guibg=NONE guifg=#7aa2f7 -hi qfLineNr guibg=NONE guifg=#737aa2 -hi! link CurSearch IncSearch -hi! link Delimiter Special -hi! link FzfLuaCursor IncSearch -hi! link FzfLuaFilePart FzfLuaFzfNormal -hi! link FzfLuaFzfCursorLine Visual -hi! link FzfLuaHeaderText Title -hi! link FzfLuaPath Directory -hi! link LspKindColor Special -hi! link LspKindEvent Special -hi! link LspKindFile Normal -hi! link LspKindFolder Directory -hi! link LspKindSnippet Conceal -hi! link MiniAnimateNormalFloat NormalFloat -hi! link MiniClueBorder FloatBorder -hi! link MiniClueDescSingle NormalFloat -hi! link MiniClueTitle FloatTitle -hi! link MiniDepsChangeAdded diffAdded -hi! link MiniDepsChangeRemoved diffRemoved -hi! link MiniDepsHint DiagnosticHint -hi! link MiniDepsInfo DiagnosticInfo -hi! link MiniDepsMsgBreaking DiagnosticWarn -hi! link MiniDepsPlaceholder Comment -hi! link MiniDepsTitle Title -hi! link MiniDepsTitleSame Comment -hi! link MiniDiffOverAdd DiffAdd -hi! link MiniDiffOverChange DiffText -hi! link MiniDiffOverContext DiffChange -hi! link MiniDiffOverDelete DiffDelete -hi! link MiniFilesBorder FloatBorder -hi! link MiniFilesCursorLine CursorLine -hi! link MiniFilesDirectory Directory -hi! link MiniFilesNormal NormalFloat -hi! link MiniFilesTitle FloatTitle -hi! link MiniJump2dDim Comment -hi! link MiniMapNormal NormalFloat -hi! link MiniMapSymbolCount Special -hi! link MiniMapSymbolLine Title -hi! link MiniNotifyBorder FloatBorder -hi! link MiniNotifyNormal NormalFloat -hi! link MiniNotifyTitle FloatTitle -hi! link MiniOperatorsExchangeFrom IncSearch -hi! link MiniPickBorder FloatBorder -hi! link MiniPickIconDirectory Directory -hi! link MiniPickMatchCurrent CursorLine -hi! link MiniPickMatchMarked Visual -hi! link MiniPickNormal NormalFloat -hi! link MiniPickPreviewLine CursorLine -hi! link MiniPickPreviewRegion IncSearch -hi! link WinBar StatusLine -hi! link WinBarNC StatusLineNC \ No newline at end of file diff --git a/extras/vim/colors/nekonight.vim b/extras/vim/colors/nekonight.vim deleted file mode 100644 index ad1e017..0000000 --- a/extras/vim/colors/nekonight.vim +++ /dev/null @@ -1 +0,0 @@ -runtime colors/nekonight-moon.vim diff --git a/img/neko-emacs-moon.jpg b/img/neko-emacs-moon.jpg deleted file mode 100644 index 2077066..0000000 Binary files a/img/neko-emacs-moon.jpg and /dev/null differ diff --git a/nekonight-pkg.el b/nekonight-pkg.el deleted file mode 100644 index e5279eb..0000000 --- a/nekonight-pkg.el +++ /dev/null @@ -1,5 +0,0 @@ -(define-package "nekonight" "0.0.3" "A collection of themes including nekonight moon" - '((emacs "24.0")) - :url "https://github.com/BrunoCiccarino/nekonight" - :keywords '("themes" "nekonight" "moon")) - diff --git a/extras/zellij/tokyonight_day.kdl b/zellij/tokyonight_day.kdl similarity index 100% rename from extras/zellij/tokyonight_day.kdl rename to zellij/tokyonight_day.kdl diff --git a/extras/zellij/tokyonight_moon.kdl b/zellij/tokyonight_moon.kdl similarity index 100% rename from extras/zellij/tokyonight_moon.kdl rename to zellij/tokyonight_moon.kdl diff --git a/extras/zellij/tokyonight_night.kdl b/zellij/tokyonight_night.kdl similarity index 100% rename from extras/zellij/tokyonight_night.kdl rename to zellij/tokyonight_night.kdl diff --git a/extras/zellij/tokyonight_storm.kdl b/zellij/tokyonight_storm.kdl similarity index 100% rename from extras/zellij/tokyonight_storm.kdl rename to zellij/tokyonight_storm.kdl