diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8e05858..5f5c6e6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -6,20 +6,20 @@ body: - type: markdown attributes: value: | - **Before** reporting an issue, make sure to read the [documentation](https://github.com/folke/tokyonight.nvim) - and search [existing issues](https://github.com/folke/tokyonight.nvim/issues). + **Before** reporting an issue, make sure to read the [documentation](https://github.com/BrunoCiccarino/nekonight) + and search [existing issues](https://github.com/BrunoCiccarino/nekonight/issues). - Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/folke/tokyonight.nvim/discussions) and will be closed. + Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/BrunoCiccarino/nekonight/discussions) and will be closed. - type: checkboxes attributes: label: Did you check docs and existing issues? description: Make sure you checked all of the below before submitting an issue options: - - label: I have read all the tokyonight.nvim docs + - label: I have read all the nekonight docs required: true - label: I have updated the plugin to the latest version before submitting this issue required: true - - label: I have searched the existing issues of tokyonight.nvim + - label: I have searched the existing issues of nekonight required: true - label: I have searched the existing issues of plugins related to this issue required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2aafc79..45c8868 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Ask a question - url: https://github.com/folke/tokyonight.nvim/discussions + url: https://github.com/BrunoCiccarino/nekonight/discussions about: Use Github discussions instead diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 765b368..630dd39 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -8,7 +8,7 @@ body: label: Did you check the docs? description: Make sure you read all the docs before submitting a feature request options: - - label: I have read all the tokyonight.nvim docs + - label: I have read all the nekonight docs required: true - type: textarea validations: diff --git a/.github/labeler.yml b/.github/labeler.yml index e5efb48..e64cde1 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,28 +1,28 @@ core: - all: - changed-files: - - any-glob-to-any-file: "lua/tokyonight/**" + - any-glob-to-any-file: "lua/nekonight/**" - all-globs-to-all-files: - - "!lua/tokyonight/groups/**" - - "!lua/tokyonight/colors/**" - - "!lua/tokyonight/extra/**" + - "!lua/nekonight/groups/**" + - "!lua/nekonight/colors/**" + - "!lua/nekonight/extra/**" extras: - changed-files: - - any-glob-to-any-file: "lua/tokyonight/extra/**" + - any-glob-to-any-file: "lua/nekonight/extra/**" groups: - changed-files: - - any-glob-to-any-file: "lua/tokyonight/groups/**" + - any-glob-to-any-file: "lua/nekonight/groups/**" base: - changed-files: - any-glob-to-any-file: - - "lua/tokyonight/groups/base.lua" - - "lua/tokyonight/groups/kinds.lua" - - "lua/tokyonight/groups/treesitter.lua" - - "lua/tokyonight/groups/semantic_tokens.lua" + - "lua/nekonight/groups/base.lua" + - "lua/nekonight/groups/kinds.lua" + - "lua/nekonight/groups/treesitter.lua" + - "lua/nekonight/groups/semantic_tokens.lua" colors: - changed-files: - - any-glob-to-any-file: "lua/tokyonight/colors/**" + - any-glob-to-any-file: "lua/nekonight/colors/**" diff --git a/.github/release-please-config.json b/.github/release-please-config.json index 172e516..52168b7 100644 --- a/.github/release-please-config.json +++ b/.github/release-please-config.json @@ -3,7 +3,7 @@ "packages": { ".": { "release-type": "simple", - "extra-files": ["lua/tokyonight/config.lua"] + "extra-files": ["lua/nekonight/config.lua"] } } } diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73ebb0d..857cd2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,5 +10,5 @@ jobs: uses: folke/github/.github/workflows/ci.yml@main secrets: inherit with: - plugin: tokyonight.nvim - repo: folke/tokyonight.nvim + plugin: nekonight + repo: BrunoCiccarino/nekonight diff --git a/NEWS.md b/NEWS.md index b9d802d..6221507 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,14 @@ # What's New? +## 0.x + +#### Forked + +On 12/19/2024 the tokyo night theme was forked for a colorschemes expansion, with the addition of a new color palette, now nekonight becomes a megapack of multi-platform themes. + ## 4.x -**TokyoNight** creates almost 900 highlight groups, so it was about time to refactor the code :) +**tokyonight** creates almost 900 highlight groups, so it was about time to refactor the code :) Support for plugins has been split in separate files and can be enabled/disabled via `opts`. diff --git a/README.md b/README.md index bcc0a52..f28d83a 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ TokyoNight](https://github.com/enkia/tokyo-night-vscode-theme) theme. Includes [0.9.0](https://github.com/neovim/neovim/releases/tag/v0.9.0) features. - Terminal colors. - Supports all major plugins. -- Provides [TokyoNight](https://github.com/folke/tokyonight.nvim) +- Provides [NekoNight](https://github.com/BrunoCiccarino/nekonight) [extras](#-extras) for numerous other applications.
diff --git a/autoload/lightline/colorscheme/tokyonight.vim b/autoload/lightline/colorscheme/nekonight.vim similarity index 100% rename from autoload/lightline/colorscheme/tokyonight.vim rename to autoload/lightline/colorscheme/nekonight.vim diff --git a/doc/tokyonight.nvim.txt b/doc/nekonight.txt similarity index 77% rename from doc/tokyonight.nvim.txt rename to doc/nekonight.txt index b3de5ce..ed3ec94 100644 --- a/doc/tokyonight.nvim.txt +++ b/doc/nekonight.txt @@ -1,39 +1,39 @@ -*tokyonight.nvim.txt* For Neovim Last change: 2024 December 14 +*nekonight.txt* For Neovim Last change: 2024 December 19 ============================================================================== -Table of Contents *tokyonight.nvim-table-of-contents* - -1. Tokyo Night |tokyonight.nvim-tokyo-night| - - Features |tokyonight.nvim-tokyo-night-features| - - Requirements |tokyonight.nvim-tokyo-night-requirements| - - Installation |tokyonight.nvim-tokyo-night-installation| - - Usage |tokyonight.nvim-tokyo-night-usage| - - Configuration |tokyonight.nvim-tokyo-night-configuration| - - Overriding Colors & Highlight Groups|tokyonight.nvim-tokyo-night-overriding-colors-&-highlight-groups| - - Extras |tokyonight.nvim-tokyo-night-extras| - - Contributing |tokyonight.nvim-tokyo-night-contributing| -2. Links |tokyonight.nvim-links| +Table of Contents *nekonight-table-of-contents* + +1. Neko Night |nekonight-neko-night| + - Features |nekonight-neko-night-features| + - Requirements |nekonight-neko-night-requirements| + - Installation |nekonight-neko-night-installation| + - Usage |nekonight-neko-night-usage| + - Configuration |nekonight-neko-night-configuration| + - Overriding Colors & Highlight Groups|nekonight-neko-night-overriding-colors-&-highlight-groups| + - Extras |nekonight-neko-night-extras| + - Contributing |nekonight-neko-night-contributing| +2. Links |nekonight-links| ============================================================================== -1. Tokyo Night *tokyonight.nvim-tokyo-night* +1. Neko Night *nekonight-neko-night* A dark and light Neovim theme written in Lua - ported from the Visual Studio Code TokyoNight - theme. Includes -|tokyonight.nvim-extra| themes for Kitty + forked and ported from tokyo night + theme. Includes +|nekonight-extra| themes for Kitty , Alacritty , iTerm and Fish . MoonStormNightDay -FEATURES *tokyonight.nvim-tokyo-night-features* +FEATURES *nekonight-neko-night-features* - Supports the latest Neovim 0.9.0 features. - Terminal colors. - Supports all major plugins. -- Provides TokyoNight - |tokyonight.nvim-extras| for numerous other applications. +- Provides NekoNight + |nekonight-extras| for numerous other applications. Supported Plugins ~ @@ -250,20 +250,20 @@ Extras ~ Zellij extras/zellij ----------------------------------------------------------------------- -REQUIREMENTS *tokyonight.nvim-tokyo-night-requirements* +REQUIREMENTS *nekonight-neko-night-requirements* - Neovim >= 0.8.0 -INSTALLATION *tokyonight.nvim-tokyo-night-installation* +INSTALLATION *nekonight-neko-night-installation* Install the theme with your preferred package manager, such as folke/lazy.nvim >lua { - "folke/tokyonight.nvim", + "BrunoCiccarino/nekonight", lazy = false, priority = 1000, opts = {}, @@ -271,23 +271,23 @@ Install the theme with your preferred package manager, such as folke/lazy.nvim < -USAGE *tokyonight.nvim-tokyo-night-usage* +USAGE *nekonight-neko-night-usage* >lua - vim.cmd[[colorscheme tokyonight]] + vim.cmd[[colorscheme nekonight]] < >vim - colorscheme tokyonight + colorscheme nekonight " There are also colorschemes for the different styles. - colorscheme tokyonight-night - colorscheme tokyonight-storm - colorscheme tokyonight-day - colorscheme tokyonight-moon + colorscheme nekonight-night + colorscheme nekonight-storm + colorscheme nekonight-day + colorscheme nekonight-moon < -Some plugins need extra configuration to work with **TokyoNight**. +Some plugins need extra configuration to work with **nekonight**. Click here for more details ~ @@ -298,7 +298,7 @@ BARBECUE ~ -- Lua require('barbecue').setup { -- ... your barbecue config - theme = 'tokyonight', + theme = 'nekonight', -- ... your barbecue config } < @@ -311,7 +311,7 @@ LUALINE ~ require('lualine').setup { options = { -- ... your lualine config - theme = 'tokyonight' + theme = 'nekonight' -- ... your lualine config } } @@ -322,30 +322,30 @@ LIGHTLINE ~ >vim " Vim Script - let g:lightline = {'colorscheme': 'tokyonight'} + let g:lightline = {'colorscheme': 'nekonight'} < -CONFIGURATION *tokyonight.nvim-tokyo-night-configuration* +CONFIGURATION *nekonight-neko-night-configuration* [!IMPORTANT] Set the configuration **BEFORE** loading the color scheme with - `colorscheme tokyonight`. -The theme offers four styles: |tokyonight.nvim-storm|, |tokyonight.nvim-moon|, -|tokyonight.nvim-night|, and |tokyonight.nvim-day|. + `colorscheme nekonight`. +The theme offers four styles: |nekonight-storm|, |nekonight-moon|, +|nekonight-night|, and |nekonight-day|. -The |tokyonight.nvim-day| style is used when `{ style = "day" }` is passed to +The |nekonight-day| style is used when `{ style = "day" }` is passed to `setup(options)` or when `vim.o.background = "light"`. -TokyoNight uses the default options, +nekonight uses the default options, unless `setup` is explicitly called. Default Options ~ >lua - ---@class tokyonight.Config + ---@class nekonight.Config ---@field on_colors fun(colors: ColorScheme) - ---@field on_highlights fun(highlights: tokyonight.Highlights, colors: ColorScheme) + ---@field on_highlights fun(highlights: nekonight.Highlights, colors: ColorScheme) M.defaults = { style = "moon", -- The theme comes in three styles, `storm`, a darker variant `night` and `day` light_style = "day", -- The theme is used when the background is set to light @@ -373,7 +373,7 @@ Default Options ~ --- You can override specific highlights to use other groups or a hex color --- function will be called with a Highlights and ColorScheme table - ---@param highlights tokyonight.Highlights + ---@param highlights nekonight.Highlights ---@param colors ColorScheme on_highlights = function(highlights, colors) end, @@ -389,14 +389,14 @@ Default Options ~ auto = true, -- add any plugins here that you want to enable -- for all possible plugins, see: - -- * https://github.com/folke/tokyonight.nvim/tree/main/lua/tokyonight/groups + -- * https://github.com/BrunoCiccarino/nekonight/tree/main/lua/nekonight/groups -- telescope = true, }, } < -OVERRIDING COLORS & HIGHLIGHT GROUPS*tokyonight.nvim-tokyo-night-overriding-colors-&-highlight-groups* +OVERRIDING COLORS & HIGHLIGHT GROUPS*nekonight-neko-night-overriding-colors-&-highlight-groups* How the highlight groups are calculated: @@ -407,14 +407,14 @@ override them using `config.on_colors(colors)`. groups. For default values of `colors` and `highlights`, please consult the storm -, moon , night -, and day +, moon , night +, and day themes. Settings & Changing Colors ~ >lua - require("tokyonight").setup({ + require("nekonight").setup({ -- use the night style style = "night", -- disable italic for functions @@ -432,7 +432,7 @@ Settings & Changing Colors ~ Borderless Telescope ~ >lua - require("tokyonight").setup({ + require("nekonight").setup({ on_highlights = function(hl, c) local prompt = "#2d3149" hl.TelescopeNormal = { @@ -479,7 +479,7 @@ To have undercurls show up and in color, add the following to your Tmux < -EXTRAS *tokyonight.nvim-tokyo-night-extras* +EXTRAS *nekonight-neko-night-extras* Extra color configs for Kitty , Alacritty , Fish @@ -492,32 +492,32 @@ You can easily use the color palette for other plugins inside your Neovim configuration: >lua - local colors = require("tokyonight.colors").setup() -- pass in any of the config options as explained above - local util = require("tokyonight.util") + local colors = require("nekonight.colors").setup() -- pass in any of the config options as explained above + local util = require("nekonight.util") aplugin.background = colors.bg_dark aplugin.my_error = util.lighten(colors.red1, 0.3) -- number between 0 and 1. 0 results in white, 1 results in red1 < -CONTRIBUTING *tokyonight.nvim-tokyo-night-contributing* +CONTRIBUTING *nekonight-neko-night-contributing* Pull requests are welcome. -For the |tokyonight.nvim-extras|, we use a simple template system that can be +For the |nekonight-extras|, we use a simple template system that can be used to generate themes for the different styles. How to add a new extra template: -1. Create a file like `lua/tokyonight/extra/cool-app.lua`. +1. Create a file like `lua/nekonight/extra/cool-app.lua`. 2. Add the name and output file extension to the `extras` table in -`lua/tokyonight/extra/init.lua`. +`lua/nekonight/extra/init.lua`. -3. Run the following command to generate new |tokyonight.nvim-extra| themes from -the tokyonight plugin directory: +3. Run the following command to generate new |nekonight-extra| themes from +the nekonight plugin directory: >sh ./scripts/build @@ -530,7 +530,7 @@ commit them, as they are already automatically built by the CI. ============================================================================== -2. Links *tokyonight.nvim-links* +2. Links *nekonight-links* 1. *image*: https://user-images.githubusercontent.com/292349/115395546-d8d6f880-a198-11eb-98fb-a1194787701d.png diff --git a/extras/aerc/tokyonight_day.ini b/extras/aerc/tokyonight_day.ini index 43b13cc..2068ea9 100644 --- a/extras/aerc/tokyonight_day.ini +++ b/extras/aerc/tokyonight_day.ini @@ -1,7 +1,7 @@ # vim: ft=dosini # -# aerc TokyoNight styleset -# set styleset-name=tokyonight-xxx.ini in 'aerc.conf' to load the style +# aerc nekonight styleset +# set styleset-name=nekonight-xxx.ini in 'aerc.conf' to load the style # *.default=true diff --git a/extras/aerc/tokyonight_moon.ini b/extras/aerc/tokyonight_moon.ini index 1a6fc80..e110c4c 100644 --- a/extras/aerc/tokyonight_moon.ini +++ b/extras/aerc/tokyonight_moon.ini @@ -1,7 +1,7 @@ # vim: ft=dosini # -# aerc TokyoNight styleset -# set styleset-name=tokyonight-xxx.ini in 'aerc.conf' to load the style +# aerc nekonight styleset +# set styleset-name=nekonight-xxx.ini in 'aerc.conf' to load the style # *.default=true diff --git a/extras/aerc/tokyonight_night.ini b/extras/aerc/tokyonight_night.ini index f184168..8c7675f 100644 --- a/extras/aerc/tokyonight_night.ini +++ b/extras/aerc/tokyonight_night.ini @@ -1,7 +1,7 @@ # vim: ft=dosini # -# aerc TokyoNight styleset -# set styleset-name=tokyonight-xxx.ini in 'aerc.conf' to load the style +# aerc nekonight styleset +# set styleset-name=nekonight-xxx.ini in 'aerc.conf' to load the style # *.default=true diff --git a/extras/aerc/tokyonight_storm.ini b/extras/aerc/tokyonight_storm.ini index ae2984e..d034a37 100644 --- a/extras/aerc/tokyonight_storm.ini +++ b/extras/aerc/tokyonight_storm.ini @@ -1,7 +1,7 @@ # vim: ft=dosini # -# aerc TokyoNight styleset -# set styleset-name=tokyonight-xxx.ini in 'aerc.conf' to load the style +# aerc nekonight styleset +# set styleset-name=nekonight-xxx.ini in 'aerc.conf' to load the style # *.default=true diff --git a/extras/alacritty/tokyonight_day.toml b/extras/alacritty/tokyonight_day.toml index cdd08e0..c1de3c5 100644 --- a/extras/alacritty/tokyonight_day.toml +++ b/extras/alacritty/tokyonight_day.toml @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- -# TokyoNight Alacritty Colors -# Theme: Tokyo Night Day -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_day.toml +# nekonight Alacritty Colors +# Theme: Neko Night Day +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/alacritty/nekonight_day.toml # ----------------------------------------------------------------------------- # Default colors diff --git a/extras/alacritty/tokyonight_moon.toml b/extras/alacritty/tokyonight_moon.toml index 804f583..b58ef54 100644 --- a/extras/alacritty/tokyonight_moon.toml +++ b/extras/alacritty/tokyonight_moon.toml @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- -# TokyoNight Alacritty Colors -# Theme: Tokyo Night Moon -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_moon.toml +# nekonight Alacritty Colors +# Theme: Neko Night Moon +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/alacritty/nekonight_moon.toml # ----------------------------------------------------------------------------- # Default colors diff --git a/extras/alacritty/tokyonight_night.toml b/extras/alacritty/tokyonight_night.toml index e205d9d..fa2b578 100644 --- a/extras/alacritty/tokyonight_night.toml +++ b/extras/alacritty/tokyonight_night.toml @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- -# TokyoNight Alacritty Colors -# Theme: Tokyo Night -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_night.toml +# nekonight Alacritty Colors +# Theme: Neko Night +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/alacritty/nekonight_night.toml # ----------------------------------------------------------------------------- # Default colors diff --git a/extras/alacritty/tokyonight_storm.toml b/extras/alacritty/tokyonight_storm.toml index 83402d8..ee89c1c 100644 --- a/extras/alacritty/tokyonight_storm.toml +++ b/extras/alacritty/tokyonight_storm.toml @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- -# TokyoNight Alacritty Colors -# Theme: Tokyo Night Storm -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_storm.toml +# nekonight Alacritty Colors +# Theme: Neko Night Storm +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/alacritty/nekonight_storm.toml # ----------------------------------------------------------------------------- # Default colors diff --git a/extras/dunst/tokyonight_day.dunstrc b/extras/dunst/tokyonight_day.dunstrc index dbb4b89..0cccb51 100644 --- a/extras/dunst/tokyonight_day.dunstrc +++ b/extras/dunst/tokyonight_day.dunstrc @@ -1,4 +1,4 @@ -# TokyoNight colors for dunst +# nekonight colors for dunst # For more configuration options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] diff --git a/extras/dunst/tokyonight_moon.dunstrc b/extras/dunst/tokyonight_moon.dunstrc index b178da8..9003e83 100644 --- a/extras/dunst/tokyonight_moon.dunstrc +++ b/extras/dunst/tokyonight_moon.dunstrc @@ -1,4 +1,4 @@ -# TokyoNight colors for dunst +# nekonight colors for dunst # For more configuration options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] diff --git a/extras/dunst/tokyonight_night.dunstrc b/extras/dunst/tokyonight_night.dunstrc index ec5e606..a5e5cc9 100644 --- a/extras/dunst/tokyonight_night.dunstrc +++ b/extras/dunst/tokyonight_night.dunstrc @@ -1,4 +1,4 @@ -# TokyoNight colors for dunst +# nekonight colors for dunst # For more configuration options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] diff --git a/extras/dunst/tokyonight_storm.dunstrc b/extras/dunst/tokyonight_storm.dunstrc index fd764ba..52e7cd2 100644 --- a/extras/dunst/tokyonight_storm.dunstrc +++ b/extras/dunst/tokyonight_storm.dunstrc @@ -1,4 +1,4 @@ -# TokyoNight colors for dunst +# nekonight colors for dunst # For more configuration options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] diff --git a/extras/eza/README.md b/extras/eza/README.md index fb1f532..1c03b73 100644 --- a/extras/eza/README.md +++ b/extras/eza/README.md @@ -1,10 +1,10 @@

- Tokyonight for eza + Nekonight for eza

### About -A Tokyonight theme for `eza`, a modern replacement for `ls`. +A nekonight theme for `eza`, a modern replacement for `ls`. ### Usage diff --git a/extras/fish/tokyonight_day.fish b/extras/fish/tokyonight_day.fish index f00fee5..129f4db 100644 --- a/extras/fish/tokyonight_day.fish +++ b/extras/fish/tokyonight_day.fish @@ -1,4 +1,4 @@ - # TokyoNight Color Palette + # nekonight Color Palette set -l foreground 3760bf set -l selection b7c1e3 set -l comment 848cb5 diff --git a/extras/fish/tokyonight_moon.fish b/extras/fish/tokyonight_moon.fish index 1950261..6218970 100644 --- a/extras/fish/tokyonight_moon.fish +++ b/extras/fish/tokyonight_moon.fish @@ -1,4 +1,4 @@ - # TokyoNight Color Palette + # nekonight Color Palette set -l foreground c8d3f5 set -l selection 2d3f76 set -l comment 636da6 diff --git a/extras/fish/tokyonight_night.fish b/extras/fish/tokyonight_night.fish index 462901c..8bdd818 100644 --- a/extras/fish/tokyonight_night.fish +++ b/extras/fish/tokyonight_night.fish @@ -1,4 +1,4 @@ - # TokyoNight Color Palette + # nekonight Color Palette set -l foreground c0caf5 set -l selection 283457 set -l comment 565f89 diff --git a/extras/fish/tokyonight_storm.fish b/extras/fish/tokyonight_storm.fish index f3eaebb..27a1c9e 100644 --- a/extras/fish/tokyonight_storm.fish +++ b/extras/fish/tokyonight_storm.fish @@ -1,4 +1,4 @@ - # TokyoNight Color Palette + # nekonight Color Palette set -l foreground c0caf5 set -l selection 2e3c64 set -l comment 565f89 diff --git a/extras/fish_themes/tokyonight_day.theme b/extras/fish_themes/tokyonight_day.theme index 533d96b..57e870c 100644 --- a/extras/fish_themes/tokyonight_day.theme +++ b/extras/fish_themes/tokyonight_day.theme @@ -1,4 +1,4 @@ - # TokyoNight + # nekonight # Syntax Highlighting Colors fish_color_normal 3760bf diff --git a/extras/fish_themes/tokyonight_moon.theme b/extras/fish_themes/tokyonight_moon.theme index 37574fb..fb702c5 100644 --- a/extras/fish_themes/tokyonight_moon.theme +++ b/extras/fish_themes/tokyonight_moon.theme @@ -1,4 +1,4 @@ - # TokyoNight + # nekonight # Syntax Highlighting Colors fish_color_normal c8d3f5 diff --git a/extras/fish_themes/tokyonight_night.theme b/extras/fish_themes/tokyonight_night.theme index 59b6636..81e485c 100644 --- a/extras/fish_themes/tokyonight_night.theme +++ b/extras/fish_themes/tokyonight_night.theme @@ -1,4 +1,4 @@ - # TokyoNight + # nekonight # Syntax Highlighting Colors fish_color_normal c0caf5 diff --git a/extras/fish_themes/tokyonight_storm.theme b/extras/fish_themes/tokyonight_storm.theme index 99fbd2d..436ea49 100644 --- a/extras/fish_themes/tokyonight_storm.theme +++ b/extras/fish_themes/tokyonight_storm.theme @@ -1,4 +1,4 @@ - # TokyoNight + # nekonight # Syntax Highlighting Colors fish_color_normal c0caf5 diff --git a/extras/ghostty/README.md b/extras/ghostty/README.md index 2458649..0db7fcb 100644 --- a/extras/ghostty/README.md +++ b/extras/ghostty/README.md @@ -1,8 +1,8 @@ -To use any of these themes in Ghostty, just clone the tokyonight repo +To use any of these themes in Ghostty, just clone the nekonight repo and set the theme to the absolute path of the theme file. Example: ```ini -theme = "/home/folke/projects/tokyonight.nvim/extras/ghostty/tokyonight_night" +theme = "/home/BrunoCiccarino/projects/nekonight/extras/ghostty/nekonight_night" ``` diff --git a/extras/gnome_terminal/tokyonight_day.dconf b/extras/gnome_terminal/nekonight_day.dconf similarity index 94% rename from extras/gnome_terminal/tokyonight_day.dconf rename to extras/gnome_terminal/nekonight_day.dconf index ac5c918..758fcf1 100644 --- a/extras/gnome_terminal/tokyonight_day.dconf +++ b/extras/gnome_terminal/nekonight_day.dconf @@ -2,7 +2,7 @@ # 1. Create a new profile for GNOME Terminal # 2. Copy the UUID of the new profile (bottom right corner of the preferences window) # 3. Replace below with the copied UUID -# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < tokyonight_day.dconf` +# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < nekonight_day.dconf` [:] background-color='rgb(225, 226, 231)' @@ -15,4 +15,4 @@ highlight-colors-set=true highlight-foreground-color='rgb(225, 226, 231)' palette=['rgb(161, 166, 197)', 'rgb(245, 42, 101)', 'rgb(88, 117, 57)', 'rgb(140, 108, 62)', 'rgb(46, 125, 233)', 'rgb(152, 84, 241)', 'rgb(0, 113, 151)', 'rgb(55, 96, 191)', 'rgb(161, 166, 197)', 'rgb(245, 42, 101)', 'rgb(88, 117, 57)', 'rgb(140, 108, 62)', 'rgb(46, 125, 233)', 'rgb(152, 84, 241)', 'rgb(0, 113, 151)', 'rgb(55, 96, 191)'] use-theme-colors=false -visible-name='Tokyo Night Day' +visible-name='Neko Night Day' diff --git a/extras/gnome_terminal/tokyonight_moon.dconf b/extras/gnome_terminal/nekonight_moon.dconf similarity index 94% rename from extras/gnome_terminal/tokyonight_moon.dconf rename to extras/gnome_terminal/nekonight_moon.dconf index cf5ade3..e4c7e4d 100644 --- a/extras/gnome_terminal/tokyonight_moon.dconf +++ b/extras/gnome_terminal/nekonight_moon.dconf @@ -2,7 +2,7 @@ # 1. Create a new profile for GNOME Terminal # 2. Copy the UUID of the new profile (bottom right corner of the preferences window) # 3. Replace below with the copied UUID -# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < tokyonight_moon.dconf` +# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < nekonight_moon.dconf` [:] background-color='rgb(34, 36, 54)' @@ -15,4 +15,4 @@ highlight-colors-set=true highlight-foreground-color='rgb(34, 36, 54)' palette=['rgb(68, 74, 115)', 'rgb(255, 117, 127)', 'rgb(195, 232, 141)', 'rgb(255, 199, 119)', 'rgb(130, 170, 255)', 'rgb(192, 153, 255)', 'rgb(134, 225, 252)', 'rgb(200, 211, 245)', 'rgb(68, 74, 115)', 'rgb(255, 117, 127)', 'rgb(195, 232, 141)', 'rgb(255, 199, 119)', 'rgb(130, 170, 255)', 'rgb(192, 153, 255)', 'rgb(134, 225, 252)', 'rgb(200, 211, 245)'] use-theme-colors=false -visible-name='Tokyo Night Moon' +visible-name='Neko Night Moon' diff --git a/extras/gnome_terminal/tokyonight_night.dconf b/extras/gnome_terminal/nekonight_night.dconf similarity index 94% rename from extras/gnome_terminal/tokyonight_night.dconf rename to extras/gnome_terminal/nekonight_night.dconf index dc6ffb4..c0c8c09 100644 --- a/extras/gnome_terminal/tokyonight_night.dconf +++ b/extras/gnome_terminal/nekonight_night.dconf @@ -2,7 +2,7 @@ # 1. Create a new profile for GNOME Terminal # 2. Copy the UUID of the new profile (bottom right corner of the preferences window) # 3. Replace below with the copied UUID -# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < tokyonight_night.dconf` +# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < nekonight_night.dconf` [:] background-color='rgb(26, 27, 38)' @@ -15,4 +15,4 @@ highlight-colors-set=true highlight-foreground-color='rgb(26, 27, 38)' palette=['rgb(65, 72, 104)', 'rgb(247, 118, 142)', 'rgb(158, 206, 106)', 'rgb(224, 175, 104)', 'rgb(122, 162, 247)', 'rgb(187, 154, 247)', 'rgb(125, 207, 255)', 'rgb(192, 202, 245)', 'rgb(65, 72, 104)', 'rgb(247, 118, 142)', 'rgb(158, 206, 106)', 'rgb(224, 175, 104)', 'rgb(122, 162, 247)', 'rgb(187, 154, 247)', 'rgb(125, 207, 255)', 'rgb(192, 202, 245)'] use-theme-colors=false -visible-name='Tokyo Night' +visible-name='Neko Night' diff --git a/extras/gnome_terminal/tokyonight_storm.dconf b/extras/gnome_terminal/nekonight_storm.dconf similarity index 94% rename from extras/gnome_terminal/tokyonight_storm.dconf rename to extras/gnome_terminal/nekonight_storm.dconf index 78ff10b..0d17681 100644 --- a/extras/gnome_terminal/tokyonight_storm.dconf +++ b/extras/gnome_terminal/nekonight_storm.dconf @@ -2,7 +2,7 @@ # 1. Create a new profile for GNOME Terminal # 2. Copy the UUID of the new profile (bottom right corner of the preferences window) # 3. Replace below with the copied UUID -# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < tokyonight_storm.dconf` +# 4. Execute `dconf load /org/gnome/terminal/legacy/profiles:/ < nekonight_storm.dconf` [:] background-color='rgb(36, 40, 59)' @@ -15,4 +15,4 @@ highlight-colors-set=true highlight-foreground-color='rgb(36, 40, 59)' palette=['rgb(65, 72, 104)', 'rgb(247, 118, 142)', 'rgb(158, 206, 106)', 'rgb(224, 175, 104)', 'rgb(122, 162, 247)', 'rgb(187, 154, 247)', 'rgb(125, 207, 255)', 'rgb(192, 202, 245)', 'rgb(65, 72, 104)', 'rgb(247, 118, 142)', 'rgb(158, 206, 106)', 'rgb(224, 175, 104)', 'rgb(122, 162, 247)', 'rgb(187, 154, 247)', 'rgb(125, 207, 255)', 'rgb(192, 202, 245)'] use-theme-colors=false -visible-name='Tokyo Night Storm' +visible-name='Neko Night Storm' diff --git a/extras/kitty/tokyonight_day.conf b/extras/kitty/tokyonight_day.conf index b9a9aae..3c4d47c 100644 --- a/extras/kitty/tokyonight_day.conf +++ b/extras/kitty/tokyonight_day.conf @@ -1,9 +1,9 @@ # vim:ft=kitty -## name: Tokyo Night Day +## name: Neko Night Day ## license: MIT ## author: Folke Lemaitre -## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_day.conf +## upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/kitty/nekonight_day.conf background #e1e2e7 diff --git a/extras/kitty/tokyonight_moon.conf b/extras/kitty/tokyonight_moon.conf index 595cec9..9c711ee 100644 --- a/extras/kitty/tokyonight_moon.conf +++ b/extras/kitty/tokyonight_moon.conf @@ -1,9 +1,9 @@ # vim:ft=kitty -## name: Tokyo Night Moon +## name: Neko Night Moon ## license: MIT ## author: Folke Lemaitre -## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_moon.conf +## upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/kitty/nekonight_moon.conf background #222436 diff --git a/extras/kitty/tokyonight_night.conf b/extras/kitty/tokyonight_night.conf index d8a8e2a..7d584a2 100644 --- a/extras/kitty/tokyonight_night.conf +++ b/extras/kitty/tokyonight_night.conf @@ -1,9 +1,9 @@ # vim:ft=kitty -## name: Tokyo Night +## name: Neko Night ## license: MIT ## author: Folke Lemaitre -## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_night.conf +## upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/kitty/nekonight_night.conf background #1a1b26 diff --git a/extras/kitty/tokyonight_storm.conf b/extras/kitty/tokyonight_storm.conf index ef68b50..0707b48 100644 --- a/extras/kitty/tokyonight_storm.conf +++ b/extras/kitty/tokyonight_storm.conf @@ -1,9 +1,9 @@ # vim:ft=kitty -## name: Tokyo Night Storm +## name: Neko Night Storm ## license: MIT ## author: Folke Lemaitre -## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_storm.conf +## upstream: https://github.com/folke/nekonight/raw/main/extras/kitty/nekonight_storm.conf background #24283b diff --git a/extras/process_compose/tokyonight_day.yaml b/extras/process_compose/tokyonight_day.yaml index c932030..5100bfc 100644 --- a/extras/process_compose/tokyonight_day.yaml +++ b/extras/process_compose/tokyonight_day.yaml @@ -1,5 +1,5 @@ style: - name: tokyonight_day + name: nekonight_day body: fgColor: '#3760bf' bgColor: '#d0d5e3' diff --git a/extras/process_compose/tokyonight_moon.yaml b/extras/process_compose/tokyonight_moon.yaml index f04028b..50384ce 100644 --- a/extras/process_compose/tokyonight_moon.yaml +++ b/extras/process_compose/tokyonight_moon.yaml @@ -1,5 +1,5 @@ style: - name: tokyonight_moon + name: nekonight_moon body: fgColor: '#c8d3f5' bgColor: '#1e2030' diff --git a/extras/process_compose/tokyonight_night.yaml b/extras/process_compose/tokyonight_night.yaml index f9f1af5..2dfb753 100644 --- a/extras/process_compose/tokyonight_night.yaml +++ b/extras/process_compose/tokyonight_night.yaml @@ -1,5 +1,5 @@ style: - name: tokyonight_night + name: nekonight_night body: fgColor: '#c0caf5' bgColor: '#16161e' diff --git a/extras/process_compose/tokyonight_storm.yaml b/extras/process_compose/tokyonight_storm.yaml index 5a89c5f..6a172c0 100644 --- a/extras/process_compose/tokyonight_storm.yaml +++ b/extras/process_compose/tokyonight_storm.yaml @@ -1,5 +1,5 @@ style: - name: tokyonight_storm + name: nekonight_storm body: fgColor: '#c0caf5' bgColor: '#1f2335' diff --git a/extras/spotify_player/tokyonight_day.toml b/extras/spotify_player/tokyonight_day.toml index 379b8c0..0edcf5d 100644 --- a/extras/spotify_player/tokyonight_day.toml +++ b/extras/spotify_player/tokyonight_day.toml @@ -1,5 +1,5 @@ [[themes]] -name = "Tokyo Night Day" +name = "Neko Night Day" [themes.palette] background = "#d0d5e3" foreground = "#6172b0" diff --git a/extras/spotify_player/tokyonight_moon.toml b/extras/spotify_player/tokyonight_moon.toml index 14cd20e..d1f2378 100644 --- a/extras/spotify_player/tokyonight_moon.toml +++ b/extras/spotify_player/tokyonight_moon.toml @@ -1,5 +1,5 @@ [[themes]] -name = "Tokyo Night Moon" +name = "Neko Night Moon" [themes.palette] background = "#1e2030" foreground = "#828bb8" diff --git a/extras/spotify_player/tokyonight_night.toml b/extras/spotify_player/tokyonight_night.toml index 6f73290..4ba5405 100644 --- a/extras/spotify_player/tokyonight_night.toml +++ b/extras/spotify_player/tokyonight_night.toml @@ -1,5 +1,5 @@ [[themes]] -name = "Tokyo Night" +name = "Neko Night" [themes.palette] background = "#16161e" foreground = "#a9b1d6" diff --git a/extras/spotify_player/tokyonight_storm.toml b/extras/spotify_player/tokyonight_storm.toml index 8c322ab..df4ec0e 100644 --- a/extras/spotify_player/tokyonight_storm.toml +++ b/extras/spotify_player/tokyonight_storm.toml @@ -1,5 +1,5 @@ [[themes]] -name = "Tokyo Night Storm" +name = "Neko Night Storm" [themes.palette] background = "#1f2335" foreground = "#a9b1d6" diff --git a/extras/st/README.md b/extras/st/README.md index 1630dc4..55edee1 100644 --- a/extras/st/README.md +++ b/extras/st/README.md @@ -1,5 +1,5 @@

- Tokyonight for st + nekonight for st

### About diff --git a/extras/sublime/tokyonight_day.tmTheme b/extras/sublime/tokyonight_day.tmTheme index ebd8b88..b5917ee 100644 --- a/extras/sublime/tokyonight_day.tmTheme +++ b/extras/sublime/tokyonight_day.tmTheme @@ -6,9 +6,9 @@ colorSpaceName sRGB name - TokyoNight + NekoNight semanticClass - enki.theme.tokyo + enki.theme.neko settings diff --git a/extras/sublime/tokyonight_moon.tmTheme b/extras/sublime/tokyonight_moon.tmTheme index 4e8dc95..068d8d3 100644 --- a/extras/sublime/tokyonight_moon.tmTheme +++ b/extras/sublime/tokyonight_moon.tmTheme @@ -6,9 +6,9 @@ colorSpaceName sRGB name - TokyoNight + NekoNight semanticClass - enki.theme.tokyo + enki.theme.neko settings diff --git a/extras/sublime/tokyonight_night.tmTheme b/extras/sublime/tokyonight_night.tmTheme index 4078381..33108dd 100644 --- a/extras/sublime/tokyonight_night.tmTheme +++ b/extras/sublime/tokyonight_night.tmTheme @@ -6,9 +6,9 @@ colorSpaceName sRGB name - TokyoNight + NekoNight semanticClass - enki.theme.tokyo + enki.theme.neko settings diff --git a/extras/sublime/tokyonight_storm.tmTheme b/extras/sublime/tokyonight_storm.tmTheme index 4575fa3..5940e8f 100644 --- a/extras/sublime/tokyonight_storm.tmTheme +++ b/extras/sublime/tokyonight_storm.tmTheme @@ -6,9 +6,9 @@ colorSpaceName sRGB name - TokyoNight + NekoNight semanticClass - enki.theme.tokyo + enki.theme.neko settings diff --git a/extras/terminator/tokyonight_day.conf b/extras/terminator/tokyonight_day.conf index ca13b6f..c192dfc 100644 --- a/extras/terminator/tokyonight_day.conf +++ b/extras/terminator/tokyonight_day.conf @@ -1,4 +1,4 @@ -[[Tokyo Night Day]] +[[Neko Night Day]] palette = "#b4b5b9:#f52a65:#587539:#8c6c3e:#2e7de9:#9854f1:#007197:#6172b0:#a1a6c5:#f52a65:#587539:#8c6c3e:#2e7de9:#9854f1:#007197:#7847bd" background_color = "#e1e2e7" foreground_color = "#3760bf" diff --git a/extras/terminator/tokyonight_moon.conf b/extras/terminator/tokyonight_moon.conf index 91b657f..0da2dfe 100644 --- a/extras/terminator/tokyonight_moon.conf +++ b/extras/terminator/tokyonight_moon.conf @@ -1,4 +1,4 @@ -[[Tokyo Night Moon]] +[[Neko Night Moon]] palette = "#1b1d2b:#ff757f:#c3e88d:#ffc777:#82aaff:#c099ff:#86e1fc:#828bb8:#444a73:#ff757f:#c3e88d:#ffc777:#82aaff:#c099ff:#86e1fc:#fca7ea" background_color = "#222436" foreground_color = "#c8d3f5" diff --git a/extras/terminator/tokyonight_night.conf b/extras/terminator/tokyonight_night.conf index a6bfb25..f671d4d 100644 --- a/extras/terminator/tokyonight_night.conf +++ b/extras/terminator/tokyonight_night.conf @@ -1,4 +1,4 @@ -[[Tokyo Night]] +[[Neko Night]] palette = "#15161e:#f7768e:#9ece6a:#e0af68:#7aa2f7:#bb9af7:#7dcfff:#a9b1d6:#414868:#f7768e:#9ece6a:#e0af68:#7aa2f7:#bb9af7:#7dcfff:#9d7cd8" background_color = "#1a1b26" foreground_color = "#c0caf5" diff --git a/extras/terminator/tokyonight_storm.conf b/extras/terminator/tokyonight_storm.conf index 7efa700..a0c7182 100644 --- a/extras/terminator/tokyonight_storm.conf +++ b/extras/terminator/tokyonight_storm.conf @@ -1,4 +1,4 @@ -[[Tokyo Night Storm]] +[[Neko Night Storm]] palette = "#1d202f:#f7768e:#9ece6a:#e0af68:#7aa2f7:#bb9af7:#7dcfff:#a9b1d6:#414868:#f7768e:#9ece6a:#e0af68:#7aa2f7:#bb9af7:#7dcfff:#9d7cd8" background_color = "#24283b" foreground_color = "#c0caf5" diff --git a/extras/termux/README.md b/extras/termux/README.md index 21145e7..0f14aa5 100644 --- a/extras/termux/README.md +++ b/extras/termux/README.md @@ -1,7 +1,7 @@ -## Tokyonight for [termux](https://termux.dev/) +## Nekonight for [termux](https://termux.dev/) ### Usage 1. Choose your flavour. -2. Copy the contents of `tokyonight_flavour.properties` to `~/.termux/colors.properties`. +2. Copy the contents of `nekonight_flavour.properties` to `~/.termux/colors.properties`. 3. Then run `termux-reload-settings` or restart termux. diff --git a/extras/termux/tokyonight_day.properties b/extras/termux/tokyonight_day.properties index 3edde6a..6c62bff 100644 --- a/extras/termux/tokyonight_day.properties +++ b/extras/termux/tokyonight_day.properties @@ -1,6 +1,6 @@ # ----------------------------------------------------------------------------- -# Theme: Tokyo Night Day -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/termux/tokyonight_day.properties +# Theme: Neko Night Day +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/termux/nekonight_day.properties # ----------------------------------------------------------------------------- background: #e1e2e7 diff --git a/extras/termux/tokyonight_moon.properties b/extras/termux/tokyonight_moon.properties index 7a662ba..32a8f9c 100644 --- a/extras/termux/tokyonight_moon.properties +++ b/extras/termux/tokyonight_moon.properties @@ -1,6 +1,6 @@ # ----------------------------------------------------------------------------- -# Theme: Tokyo Night Moon -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/termux/tokyonight_moon.properties +# Theme: Neko Night Moon +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/termux/nekonight_moon.properties # ----------------------------------------------------------------------------- background: #222436 diff --git a/extras/termux/tokyonight_night.properties b/extras/termux/tokyonight_night.properties index 17a39fc..5575827 100644 --- a/extras/termux/tokyonight_night.properties +++ b/extras/termux/tokyonight_night.properties @@ -1,6 +1,6 @@ # ----------------------------------------------------------------------------- -# Theme: Tokyo Night -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/termux/tokyonight_night.properties +# Theme: Neko Night +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/termux/nekonight_night.properties # ----------------------------------------------------------------------------- background: #1a1b26 diff --git a/extras/termux/tokyonight_storm.properties b/extras/termux/tokyonight_storm.properties index 268169d..abdbca1 100644 --- a/extras/termux/tokyonight_storm.properties +++ b/extras/termux/tokyonight_storm.properties @@ -1,6 +1,6 @@ # ----------------------------------------------------------------------------- -# Theme: Tokyo Night Storm -# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/termux/tokyonight_storm.properties +# Theme: Neko Night Storm +# Upstream: https://github.com/BrunoCiccarino/nekonight/raw/main/extras/termux/nekonight_storm.properties # ----------------------------------------------------------------------------- background: #24283b diff --git a/extras/tilix/tokyonight_day.json b/extras/tilix/tokyonight_day.json index 7ebc464..2596db1 100644 --- a/extras/tilix/tokyonight_day.json +++ b/extras/tilix/tokyonight_day.json @@ -1,5 +1,5 @@ { - "name": "Tokyo Night Day", + "name": "Neko Night Day", "comment": "", "use-theme-colors": false, "foreground-color": "#3760bf", diff --git a/extras/tilix/tokyonight_moon.json b/extras/tilix/tokyonight_moon.json index a99354f..c5ec0c7 100644 --- a/extras/tilix/tokyonight_moon.json +++ b/extras/tilix/tokyonight_moon.json @@ -1,5 +1,5 @@ { - "name": "Tokyo Night Moon", + "name": "Neko Night Moon", "comment": "", "use-theme-colors": false, "foreground-color": "#c8d3f5", diff --git a/extras/tilix/tokyonight_night.json b/extras/tilix/tokyonight_night.json index 935f238..0b56d3b 100644 --- a/extras/tilix/tokyonight_night.json +++ b/extras/tilix/tokyonight_night.json @@ -1,5 +1,5 @@ { - "name": "Tokyo Night", + "name": "Neko Night", "comment": "", "use-theme-colors": false, "foreground-color": "#c0caf5", diff --git a/extras/tilix/tokyonight_storm.json b/extras/tilix/tokyonight_storm.json index 1b265e0..ef46992 100644 --- a/extras/tilix/tokyonight_storm.json +++ b/extras/tilix/tokyonight_storm.json @@ -1,5 +1,5 @@ { - "name": "Tokyo Night Storm", + "name": "Neko Night Storm", "comment": "", "use-theme-colors": false, "foreground-color": "#c0caf5", diff --git a/extras/tmux/tokyonight_day.tmux b/extras/tmux/tokyonight_day.tmux index d3bb37c..8c7c2a9 100644 --- a/extras/tmux/tokyonight_day.tmux +++ b/extras/tmux/tokyonight_day.tmux @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# TokyoNight colors for Tmux +# NekoNight colors for Tmux set -g mode-style "fg=#2e7de9,bg=#a8aecb" diff --git a/extras/tmux/tokyonight_moon.tmux b/extras/tmux/tokyonight_moon.tmux index 82a720d..f0c0f69 100644 --- a/extras/tmux/tokyonight_moon.tmux +++ b/extras/tmux/tokyonight_moon.tmux @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# TokyoNight colors for Tmux +# NekoNight colors for Tmux set -g mode-style "fg=#82aaff,bg=#3b4261" diff --git a/extras/tmux/tokyonight_night.tmux b/extras/tmux/tokyonight_night.tmux index 1ee440a..becdf65 100644 --- a/extras/tmux/tokyonight_night.tmux +++ b/extras/tmux/tokyonight_night.tmux @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# TokyoNight colors for Tmux +# NekoNight colors for Tmux set -g mode-style "fg=#7aa2f7,bg=#3b4261" diff --git a/extras/tmux/tokyonight_storm.tmux b/extras/tmux/tokyonight_storm.tmux index f920139..9936403 100644 --- a/extras/tmux/tokyonight_storm.tmux +++ b/extras/tmux/tokyonight_storm.tmux @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# TokyoNight colors for Tmux +# NekoNight colors for Tmux set -g mode-style "fg=#7aa2f7,bg=#3b4261" diff --git a/extras/vscode/CHANGELOG.md b/extras/vscode/CHANGELOG.md new file mode 100644 index 0000000..9fb70b6 --- /dev/null +++ b/extras/vscode/CHANGELOG.md @@ -0,0 +1,292 @@ +# github-vscode-theme + +## 6.3.5 + +### Patch Changes + +- [#395](https://github.com/primer/github-vscode-theme/pull/395) [`b7991c4`](https://github.com/primer/github-vscode-theme/commit/b7991c42030126bdaf68f6cdeaefcee5a8d8d876) Thanks [@Damovisa](https://github.com/Damovisa)! - Fix inline code block contrast for High Contrast theme. + +## 6.3.4 + +### Patch Changes + +- [#357](https://github.com/primer/github-vscode-theme/pull/357) [`c783d6c`](https://github.com/primer/github-vscode-theme/commit/c783d6c42a13de7e1dc533b4fa475001e02d32b8) Thanks [@simurai](https://github.com/simurai)! - Improve color contrast for default Light and Dark themes + +## 6.3.3 + +### Patch Changes + +- [#342](https://github.com/primer/github-vscode-theme/pull/342) [`41b22cc`](https://github.com/primer/github-vscode-theme/commit/41b22cc830bfd59db96a5c663a697b9a4b46d2c8) Thanks [@simurai](https://github.com/simurai)! - Fix tab color for `GitHub Light High Contrast` + +* [#343](https://github.com/primer/github-vscode-theme/pull/343) [`89e26fc`](https://github.com/primer/github-vscode-theme/commit/89e26fcf5f1ca695dd1324321abad0b28d1f9c03) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Add issue + PR templates + +- [#328](https://github.com/primer/github-vscode-theme/pull/328) [`ed605f6`](https://github.com/primer/github-vscode-theme/commit/ed605f65cf463145ea904c06dfe91206b3dacd65) Thanks [@Mekomancer](https://github.com/Mekomancer)! - Increase diff contrast + +* [#337](https://github.com/primer/github-vscode-theme/pull/337) [`60db748`](https://github.com/primer/github-vscode-theme/commit/60db74858150191403d3255e605115b9e38dca40) Thanks [@ShadiestGoat](https://github.com/ShadiestGoat)! - Add better placeholder colors for semantic highlighting + +- [#346](https://github.com/primer/github-vscode-theme/pull/346) [`2c27f5d`](https://github.com/primer/github-vscode-theme/commit/2c27f5d099dc623c5529af12ffb3809edaaa33c9) Thanks [@simurai](https://github.com/simurai)! - Improve minimap slider contrast + +* [#348](https://github.com/primer/github-vscode-theme/pull/348) [`67a22b1`](https://github.com/primer/github-vscode-theme/commit/67a22b109c96e65186918673cc7a091d8ea7622e) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Update the color for the active header foreground + +- [#344](https://github.com/primer/github-vscode-theme/pull/344) [`19bf4a5`](https://github.com/primer/github-vscode-theme/commit/19bf4a599e6727ec8438d806af775096bda37108) Thanks [@simurai](https://github.com/simurai)! - Bump `primer/primitives` to `7.10.0` + +* [#347](https://github.com/primer/github-vscode-theme/pull/347) [`ed61642`](https://github.com/primer/github-vscode-theme/commit/ed61642babfb3beb27459f52f71ff0e171ce6890) Thanks [@simurai](https://github.com/simurai)! - Remove underline from link text + +## 6.3.2 + +### Patch Changes + +- [#316](https://github.com/primer/github-vscode-theme/pull/316) [`50149a8`](https://github.com/primer/github-vscode-theme/commit/50149a863e7b402df07bd3ae8a6577adf91193a3) Thanks [@simurai](https://github.com/simurai)! - Differentiate remote status-bar item + +## 6.3.1 + +### Patch Changes + +- [#311](https://github.com/primer/github-vscode-theme/pull/311) [`09968c2`](https://github.com/primer/github-vscode-theme/commit/09968c28ae3f773d70d619a03dee8eec776b403a) Thanks [@simurai](https://github.com/simurai)! - Remove `punctuation.definition.string` + +* [#312](https://github.com/primer/github-vscode-theme/pull/312) [`71c180a`](https://github.com/primer/github-vscode-theme/commit/71c180abfcd2ee037d61e90934131e8288435af9) Thanks [@simurai](https://github.com/simurai)! - Make `editorIndentGuide` semi-transparent + +- [#303](https://github.com/primer/github-vscode-theme/pull/303) [`735ec3c`](https://github.com/primer/github-vscode-theme/commit/735ec3c917e8d34da4bff3eaddb4f71e5aab74ae) Thanks [@simurai](https://github.com/simurai)! - Colorize JSON property-name + +## 6.3.0 + +### Minor Changes + +- [#296](https://github.com/primer/github-vscode-theme/pull/296) [`4fe2d37`](https://github.com/primer/github-vscode-theme/commit/4fe2d37844eb2b600ca4295e5a7c9255ffe2ac0d) Thanks [@simurai](https://github.com/simurai)! - Add support for strikethrough + +### Patch Changes + +- [#299](https://github.com/primer/github-vscode-theme/pull/299) [`b0f4bd9`](https://github.com/primer/github-vscode-theme/commit/b0f4bd9df4807e908fd46fa2ea1cb964e42358fe) Thanks [@simurai](https://github.com/simurai)! - Improve breakpoint icon for colorblind themes + +* [#297](https://github.com/primer/github-vscode-theme/pull/297) [`328c05b`](https://github.com/primer/github-vscode-theme/commit/328c05ba05bc941c176681b49e2981fca36c0365) Thanks [@simurai](https://github.com/simurai)! - Remove `string source` scope + +- [#292](https://github.com/primer/github-vscode-theme/pull/292) [`6283960`](https://github.com/primer/github-vscode-theme/commit/628396061a306faa61d9c22cbb287bb79f02f5a3) Thanks [@simurai](https://github.com/simurai)! - Colorize inline code blocks for the classic themes + +* [#294](https://github.com/primer/github-vscode-theme/pull/294) [`5593a09`](https://github.com/primer/github-vscode-theme/commit/5593a096d817ae7d9e7a9234ec31034d3a042cce) Thanks [@simurai](https://github.com/simurai)! - Improve selection in High Contrast themes + +- [#302](https://github.com/primer/github-vscode-theme/pull/302) [`c08c420`](https://github.com/primer/github-vscode-theme/commit/c08c4202024ab8d0914bab6f62e873d734a3a5aa) Thanks [@simurai](https://github.com/simurai)! - Reduce contrast for whitespace characters + +* [#298](https://github.com/primer/github-vscode-theme/pull/298) [`130db93`](https://github.com/primer/github-vscode-theme/commit/130db93c39d565656ee886e352e9f7c4c2d05a9c) Thanks [@simurai](https://github.com/simurai)! - Reduce contrast for line numbers + +## 6.2.0 + +### Minor Changes + +- [#287](https://github.com/primer/github-vscode-theme/pull/287) [`dd81ff1`](https://github.com/primer/github-vscode-theme/commit/dd81ff10180ecd76fd108defa7d2d61db9534462) Thanks [@simurai](https://github.com/simurai)! - Improve diff colors + +* [#274](https://github.com/primer/github-vscode-theme/pull/274) [`9b88e1c`](https://github.com/primer/github-vscode-theme/commit/9b88e1c652f649bf28bc149d681010c5fd8f22f1) Thanks [@BrunoCoimbra](https://github.com/BrunoCoimbra)! - Add bracket pair colorization + +- [#278](https://github.com/primer/github-vscode-theme/pull/278) [`a877e3f`](https://github.com/primer/github-vscode-theme/commit/a877e3f80496af89d000f5502764e0d579105325) Thanks [@clavin](https://github.com/clavin)! - Add inlay hint styles + +* [#184](https://github.com/primer/github-vscode-theme/pull/184) [`16d4682`](https://github.com/primer/github-vscode-theme/commit/16d468237346e27eafe265d8fad22ba918367b83) Thanks [@abeprincec](https://github.com/abeprincec)! - Add syntax highlight for puncation.section.embedded + +- [#239](https://github.com/primer/github-vscode-theme/pull/239) [`d1d663b`](https://github.com/primer/github-vscode-theme/commit/d1d663b5e5ee9c388c5ddad34bcf8798c59da6cf) Thanks [@jeffgennari](https://github.com/jeffgennari)! - Add debug and symbol icon colors + +### Patch Changes + +- [#285](https://github.com/primer/github-vscode-theme/pull/285) [`9eece4d`](https://github.com/primer/github-vscode-theme/commit/9eece4db938df76cad3e19f5a42ee8f0c2e5b762) Thanks [@simurai](https://github.com/simurai)! - Fix icons in high contrast themes + +* [#288](https://github.com/primer/github-vscode-theme/pull/288) [`74a48e5`](https://github.com/primer/github-vscode-theme/commit/74a48e5dde97f057e01f2956fb861a4b56692098) Thanks [@simurai](https://github.com/simurai)! - Increase contrast of the terminal + +## 6.1.0 + +### Minor Changes + +- [#212](https://github.com/primer/github-vscode-theme/pull/212) [`f03ca46`](https://github.com/primer/github-vscode-theme/commit/f03ca46b7ace7d98f8e6761dca56083e1ba54c3c) Thanks [@akiirui](https://github.com/akiirui)! - fix: add missing scope variable.other.enummember + +* [#193](https://github.com/primer/github-vscode-theme/pull/193) [`8bb0bc8`](https://github.com/primer/github-vscode-theme/commit/8bb0bc8a2150515ec5c6d9467335b6b827870ec5) Thanks [@serpilacar](https://github.com/serpilacar)! - Update markdown inline code scope + +- [#252](https://github.com/primer/github-vscode-theme/pull/252) [`706236c`](https://github.com/primer/github-vscode-theme/commit/706236cfaa6bdeb7ba3942d63eb03a82097fcc04) Thanks [@magic-akari](https://github.com/magic-akari)! - feat: add underline support + +### Patch Changes + +- [#268](https://github.com/primer/github-vscode-theme/pull/268) [`6bc9e1a`](https://github.com/primer/github-vscode-theme/commit/6bc9e1a21f3251b1064683e8d8fce4172a56e2a5) Thanks [@simurai](https://github.com/simurai)! - Update remote statusbar item + +## 6.0.0 + +### Major Changes + +- [#240](https://github.com/primer/github-vscode-theme/pull/240) [`075feb5`](https://github.com/primer/github-vscode-theme/commit/075feb5c753b3ac3fc2029e98203be5134bcd8f7) Thanks [@maximedegreve](https://github.com/maximedegreve)! - # Light High Contrast Theme + + GitHub Light High Contrast is now out of beta and available to everyone. 🎉 + + ![Light High Contrast Theme](https://user-images.githubusercontent.com/980622/151374445-39670cae-ab83-400c-8b7d-fe4dd36c7cc3.png) + +## 5.2.2 + +### Patch Changes + +- [#244](https://github.com/primer/github-vscode-theme/pull/244) [`d318d0e`](https://github.com/primer/github-vscode-theme/commit/d318d0eb3aa3a48c0983c3cc7b245847643b046a) Thanks [@maximedegreve](https://github.com/maximedegreve)! - Easier code to manage + port values to new primitives + +## 5.2.1 + +### Patch Changes + +- [#256](https://github.com/primer/github-vscode-theme/pull/256) [`6549f32`](https://github.com/primer/github-vscode-theme/commit/6549f32ee5e97bb01655d4de47672c15e58e06c9) Thanks [@simurai](https://github.com/simurai)! - Fix Dark Dimmed from loosing syntax highlighting + +## 5.2.0 + +### Minor Changes + +- [#240](https://github.com/primer/github-vscode-theme/pull/240) [`075feb5`](https://github.com/primer/github-vscode-theme/commit/075feb5c753b3ac3fc2029e98203be5134bcd8f7) Thanks [@maximedegreve](https://github.com/maximedegreve)! - Light High Contrast Theme + +## 5.1.0 + +### Minor Changes + +- [#225](https://github.com/primer/github-vscode-theme/pull/225) [`241d482`](https://github.com/primer/github-vscode-theme/commit/241d48297ea3a7c91d6bf3c61b5beffb13044f32) Thanks [@maximedegreve](https://github.com/maximedegreve)! - # Colorblind Light & Dark Theme + Adds a new GitHub Colorblind Light and Dark theme similar to the themes on github.com. + + ![Colorblind](https://user-images.githubusercontent.com/980622/136975341-4d5eca55-40d6-4d9f-8b33-ba8acbc805e4.png) + +## 5.0.3 + +### Patch Changes + +- [#234](https://github.com/primer/github-vscode-theme/pull/234) [`bbb3a83`](https://github.com/primer/github-vscode-theme/commit/bbb3a83f20be57106f6bf68bb06b7d64b2a58025) Thanks [@simurai](https://github.com/simurai)! - Update README + +## 5.0.2 + +### Patch Changes + +- [#232](https://github.com/primer/github-vscode-theme/pull/232) [`027ef70`](https://github.com/primer/github-vscode-theme/commit/027ef7050ba360a76d7bdd252ff60568edc4343b) Thanks [@jonrohan](https://github.com/jonrohan)! - Testing another patch release + +## 5.0.1 + +### Patch Changes + +- [#229](https://github.com/primer/github-vscode-theme/pull/229) [`4279f43`](https://github.com/primer/github-vscode-theme/commit/4279f431387df11544508f618ecc75c3739a95ed) Thanks [@simurai](https://github.com/simurai)! - Add note about publishing + +## 5.0.0 + +### Major Changes + +- Add new "GitHub Dark High Contrast" theme [#203](https://github.com/primer/github-vscode-theme/pull/203). +- Update colors from Primer Primitives [#203](https://github.com/primer/github-vscode-theme/pull/203). + +![GitHub VS Code theme](https://user-images.githubusercontent.com/378023/132220037-3cd3e777-55a6-445f-9a2e-da6020ebd78d.png) + +## 4.2.1 + +- Fix importing v2 colors from primer/primitives + +## 4.2.0 + +- Add `editorBracketHighlight` and ANSI to classic. [#205](https://github.com/primer/github-vscode-theme/pull/205). +- Set `terminal.tab.activeBorder` based on editor tab [#189](https://github.com/primer/github-vscode-theme/pull/189). +- More clearer for the difference between new theme and legacy theme [#191](https://github.com/primer/github-vscode-theme/pull/191). + +## 4.1.1 + +- Generate themes based on `4.1.0`. + +## 4.1.0 + +- Add support for secondary button style [#167](https://github.com/primer/github-vscode-theme/pull/167). +- Replace border.overlay with border.primary [#168](https://github.com/primer/github-vscode-theme/pull/168). + +## 4.0.5 + +- Increase contrast for selected list item [#165](https://github.com/primer/github-vscode-theme/pull/165). + +## 4.0.4 + +- Fix sidebar contrast [#158](https://github.com/primer/github-vscode-theme/pull/158). +- Use opacity for stackFrameHighlight [#162](https://github.com/primer/github-vscode-theme/pull/162). +- Improve ANSI colors [#164](https://github.com/primer/github-vscode-theme/pull/164). + +## 4.0.3 + +- Fix terminal colors (Light Default) [#160](https://github.com/primer/github-vscode-theme/pull/160). + +## 4.0.2 + +- Fix diffs (Light Default) [#153](https://github.com/primer/github-vscode-theme/pull/153). +- Style linkedEditing [#154](https://github.com/primer/github-vscode-theme/pull/154). +- Use opacity for foldBackground [#156](https://github.com/primer/github-vscode-theme/pull/156). + +## 4.0.1 + +- fix: Use color.ansi.blueBright for ansiBrightBlue [#142](https://github.com/primer/github-vscode-theme/pull/142). +- Use primer's official colors for activity bar, tab & panel borders [#143](https://github.com/primer/github-vscode-theme/pull/143). +- Use primer's primary text color for editor foreground [#144](https://github.com/primer/github-vscode-theme/pull/144). + +## 4.0.0 + +- Add GitHub.com dimmed theme [#138](https://github.com/primer/github-vscode-theme/pull/138). +- Add GitHub.com themes [#132](https://github.com/primer/github-vscode-theme/pull/132). + +## 3.0.0 + +- Revert dark changes [#123](https://github.com/primer/github-vscode-theme/pull/123). This should be the same as the `1.1.5` version. + +## 2.0.1 + +- Fix various issues for the new dark theme [#117](https://github.com/primer/github-vscode-theme/pull/117) + +## 2.0.0 + +- Update dark colors to match github.com [#102](https://github.com/primer/github-vscode-theme/pull/102) +- Improve JavaScript/React highlighting [#104](https://github.com/primer/github-vscode-theme/pull/104) + +## 1.1.5 + +- Rename color variables [#68](https://github.com/primer/github-vscode-theme/pull/68) +- Add statusbar prominent background [#86](https://github.com/primer/github-vscode-theme/pull/86) + +## 1.1.3 + +- Soften foreground color [#65](https://github.com/primer/github-vscode-theme/pull/65) +- Fix Markdown list punctuation [#65](https://github.com/primer/github-vscode-theme/pull/65) + +## 1.1.2 + +- Small optimisations [#42](https://github.com/primer/github-vscode-theme/pull/42) +- Stronger wordHighlightBorder [#40](https://github.com/primer/github-vscode-theme/pull/40) +- Fixed debug line color for dark theme [#44](https://github.com/primer/github-vscode-theme/pull/44) +- Add peekViewEditor colors for dark theme [#39](https://github.com/primer/github-vscode-theme/pull/39) + +## 1.1.1 + +- Increase contrast for list.hoverBackground [#37](https://github.com/primer/github-vscode-theme/pull/37) +- Tweak selection and highlights [#36](https://github.com/primer/github-vscode-theme/pull/36) +- Update debug foreground color for dark theme [#33](https://github.com/primer/github-vscode-theme/pull/33) +- Add editorWidget.background colors [#32](https://github.com/primer/github-vscode-theme/pull/32) + +## 1.1.0 + +- Add notifications [#31](https://github.com/primer/github-vscode-theme/pull/31) +- Enable semantic highlighting [#30](https://github.com/primer/github-vscode-theme/pull/30) +- Make diff editor colors more opaque [#28](https://github.com/primer/github-vscode-theme/pull/28) +- Darker strings [#27](https://github.com/primer/github-vscode-theme/pull/27) +- Fix small typo [#22](https://github.com/primer/github-vscode-theme/pull/22) +- Decrease whitespace characters color contrast [#17](https://github.com/primer/github-vscode-theme/pull/17) + +## 1.0.0 + +- Introduce dark theme [#4](https://github.com/primer/github-vscode-theme/pull/4) +- Dark color tweaks [#8](https://github.com/primer/github-vscode-theme/pull/8) +- Increase contrast for `editor.findMatch` [#12](https://github.com/primer/github-vscode-theme/pull/12) +- Increase contrast for `editor.findMatch` [#12](https://github.com/primer/github-vscode-theme/pull/12) +- Custom `list.activeSelection` [#13](https://github.com/primer/github-vscode-theme/pull/13) + +## 0.2.3 + +- Add status bar colors [#6](https://github.com/primer/github-vscode-theme/pull/6) + +## 0.2.2 + +- Fix invalid scope [#2](https://github.com/primer/github-vscode-theme/pull/2) + +## 0.2.1 + +- Update README + +## 0.2.0 + +- Change tabs +- Add icon + +## 0.1.0 + +- Initial release diff --git a/extras/vscode/LICENSE b/extras/vscode/LICENSE new file mode 100644 index 0000000..fcc8ec1 --- /dev/null +++ b/extras/vscode/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Primer + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/extras/vscode/README.md b/extras/vscode/README.md new file mode 100644 index 0000000..154f47d --- /dev/null +++ b/extras/vscode/README.md @@ -0,0 +1,16 @@ +# nekonight vscode + +### How contribute? + +1. Clone and open this [repo](https://github.com/BrunoCiccarino/nekonight) in VS Code +2. Run `yarn` to install the dependencies. +3. Press `F5` to open a new window with your extension loaded +4. Open `Code > Preferences > Color Theme` [`⌘k ⌘t`] and pick the "GitHub ..." theme you want to test. Note: It seems this has to be done 2x because the first time it switches back to the default light theme. This might be a bug? +5. Make changes to the [`/src/theme.js`](https://github.com/primer/nekonight/extras/vscode/src/theme.js) file. + - **UI**: For all changes to the "outer UI", like (status bar, file navigation etc.), take a look at the [Theme Color](https://code.visualstudio.com/api/references/theme-color) reference. + - **Syntax**: For changes to the "code highlighting", examine the syntax scopes by invoking the [`Developer: Inspect Editor Tokens and Scopes`](https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide#scope-inspector) command from the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) in the Extension Development Host window. +6. Run `yarn build` to update the theme. You can also run `yarn start` instead to automatically rebuild the theme while making changes and no reloading should be necessary. +7. Once you're happy, commit your changes and open a PR. + +> [!NOTE] +> If possible use colors from [Primer's color system](https://primer.style/primitives/colors). diff --git a/extras/vscode/icon.png b/extras/vscode/icon.png new file mode 100644 index 0000000..3584d06 Binary files /dev/null and b/extras/vscode/icon.png differ diff --git a/extras/vscode/package.json b/extras/vscode/package.json new file mode 100644 index 0000000..a01264c --- /dev/null +++ b/extras/vscode/package.json @@ -0,0 +1,107 @@ +{ + "name": "github-vscode-theme", + "displayName": "GitHub Theme", + "description": "GitHub theme for VS Code", + "version": "6.3.5", + "publisher": "GitHub", + "license": "MIT", + "icon": "icon.png", + "galleryBanner": { + "color": "#1b1f23", + "theme": "dark" + }, + "repository": { + "type": "git", + "url": "https://github.com/primer/github-vscode-theme" + }, + "bugs": { + "url": "https://github.com/primer/github-vscode-theme/issues" + }, + "engines": { + "vscode": "^1.43.0" + }, + "categories": [ + "Themes" + ], + "keywords": [ + "theme", + "github", + "light", + "dark", + "protanopia", + "colorblind" + ], + "contributes": { + "themes": [ + { + "label": "GitHub Light Default", + "uiTheme": "vs", + "path": "./themes/light-default.json" + }, + { + "label": "GitHub Light High Contrast", + "uiTheme": "hc-light", + "path": "./themes/light-high-contrast.json" + }, + { + "label": "GitHub Light Colorblind (Beta)", + "uiTheme": "vs", + "path": "./themes/light-colorblind.json" + }, + { + "label": "GitHub Dark Default", + "uiTheme": "vs-dark", + "path": "./themes/dark-default.json" + }, + { + "label": "GitHub Dark High Contrast", + "uiTheme": "hc-black", + "path": "./themes/dark-high-contrast.json" + }, + { + "label": "GitHub Dark Colorblind (Beta)", + "uiTheme": "vs-dark", + "path": "./themes/dark-colorblind.json" + }, + { + "label": "GitHub Dark Dimmed", + "uiTheme": "vs-dark", + "path": "./themes/dark-dimmed.json" + }, + { + "label": "GitHub Light", + "uiTheme": "vs", + "path": "./themes/light.json" + }, + { + "label": "GitHub Dark", + "uiTheme": "vs-dark", + "path": "./themes/dark.json" + } + ] + }, + "devDependencies": { + "@changesets/changelog-github": "^0.4.1", + "@changesets/cli": "^2.17.0", + "@primer/primitives": "7.10.0", + "chroma-js": "^2.1.2", + "color": "^3.1.2", + "nodemon": "^2.0.3", + "vsce": "^1.100.1" + }, + "scripts": { + "start": "nodemon --watch src src/index.js", + "build": "node src/index.js && mkdir -p build", + "package": "vsce package -o ./build/github-vscode-theme.vsix", + "prepublishOnly": "npm run build && vsce publish", + "release": "changeset publish" + }, + "__metadata": { + "id": "7328a705-91fc-49e6-8293-da6f112e482d", + "publisherDisplayName": "GitHub", + "publisherId": "7c1c19cd-78eb-4dfb-8999-99caf7679002" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/extras/vscode/src/classic/README.md b/extras/vscode/src/classic/README.md new file mode 100644 index 0000000..970bef7 --- /dev/null +++ b/extras/vscode/src/classic/README.md @@ -0,0 +1,3 @@ +# GitHub classic themes + +The classic `GitHub Light` and `GitHub Dark` themes were built before github.com added themes. They are still available but use a different color system and are not compatible with the rest of the themes. \ No newline at end of file diff --git a/extras/vscode/src/classic/colors.json b/extras/vscode/src/classic/colors.json new file mode 100644 index 0000000..56b4c17 --- /dev/null +++ b/extras/vscode/src/classic/colors.json @@ -0,0 +1,12 @@ +{ + "black": "#1b1f23", + "white": "#fff", + "gray": ["#fafbfc", "#f6f8fa", "#e1e4e8", "#d1d5da", "#959da5", "#6a737d", "#586069", "#444d56", "#2f363d", "#24292e"], + "blue": ["#f1f8ff", "#dbedff", "#c8e1ff", "#79b8ff", "#2188ff", "#0366d6", "#005cc5", "#044289", "#032f62", "#05264c"], + "green": ["#f0fff4", "#dcffe4", "#bef5cb", "#85e89d", "#34d058", "#28a745", "#22863a", "#176f2c", "#165c26", "#144620"], + "yellow": ["#fffdef", "#fffbdd", "#fff5b1", "#ffea7f", "#ffdf5d", "#ffd33d", "#f9c513", "#dbab09", "#b08800", "#735c0f"], + "orange": ["#fff8f2", "#ffebda", "#ffd1ac", "#ffab70", "#fb8532", "#f66a0a", "#e36209", "#d15704", "#c24e00", "#a04100"], + "red": ["#ffeef0", "#ffdce0", "#fdaeb7", "#f97583", "#ea4a5a", "#d73a49", "#cb2431", "#b31d28", "#9e1c23", "#86181d"], + "purple": ["#f5f0ff", "#e6dcfd", "#d1bcf9", "#b392f0", "#8a63d2", "#6f42c1", "#5a32a3", "#4c2889", "#3a1d6e", "#29134e"], + "pink": ["#ffeef8", "#fedbf0", "#f9b3dd", "#f692ce", "#ec6cb9", "#ea4aaa", "#d03592", "#b93a86", "#99306f", "#6d224f"] +} diff --git a/extras/vscode/src/classic/primer.js b/extras/vscode/src/classic/primer.js new file mode 100644 index 0000000..cceb91a --- /dev/null +++ b/extras/vscode/src/classic/primer.js @@ -0,0 +1,24 @@ +const colors = require("./colors.json"); // Based on "@primer/primitives": "2.0.1", + +function getColors(style) { + if (style === "dark") { + /* The array of light to dark colors are reversed to auto-generate dark theme */ + const darkColors = {}; + Object.entries(colors).forEach(([name, val]) => { + if (name === "black") { + darkColors.white = val; + } else if (name === "white") { + darkColors.black = val; + } else { + darkColors[name] = [...val].reverse(); + } + }); + return darkColors; + } else { + return colors; + } +} + +module.exports = { + getColors, +}; diff --git a/extras/vscode/src/classic/process.js b/extras/vscode/src/classic/process.js new file mode 100644 index 0000000..c3c2add --- /dev/null +++ b/extras/vscode/src/classic/process.js @@ -0,0 +1,22 @@ +const Color = require("color"); + +/* + * Generate color variant by inverting + * luminance in the HSL representation + */ +function getVariant(hex, style) { + if (style === "dark") { + const c = Color(hex); + return c + .hsl() + .lightness(100 - c.lightness()) + .hex() + .toLowerCase(); + } else { + return hex; + } +} + +module.exports = { + getVariant, +}; diff --git a/extras/vscode/src/classic/theme.js b/extras/vscode/src/classic/theme.js new file mode 100644 index 0000000..04d59e3 --- /dev/null +++ b/extras/vscode/src/classic/theme.js @@ -0,0 +1,573 @@ +const { getVariant } = require("./process"); +const { getColors } = require("./primer"); + +function getTheme({ style, name }) { + // Usage: `auto('pink')` + const auto = (hex) => getVariant(hex, style); + + // Usage: `pick({ light: "lightblue", dark: "darkblue" })` + const pick = (options) => options[style]; + + const primer = getColors(style); + + const workbenchForeground = pick({ light: primer.gray[8], dark: primer.gray[7] }); + const editorForeground = pick({ light: primer.gray[9], dark: primer.gray[7] }); + + return { + name: name, + colors: { + focusBorder: pick({ light: primer.blue[4], dark: primer.blue[3] }), + foreground: pick({ light: primer.gray[7], dark: primer.gray[6] }), + descriptionForeground: primer.gray[5], + errorForeground: primer.red[6], + + "textLink.foreground": pick({ light: primer.blue[5], dark: primer.blue[6] }), + "textLink.activeForeground": pick({ light: primer.blue[6], dark: primer.blue[7] }), + "textBlockQuote.background": primer.gray[0], + "textBlockQuote.border": primer.gray[2], + "textCodeBlock.background": primer.gray[1], + "textPreformat.foreground": primer.gray[6], + "textSeparator.foreground": primer.gray[3], + + "button.background": pick({ light: "#159739", dark: primer.green[2] }), + "button.foreground": pick({ light: primer.white, dark: primer.green[8] }), + "button.hoverBackground": pick({ light: "#138934", dark: primer.green[3] }), + + "button.secondaryBackground": pick({ light: primer.gray[2], dark: primer.gray[2]}), + "button.secondaryForeground": primer.black, + "button.secondaryHoverBackground": pick({ light: primer.gray[3], dark: primer.gray[3]}), + + "checkbox.background": pick({ light: primer.gray[0], dark: primer.gray[2] }), + "checkbox.border": pick({ light: primer.gray[3], dark: primer.white }), + + "dropdown.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), + "dropdown.border": pick({ light: primer.gray[2], dark: primer.white }), + "dropdown.foreground": workbenchForeground, + "dropdown.listBackground": pick({ light: primer.white, dark: primer.gray[0] }), + + "input.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), + "input.border": pick({ light: primer.gray[2], dark: primer.white }), + "input.foreground": workbenchForeground, + "input.placeholderForeground": pick({ light: primer.gray[4], dark: primer.gray[5] }), + + "badge.foreground": pick({ light: primer.blue[6], dark: primer.blue[7] }), + "badge.background": pick({ light: primer.blue[1], dark: primer.blue[2] }), + + "progressBar.background": primer.blue[4], + + "titleBar.activeForeground": workbenchForeground, + "titleBar.activeBackground": pick({ light: primer.white, dark: primer.gray[0] }), + "titleBar.inactiveForeground": primer.gray[5], + "titleBar.inactiveBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), + "titleBar.border": pick({ light: primer.gray[2], dark: primer.white }), + + "activityBar.foreground": workbenchForeground, + "activityBar.inactiveForeground": primer.gray[4], + "activityBar.background": pick({ light: primer.white, dark: primer.gray[0] }), + "activityBarBadge.foreground": pick({ light: primer.white, dark: primer.black }), + "activityBarBadge.background": pick({ light: primer.blue[4], dark: primer.blue[4] }), + "activityBar.activeBorder": "#f9826c", + "activityBar.border": pick({ light: primer.gray[2], dark: primer.white }), + + "sideBar.foreground": primer.gray[6], + "sideBar.background": pick({ light: primer.gray[1], dark: "#1f2428" }), + "sideBar.border": pick({ light: primer.gray[2], dark: primer.white }), + "sideBarTitle.foreground": workbenchForeground, + "sideBarSectionHeader.foreground": workbenchForeground, + "sideBarSectionHeader.background": pick({ light: primer.gray[1], dark: "#1f2428" }), + "sideBarSectionHeader.border": pick({ light: primer.gray[2], dark: primer.white }), + + "list.hoverForeground": workbenchForeground, + "list.inactiveSelectionForeground": workbenchForeground, + "list.activeSelectionForeground": workbenchForeground, + "list.hoverBackground": pick({ light: "#ebf0f4", dark: "#282e34" }), + "list.inactiveSelectionBackground": pick({ light: "#e8eaed", dark: "#282e34" }), + "list.activeSelectionBackground": pick({ light: "#e2e5e9", dark: "#39414a" }), + "list.inactiveFocusBackground": pick({ light: primer.blue[1], dark: "#1d2d3e" }), + "list.focusBackground": pick({ light: "#cce5ff", dark: primer.blue[2] }), + + "tree.indentGuidesStroke": pick({ light: primer.gray[2], dark: primer.gray[1] }), + + "notificationCenterHeader.foreground": primer.gray[5], + "notificationCenterHeader.background": pick({ light: primer.gray[2], dark: primer.gray[0] }), + "notifications.foreground": workbenchForeground, + "notifications.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), + "notifications.border": pick({ light: primer.gray[2], dark: primer.white }), + "notificationsErrorIcon.foreground": primer.red[5], + "notificationsWarningIcon.foreground": primer.orange[6], + "notificationsInfoIcon.foreground": primer.blue[6], + + "pickerGroup.border": primer.gray[2], + "pickerGroup.foreground": workbenchForeground, + "quickInput.background": primer.gray[0], + "quickInput.foreground": workbenchForeground, + + "statusBar.foreground": primer.gray[6], + "statusBar.background": pick({ light: primer.white, dark: primer.gray[0] }), + "statusBar.border": pick({ light: primer.gray[2], dark: primer.white }), + "statusBar.noFolderBackground": pick({ light: primer.white, dark: primer.gray[0] }), + "statusBar.debuggingBackground": auto("#f9826c"), + "statusBar.debuggingForeground": pick({ light: primer.white, dark: primer.black }), + "statusBarItem.prominentBackground": pick({ light: "#e8eaed", dark: "#282e34" }), + "statusBarItem.remoteForeground": primer.gray[6], + "statusBarItem.remoteBackground": pick({ light: primer.white, dark: primer.gray[0] }), + + "editorGroupHeader.tabsBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), + "editorGroupHeader.tabsBorder": pick({ light: primer.gray[2], dark: primer.white }), + "editorGroup.border": pick({ light: primer.gray[2], dark: primer.white }), + + "tab.activeForeground": workbenchForeground, + "tab.inactiveForeground": primer.gray[5], + "tab.inactiveBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), + "tab.activeBackground": pick({ light: primer.white, dark: primer.gray[0] }), + "tab.hoverBackground": pick({ light: primer.white, dark: primer.gray[0] }), + "tab.unfocusedHoverBackground": pick({ light: primer.white, dark: primer.gray[0] }), + "tab.border": pick({ light: primer.gray[2], dark: primer.white }), + "tab.unfocusedActiveBorderTop": pick({ light: primer.gray[2], dark: primer.white }), + "tab.activeBorder": pick({ light: primer.white, dark: primer.gray[0] }), + "tab.unfocusedActiveBorder": pick({ light: primer.white, dark: primer.gray[0] }), + "tab.activeBorderTop": "#f9826c", + + "breadcrumb.foreground": primer.gray[5], + "breadcrumb.focusForeground": workbenchForeground, + "breadcrumb.activeSelectionForeground": primer.gray[6], + "breadcrumbPicker.background": pick({ light: primer.gray[0], dark: "#2b3036" }), + + "editor.foreground": editorForeground, + "editor.background": pick({ light: primer.white, dark: primer.gray[0] }), + "editorWidget.background": pick({ light: primer.gray[1], dark: "#1f2428" }), + "editor.foldBackground": pick({ light: "#d1d5da11", dark: "#58606915" }), // needs opacity + "editor.lineHighlightBackground": pick({ light: primer.gray[1], dark: "#2b3036" }), + "editorLineNumber.foreground": pick({ light: "#1b1f234d", dark: primer.gray[2] }), + "editorLineNumber.activeForeground": editorForeground, + "editorIndentGuide.background": pick({ light: "#eff2f6", dark: primer.gray[1] }), + "editorIndentGuide.activeBackground": pick({ light: "#d7dbe0", dark: primer.gray[2] }), + "editorWhitespace.foreground": pick({ light: primer.gray[3], dark: primer.gray[2] }), + "editorCursor.foreground": primer.blue[7], + "editorError.foreground": primer.red[6], + "editorWarning.foreground": primer.yellow[6], + + "editor.findMatchBackground": pick({ light: primer.yellow[4], dark: "#ffd33d44" }), + "editor.findMatchHighlightBackground": pick({ light: "#ffdf5d66", dark: "#ffd33d22" }), + "editor.linkedEditingBackground": pick({ light: "#0366d611", dark: "#3392FF22" }), + "editor.inactiveSelectionBackground": pick({ light: "#0366d611", dark: "#3392FF22" }), + "editor.selectionBackground": pick({ light: "#0366d625", dark: "#3392FF44" }), + "editor.selectionHighlightBackground": pick({ light: "#34d05840", dark: "#17E5E633" }), + "editor.selectionHighlightBorder": pick({ light: "#34d05800", dark: "#17E5E600" }), + "editor.wordHighlightBackground": pick({ light: "#34d05800", dark: "#17E5E600" }), + "editor.wordHighlightStrongBackground": pick({ light: "#34d05800", dark: "#17E5E600" }), + "editor.wordHighlightBorder": pick({ light: "#24943e99", dark: "#17E5E699" }), + "editor.wordHighlightStrongBorder": pick({ light: "#24943e50", dark: "#17E5E666" }), + "editorBracketMatch.background": pick({ light: "#34d05840", dark: "#17E5E650" }), + "editorBracketMatch.border": pick({ light: "#34d05800", dark: "#17E5E600" }), + + "editorGutter.modifiedBackground": pick({ light: primer.blue[4], dark: primer.blue[5] }), + "editorGutter.addedBackground": pick({ light: primer.green[5], dark: primer.green[4] }), + "editorGutter.deletedBackground": primer.red[5], + + "diffEditor.insertedTextBackground": pick({ light: "#34d05822", dark: "#28a74530" }), + "diffEditor.removedTextBackground": pick({ light: "#d73a4922", dark: "#d73a4930" }), + + "scrollbar.shadow": pick({ light: "#6a737d33", dark: "#0008" }), + "scrollbarSlider.background": pick({ light: "#959da533", dark: "#6a737d33" }), + "scrollbarSlider.hoverBackground": pick({ light: "#959da544", dark: "#6a737d44" }), + "scrollbarSlider.activeBackground": pick({ light: "#959da588", dark: "#6a737d88" }), + "editorOverviewRuler.border": primer.white, + + "panel.background": pick({ light: primer.gray[1], dark: "#1f2428" }), + "panel.border": pick({ light: primer.gray[2], dark: primer.white }), + "panelTitle.activeBorder": "#f9826c", + "panelTitle.activeForeground": workbenchForeground, + "panelTitle.inactiveForeground": primer.gray[5], + "panelInput.border": pick({ light: primer.gray[2], dark: primer.gray[1] }), + + "terminal.foreground": primer.gray[6], + "terminal.tab.activeBorder": "#f9826c", + "terminalCursor.background": primer.gray[3], + "terminalCursor.foreground": primer.blue[6], + + // Test ANSI colors with: + // echo -e "\033[0mNC (No color)" + // echo -e "\033[1;37mWHITE\t\033[0;30mBLACK" + // echo -e "\033[0;34mBLUE\t\033[1;34mLIGHT_BLUE" + // echo -e "\033[0;32mGREEN\t\033[1;32mLIGHT_GREEN" + // echo -e "\033[0;36mCYAN\t\033[1;36mLIGHT_CYAN" + // echo -e "\033[0;31mRED\t\033[1;31mLIGHT_RED" + // echo -e "\033[0;35mPURPLE\t\033[1;35mLIGHT_PURPLE" + // echo -e "\033[0;33mYELLOW\t\033[1;33mLIGHT_YELLOW" + // echo -e "\033[1;30mGRAY\t\033[0;37mLIGHT_GRAY" + "terminal.ansiBrightWhite": pick({ light: primer.gray[3], dark: primer.gray[9] }), // WHITE + "terminal.ansiWhite": pick({ light: primer.gray[5], dark: primer.gray[6] }), // LIGHT_GRAY + "terminal.ansiBrightBlack": pick({ light: primer.gray[4], dark: primer.gray[5] }), // GRAY + "terminal.ansiBlack": pick({ light: primer.gray[9], dark: primer.gray[3] }), // BLACK + "terminal.ansiBlue": primer.blue[5], + "terminal.ansiBrightBlue": primer.blue[6], + "terminal.ansiGreen": primer.green[5], + "terminal.ansiBrightGreen": primer.green[6], + "terminal.ansiCyan": pick({ light: "#1b7c83", dark: "#39c5cf" }), + "terminal.ansiBrightCyan": pick({ light: "#3192aa", dark: "#56d4dd" }), + "terminal.ansiRed": primer.red[5], + "terminal.ansiBrightRed": primer.red[6], + "terminal.ansiMagenta": primer.purple[6], + "terminal.ansiBrightMagenta": primer.purple[6], + "terminal.ansiYellow": pick({ light: primer.yellow[7], dark: primer.yellow[6] }), + "terminal.ansiBrightYellow": pick({ light: primer.yellow[8], dark: primer.yellow[6] }), + + "editorBracketHighlight.foreground1": primer.blue[6], + "editorBracketHighlight.foreground2": primer.orange[6], + "editorBracketHighlight.foreground3": primer.purple[6], + "editorBracketHighlight.foreground4": primer.blue[6], + "editorBracketHighlight.foreground5": primer.orange[6], + "editorBracketHighlight.foreground6": primer.purple[6], + + "gitDecoration.addedResourceForeground": primer.green[5], + "gitDecoration.modifiedResourceForeground": primer.blue[6], + "gitDecoration.deletedResourceForeground": primer.red[5], + "gitDecoration.untrackedResourceForeground": primer.green[5], + "gitDecoration.ignoredResourceForeground": primer.gray[4], + "gitDecoration.conflictingResourceForeground": primer.orange[6], + "gitDecoration.submoduleResourceForeground": primer.gray[4], + + "debugToolBar.background": pick({ light: primer.white, dark: "#2b3036" }), + "editor.stackFrameHighlightBackground": pick({ light: "#ffd33d33", dark: "#C6902625" }), // needs opacity (yellow) + "editor.focusedStackFrameHighlightBackground": pick({ light: "#28a74525", dark: "#2b6a3033" }), // needs opacity (green) + + "peekViewEditor.matchHighlightBackground": pick({ dark: "#ffd33d33" }), + "peekViewResult.matchHighlightBackground": pick({ dark: "#ffd33d33" }), + "peekViewEditor.background": pick({ dark: "#1f242888" }), + "peekViewResult.background": pick({ dark: "#1f2428" }), + + "settings.headerForeground": workbenchForeground, + "settings.modifiedItemIndicator": primer.blue[4], + "welcomePage.buttonBackground": primer.gray[1], + "welcomePage.buttonHoverBackground": primer.gray[2], + }, + semanticHighlighting: true, + tokenColors: [ + { + scope: ["comment", "punctuation.definition.comment", "string.comment"], + settings: { + foreground: pick({ light: primer.gray[5], dark: primer.gray[4] }), + }, + }, + { + scope: [ + "constant", + "entity.name.constant", + "variable.other.constant", + "variable.other.enummember", + "variable.language", + ], + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: ["entity", "entity.name"], + settings: { + foreground: pick({ light: primer.purple[5], dark: primer.purple[6] }), + }, + }, + { + scope: "variable.parameter.function", + settings: { + foreground: editorForeground, + }, + }, + { + scope: "entity.name.tag", + settings: { + foreground: primer.green[6], + }, + }, + { + scope: "keyword", + settings: { + foreground: pick({ light: primer.red[5], dark: primer.red[6] }), + }, + }, + { + scope: ["storage", "storage.type"], + settings: { + foreground: pick({ light: primer.red[5], dark: primer.red[6] }), + }, + }, + { + scope: [ + "storage.modifier.package", + "storage.modifier.import", + "storage.type.java", + ], + settings: { + foreground: editorForeground, + }, + }, + { + scope: [ + "string", + "punctuation.definition.string", + "string punctuation.section.embedded source", + ], + settings: { + foreground: pick({ light: primer.blue[8], dark: "#9ecbff" }), + }, + }, + { + scope: "support", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "meta.property-name", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "variable", + settings: { + foreground: primer.orange[6], + }, + }, + { + scope: "variable.other", + settings: { + foreground: editorForeground, + }, + }, + { + scope: "invalid.broken", + settings: { + fontStyle: "italic", + foreground: primer.red[7], + }, + }, + { + scope: "invalid.deprecated", + settings: { + fontStyle: "italic", + foreground: primer.red[7], + }, + }, + { + scope: "invalid.illegal", + settings: { + fontStyle: "italic", + foreground: primer.red[7], + }, + }, + { + scope: "invalid.unimplemented", + settings: { + fontStyle: "italic", + foreground: primer.red[7], + }, + }, + { + scope: "carriage-return", + settings: { + fontStyle: "italic underline", + background: pick({ light: primer.red[5], dark: primer.red[6] }), + foreground: primer.gray[0], + content: "^M", + }, + }, + { + scope: "message.error", + settings: { + foreground: primer.red[7], + }, + }, + { + scope: "string variable", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: ["source.regexp", "string.regexp"], + settings: { + foreground: primer.blue[8], + }, + }, + { + scope: [ + "string.regexp.character-class", + "string.regexp constant.character.escape", + "string.regexp source.ruby.embedded", + "string.regexp string.regexp.arbitrary-repitition", + ], + settings: { + foreground: primer.blue[8], + }, + }, + { + scope: "string.regexp constant.character.escape", + settings: { + fontStyle: "bold", + foreground: primer.green[6], + }, + }, + { + scope: "support.constant", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "support.variable", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "meta.module-reference", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "punctuation.definition.list.begin.markdown", + settings: { + foreground: primer.orange[6], + }, + }, + { + scope: ["markup.heading", "markup.heading entity.name"], + settings: { + fontStyle: "bold", + foreground: primer.blue[6], + }, + }, + { + scope: "markup.quote", + settings: { + foreground: primer.green[6], + }, + }, + { + scope: "markup.italic", + settings: { + fontStyle: "italic", + foreground: editorForeground, + }, + }, + { + scope: "markup.bold", + settings: { + fontStyle: "bold", + foreground: editorForeground, + }, + }, + { + scope: ["markup.underline"], + settings: { + fontStyle: "underline", + }, + }, + { + scope: ["markup.strikethrough"], + settings: { + fontStyle: "strikethrough", + }, + }, + { + scope: "markup.inline.raw", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: [ + "markup.deleted", + "meta.diff.header.from-file", + "punctuation.definition.deleted", + ], + settings: { + background: primer.red[0], + foreground: primer.red[7], + }, + }, + { + scope: [ + "markup.inserted", + "meta.diff.header.to-file", + "punctuation.definition.inserted", + ], + settings: { + background: primer.green[0], + foreground: primer.green[6], + }, + }, + { + scope: ["markup.changed", "punctuation.definition.changed"], + settings: { + background: primer.orange[1], + foreground: primer.orange[6], + }, + }, + { + scope: ["markup.ignored", "markup.untracked"], + settings: { + foreground: primer.gray[1], + background: primer.blue[6], + }, + }, + { + scope: "meta.diff.range", + settings: { + foreground: pick({ light: primer.purple[5], dark: primer.purple[6] }), + fontStyle: "bold", + }, + }, + { + scope: "meta.diff.header", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: "meta.separator", + settings: { + fontStyle: "bold", + foreground: primer.blue[6], + }, + }, + { + scope: "meta.output", + settings: { + foreground: primer.blue[6], + }, + }, + { + scope: [ + "brackethighlighter.tag", + "brackethighlighter.curly", + "brackethighlighter.round", + "brackethighlighter.square", + "brackethighlighter.angle", + "brackethighlighter.quote", + ], + settings: { + foreground: primer.gray[6], + }, + }, + { + scope: "brackethighlighter.unmatched", + settings: { + foreground: primer.red[7], + }, + }, + { + scope: ["constant.other.reference.link", "string.other.link"], + settings: { + foreground: primer.blue[8], + fontStyle: "underline", + }, + }, + ], + }; +} + +module.exports = getTheme; diff --git a/extras/vscode/src/colors.js b/extras/vscode/src/colors.js new file mode 100644 index 0000000..d9b640c --- /dev/null +++ b/extras/vscode/src/colors.js @@ -0,0 +1,51 @@ +const lightColors = require("@primer/primitives/dist/json/colors/light.json"); +const lightHighContrastColors = require("@primer/primitives/dist/json/colors/light_high_contrast.json"); +const lightColorblindColors = require("@primer/primitives/dist/json/colors/light_colorblind.json"); +const darkColors = require("@primer/primitives/dist/json/colors/dark.json"); +const darkHighContrastColors = require("@primer/primitives/dist/json/colors/dark_high_contrast.json"); +const darkColorblindColors = require("@primer/primitives/dist/json/colors/dark_colorblind.json"); +const dimmedColors = require("@primer/primitives/dist/json/colors/dark_dimmed.json"); + +function getColors(theme) { + + switch(theme) { + case "light": + + // Temp override until Primitives are updated + lightColors.success.emphasis = "#1f883d"; + lightColors.btn.primary.bg = lightColors.success.emphasis; + lightColors.btn.primary.hoverBg = lightColors.scale.green[5]; + lightColors.fg.default = "#1f2328"; + lightColors.fg.muted = "#656d76"; + + return lightColors; + case "light_high_contrast": + return lightHighContrastColors; + case "light_colorblind": + return lightColorblindColors; + case "dark": + + // Temp override until Primitives are updated + darkColors.fg.default = "#e6edf3"; + darkColors.fg.muted = "#7d8590"; + darkColors.accent.fg = "#2f81f7"; + darkColors.severe.subtle = "rgba(219, 109, 40, 0.1)"; + darkColors.danger.subtle = "rgba(248, 81, 73, 0.1)"; + darkColors.done.subtle = "rgba(163, 113, 247, 0.1)"; + darkColors.sponsors.subtle = "rgba(219, 97, 162, 0.1)"; + + return darkColors; + case "dark_high_contrast": + return darkHighContrastColors; + case "dark_colorblind": + return darkColorblindColors; + case "dark_dimmed": + return dimmedColors; + default: + throw new Error(`Colors are missing for value: ${theme}`); + } +} + +module.exports = { + getColors, +}; diff --git a/extras/vscode/src/index.js b/extras/vscode/src/index.js new file mode 100644 index 0000000..a9cd565 --- /dev/null +++ b/extras/vscode/src/index.js @@ -0,0 +1,66 @@ +const fs = require("fs").promises; +const getTheme = require("./theme"); +const getClassicTheme = require("./classic/theme"); + +const lightDefaultTheme = getTheme({ + theme: "light", + name: "GitHub Light Default", +}); + +const lightHighContrastTheme = getTheme({ + theme: "light_high_contrast", + name: "GitHub Light High Contrast" +}) + +const lightColorblindTheme = getTheme({ + theme: "light_colorblind", + name: "GitHub Light Colorblind", +}); + +const darkDefaultTheme = getTheme({ + theme: "dark", + name: "GitHub Dark Default", +}); + +const darkHighContrastTheme = getTheme({ + theme: "dark_high_contrast", + name: "GitHub Dark High Contrast" +}) + +const darkColorblindTheme = getTheme({ + theme: "dark_colorblind", + name: "GitHub Dark Colorblind" +}) + +const darkDimmedTheme = getTheme({ + theme: "dark_dimmed", + name: "GitHub Dark Dimmed" +}) + +// Classic + +const lightTheme = getClassicTheme({ + style: "light", + name: "GitHub Light", +}); + +const darkTheme = getClassicTheme({ + style: "dark", + name: "GitHub Dark", +}); + +// Write themes + +fs.mkdir("./themes", { recursive: true }) + .then(() => Promise.all([ + fs.writeFile("./themes/light-default.json", JSON.stringify(lightDefaultTheme, null, 2)), + fs.writeFile("./themes/light-high-contrast.json", JSON.stringify(lightHighContrastTheme, null, 2)), + fs.writeFile("./themes/light-colorblind.json", JSON.stringify(lightColorblindTheme, null, 2)), + fs.writeFile("./themes/dark-default.json", JSON.stringify(darkDefaultTheme, null, 2)), + fs.writeFile("./themes/dark-high-contrast.json", JSON.stringify(darkHighContrastTheme, null, 2)), + fs.writeFile("./themes/dark-colorblind.json", JSON.stringify(darkColorblindTheme, null, 2)), + fs.writeFile("./themes/dark-dimmed.json", JSON.stringify(darkDimmedTheme, null, 2)), + fs.writeFile("./themes/light.json", JSON.stringify(lightTheme, null, 2)), + fs.writeFile("./themes/dark.json", JSON.stringify(darkTheme, null, 2)), + ])) + .catch(() => process.exit(1)) diff --git a/extras/vscode/src/theme.js b/extras/vscode/src/theme.js new file mode 100644 index 0000000..d8cde46 --- /dev/null +++ b/extras/vscode/src/theme.js @@ -0,0 +1,720 @@ +const chroma = require("chroma-js"); +const { getColors } = require("./colors"); + +// Choosing colors from primer/primitives +// There are multiple ways to define what color is used: + +// 1. Global variable +// e.g. "textLink.foreground": color.fg.default, +// 2. Color scale +// e.g. "textLink.foreground": scale.blue[5], +// 3. Per theme. Useful when a certain theme needs an exception +// e.g. "textLink.foreground": themes({ light: scale.blue[5], light_high_contrast: scale.blue[5], light_colorblind: scale.blue[5], dark: scale.blue[2], dark_high_contrast: scale.blue[3], dark_colorblind: scale.blue[2], dark_dimmed: scale.blue[3] }), + +function getTheme({ theme, name }) { + + const themes = (options) => options[theme]; // Usage: themes({ light: "lightblue", light_high_contrast: "lightblue", light_colorblind: "lightblue", dark: "darkblue", dark_high_contrast: "darkblue", dark_colorblind: "darkblue", dark_dimmed: "royalblue" }) + const rawColors = getColors(theme) + const color = changeColorToHexAlphas(rawColors) + const scale = color.scale; // Usage: scale.blue[6] + + const onlyDark = (color) => { + return themes({ dark: color, dark_high_contrast: color, dark_colorblind: color, dark_dimmed: color }) + } + + const onlyHighContrast = (color) => { + return themes({ light_high_contrast: color, dark_high_contrast: color }) + } + + const onlyDarkHighContrast = (color) => { + return themes({ dark_high_contrast: color }) + } + + const lightDark = (light, dark) => { + return themes({ light: light, light_high_contrast: light, light_colorblind: light, dark: dark, dark_high_contrast: dark, dark_colorblind: dark, dark_dimmed: dark }) + } + + const alpha = (color, alpha) => { + return chroma(color).alpha(alpha).hex() + } + + return { + name: name, + colors: { + focusBorder : color.accent.emphasis, + foreground : color.fg.default, + descriptionForeground: color.fg.muted, + errorForeground : color.danger.fg, + + "textLink.foreground" : color.accent.fg, + "textLink.activeForeground": color.accent.fg, + "textBlockQuote.background": color.canvas.inset, + "textBlockQuote.border" : color.border.default, + "textCodeBlock.background" : color.neutral.muted, + "textPreformat.foreground" : color.fg.muted, + "textPreformat.background" : color.neutral.muted, + "textSeparator.foreground" : color.border.muted, + + "icon.foreground" : color.fg.muted, + "keybindingLabel.foreground": color.fg.default, + + "button.background" : color.btn.primary.bg, + "button.foreground" : color.btn.primary.text, + "button.hoverBackground": color.btn.primary.hoverBg, + + "button.secondaryBackground" : color.btn.activeBg, + "button.secondaryForeground" : color.btn.text, + "button.secondaryHoverBackground": color.btn.hoverBg, + + "checkbox.background": color.canvas.subtle, + "checkbox.border" : color.border.default, + + "dropdown.background" : color.canvas.overlay, + "dropdown.border" : color.border.default, + "dropdown.foreground" : color.fg.default, + "dropdown.listBackground": color.canvas.overlay, + + "input.background" : color.canvas.default, + "input.border" : color.border.default, + "input.foreground" : color.fg.default, + "input.placeholderForeground": color.fg.subtle, + + "badge.foreground": color.fg.onEmphasis, + "badge.background": color.accent.emphasis, + + "progressBar.background": color.accent.emphasis, + + "titleBar.activeForeground" : color.fg.muted, + "titleBar.activeBackground" : color.canvas.default, + "titleBar.inactiveForeground": color.fg.muted, + "titleBar.inactiveBackground": color.canvas.inset, + "titleBar.border" : color.border.default, + + "activityBar.foreground" : color.fg.default, + "activityBar.inactiveForeground": color.fg.muted, + "activityBar.background" : color.canvas.default, + "activityBarBadge.foreground" : color.fg.onEmphasis, + "activityBarBadge.background" : color.accent.emphasis, + "activityBar.activeBorder" : color.primer.border.active, + "activityBar.border" : color.border.default, + + "sideBar.foreground" : color.fg.default, + "sideBar.background" : color.canvas.inset, + "sideBar.border" : color.border.default, + "sideBarTitle.foreground" : color.fg.default, + "sideBarSectionHeader.foreground": color.fg.default, + "sideBarSectionHeader.background": color.canvas.inset, + "sideBarSectionHeader.border" : color.border.default, + + "list.hoverForeground" : color.fg.default, + "list.inactiveSelectionForeground": color.fg.default, + "list.activeSelectionForeground" : color.fg.default, + "list.hoverBackground" : color.neutral.subtle, + "list.inactiveSelectionBackground": color.neutral.muted, + "list.activeSelectionBackground" : color.neutral.muted, + "list.focusForeground" : color.fg.default, + "list.focusBackground" : color.accent.subtle, + "list.inactiveFocusBackground" : color.accent.subtle, + "list.highlightForeground" : color.accent.fg, + + "tree.indentGuidesStroke": color.border.muted, + + "notificationCenterHeader.foreground": color.fg.muted, + "notificationCenterHeader.background": color.canvas.subtle, + "notifications.foreground" : color.fg.default, + "notifications.background" : color.canvas.overlay, + "notifications.border" : color.border.default, + "notificationsErrorIcon.foreground" : color.danger.fg, + "notificationsWarningIcon.foreground": color.attention.fg, + "notificationsInfoIcon.foreground" : color.accent.fg, + + "pickerGroup.border" : color.border.default, + "pickerGroup.foreground": color.fg.muted, + "quickInput.background" : color.canvas.overlay, + "quickInput.foreground" : color.fg.default, + + "statusBar.foreground" : color.fg.muted, + "statusBar.background" : color.canvas.default, + "statusBar.border" : color.border.default, + "statusBar.focusBorder" : alpha(color.accent.emphasis, 0.5), + "statusBar.noFolderBackground" : color.canvas.default, + "statusBar.debuggingForeground" : color.fg.onEmphasis, + "statusBar.debuggingBackground" : color.danger.emphasis, + "statusBarItem.prominentBackground": color.neutral.muted, + "statusBarItem.remoteForeground" : color.fg.default, + "statusBarItem.remoteBackground" : lightDark(color.scale.gray[1], color.scale.gray[6]), + "statusBarItem.hoverBackground" : alpha(color.fg.default, 0.08), + "statusBarItem.activeBackground" : alpha(color.fg.default, 0.12), + "statusBarItem.focusBorder" : color.accent.emphasis, + + "editorGroupHeader.tabsBackground": color.canvas.inset, + "editorGroupHeader.tabsBorder" : color.border.default, + "editorGroup.border" : color.border.default, + + "tab.activeForeground" : color.fg.default, + "tab.inactiveForeground" : color.fg.muted, + "tab.inactiveBackground" : color.canvas.inset, + "tab.activeBackground" : color.canvas.default, + "tab.hoverBackground" : color.canvas.default, + "tab.unfocusedHoverBackground": color.neutral.subtle, + "tab.border" : color.border.default, + "tab.unfocusedActiveBorderTop": color.border.default, + "tab.activeBorder" : color.canvas.default, + "tab.unfocusedActiveBorder" : color.canvas.default, + "tab.activeBorderTop" : color.primer.border.active, + + "breadcrumb.foreground" : color.fg.muted, + "breadcrumb.focusForeground" : color.fg.default, + "breadcrumb.activeSelectionForeground": color.fg.muted, + "breadcrumbPicker.background" : color.canvas.overlay, + + "editor.foreground" : color.fg.default, + "editor.background" : color.canvas.default, + "editorWidget.background" : color.canvas.overlay, + "editor.foldBackground" : alpha(color.neutral.emphasis, 0.1), + "editor.lineHighlightBackground" : color.codemirror.activelineBg, + "editor.lineHighlightBorder" : onlyDarkHighContrast(color.accent.fg), + "editorLineNumber.foreground" : lightDark(scale.gray[4], scale.gray[4]), + "editorLineNumber.activeForeground" : color.fg.default, + "editorIndentGuide.background" : alpha(color.fg.default, 0.12), + "editorIndentGuide.activeBackground": alpha(color.fg.default, 0.24), + "editorWhitespace.foreground" : lightDark( scale.gray[3], scale.gray[5]), + "editorCursor.foreground" : color.accent.fg, + + "editor.findMatchBackground" : color.attention.emphasis, + "editor.findMatchHighlightBackground" : alpha(scale.yellow[1], 0.5), + "editor.linkedEditingBackground" : alpha(color.accent.fg, 0.07), + "editor.inactiveSelectionBackground" : alpha(color.accent.fg, 0.07), + "editor.selectionBackground" : alpha(color.accent.fg, 0.2), + "editor.selectionHighlightBackground" : alpha(scale.green[3], 0.25), + "editor.wordHighlightBackground" : alpha(color.neutral.subtle, 0.5), + "editor.wordHighlightBorder" : alpha(color.neutral.muted, 0.6), + "editor.wordHighlightStrongBackground" : alpha(color.neutral.muted, 0.3), + "editor.wordHighlightStrongBorder" : alpha(color.neutral.muted, 0.6), + "editorBracketMatch.background" : alpha(scale.green[3], 0.25), + "editorBracketMatch.border" : alpha(scale.green[3], 0.6), + // text selection for High Contrast themes + "editor.selectionForeground" : onlyHighContrast(color.fg.onEmphasis), + "editor.selectionBackground" : onlyHighContrast(color.neutral.emphasisPlus), + "editor.inactiveSelectionBackground" : onlyHighContrast(color.neutral.emphasis), + + "editorInlayHint.background": alpha(scale.gray[3], 0.2), + "editorInlayHint.foreground": color.fg.muted, + "editorInlayHint.typeBackground": alpha(scale.gray[3], 0.2), + "editorInlayHint.typeForeground": color.fg.muted, + "editorInlayHint.paramBackground": alpha(scale.gray[3], 0.2), + "editorInlayHint.paramForeground": color.fg.muted, + + "editorGutter.modifiedBackground": color.attention.muted, + "editorGutter.addedBackground" : color.success.muted, + "editorGutter.deletedBackground" : color.danger.muted, + + "diffEditor.insertedLineBackground": lightDark(alpha(scale.green[1], 0.3), alpha(scale.green[5], 0.15)), + "diffEditor.insertedTextBackground": lightDark(alpha(scale.green[2], 0.5), alpha(scale.green[3], 0.3)), + "diffEditor.removedLineBackground" : lightDark(alpha(scale.red[1], 0.3), alpha(scale.red[5], 0.15)), + "diffEditor.removedTextBackground" : lightDark(alpha(scale.red[3], 0.4), alpha(scale.red[3], 0.3)), + + "scrollbar.shadow" : alpha(scale.gray[5], 0.2), + "scrollbarSlider.background" : lightDark(alpha(scale.gray[4], 0.2), alpha(scale.gray[3], 0.2)), + "scrollbarSlider.hoverBackground" : lightDark(alpha(scale.gray[4], 0.24), alpha(scale.gray[3], 0.24)), + "scrollbarSlider.activeBackground" : lightDark(alpha(scale.gray[4], 0.28), alpha(scale.gray[3], 0.28)), + "editorOverviewRuler.border" : lightDark(scale.white, scale.black), + + "minimapSlider.background" : lightDark(alpha(scale.gray[4], 0.2), alpha(scale.gray[3], 0.2)), + "minimapSlider.hoverBackground" : lightDark(alpha(scale.gray[4], 0.24), alpha(scale.gray[3], 0.24)), + "minimapSlider.activeBackground" : lightDark(alpha(scale.gray[4], 0.28), alpha(scale.gray[3], 0.28)), + + "panel.background" : color.canvas.inset, + "panel.border" : color.border.default, + "panelTitle.activeBorder" : color.primer.border.active, + "panelTitle.activeForeground" : color.fg.default, + "panelTitle.inactiveForeground" : color.fg.muted, + "panelInput.border" : color.border.default, + + "debugIcon.breakpointForeground": color.danger.fg, + + "debugConsole.infoForeground": lightDark( scale.gray[6], scale.gray[3]), + "debugConsole.warningForeground": lightDark( scale.yellow[6], scale.yellow[3]), + "debugConsole.errorForeground": lightDark( scale.red[5], scale.red[2]), + "debugConsole.sourceForeground": lightDark( scale.yellow[5], scale.yellow[2]), + "debugConsoleInputIcon.foreground": lightDark( scale.purple[6], scale.purple[3]), + + "debugTokenExpression.name": lightDark(scale.blue[6], scale.blue[2]), + "debugTokenExpression.value": lightDark(scale.blue[8], scale.blue[1]), + "debugTokenExpression.string": lightDark(scale.blue[8], scale.blue[1]), + "debugTokenExpression.boolean": lightDark( scale.green[6], scale.green[2]), + "debugTokenExpression.number": lightDark( scale.green[6], scale.green[2]), + "debugTokenExpression.error": lightDark( scale.red[6], scale.red[2]), + + "symbolIcon.arrayForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.booleanForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.classForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.colorForeground": lightDark( scale.blue[8], scale.blue[2]), + "symbolIcon.constructorForeground": lightDark( scale.purple[8], scale.purple[2]), + "symbolIcon.enumeratorForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.enumeratorMemberForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.eventForeground": lightDark( scale.gray[6], scale.gray[4]), + "symbolIcon.fieldForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.fileForeground": lightDark( scale.yellow[6], scale.yellow[3]), + "symbolIcon.folderForeground": lightDark( scale.yellow[6], scale.yellow[3]), + "symbolIcon.functionForeground": lightDark( scale.purple[6], scale.purple[3]), + "symbolIcon.interfaceForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.keyForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.keywordForeground": lightDark( scale.red[6], scale.red[3]), + "symbolIcon.methodForeground": lightDark( scale.purple[6], scale.purple[3]), + "symbolIcon.moduleForeground": lightDark( scale.red[6], scale.red[3]), + "symbolIcon.namespaceForeground": lightDark( scale.red[6], scale.red[3]), + "symbolIcon.nullForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.numberForeground": lightDark( scale.green[6], scale.green[3]), + "symbolIcon.objectForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.operatorForeground": lightDark( scale.blue[8], scale.blue[2]), + "symbolIcon.packageForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.propertyForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.referenceForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.snippetForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.stringForeground": lightDark( scale.blue[8], scale.blue[2]), + "symbolIcon.structForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.textForeground": lightDark( scale.blue[8], scale.blue[2]), + "symbolIcon.typeParameterForeground": lightDark( scale.blue[8], scale.blue[2]), + "symbolIcon.unitForeground": lightDark( scale.blue[6], scale.blue[3]), + "symbolIcon.variableForeground": lightDark( scale.orange[6], scale.orange[3]), + "symbolIcon.constantForeground": lightDark( scale.green[6], scale.green), + + "terminal.foreground": color.fg.default, + 'terminal.ansiBlack': color.ansi.black, + 'terminal.ansiRed': color.ansi.red, + 'terminal.ansiGreen': color.ansi.green, + 'terminal.ansiYellow': color.ansi.yellow, + 'terminal.ansiBlue': color.ansi.blue, + 'terminal.ansiMagenta': color.ansi.magenta, + 'terminal.ansiCyan': color.ansi.cyan, + 'terminal.ansiWhite': color.ansi.white, + 'terminal.ansiBrightBlack': color.ansi.blackBright, + 'terminal.ansiBrightRed': color.ansi.redBright, + 'terminal.ansiBrightGreen': color.ansi.greenBright, + 'terminal.ansiBrightYellow': color.ansi.yellowBright, + 'terminal.ansiBrightBlue': color.ansi.blueBright, + 'terminal.ansiBrightMagenta': color.ansi.magentaBright, + 'terminal.ansiBrightCyan': color.ansi.cyanBright, + 'terminal.ansiBrightWhite': color.ansi.whiteBright, + + "editorBracketHighlight.foreground1": lightDark(scale.blue[5], scale.blue[2]), + "editorBracketHighlight.foreground2": lightDark(scale.green[5], scale.green[2]), + "editorBracketHighlight.foreground3": lightDark(scale.yellow[5], scale.yellow[2]), + "editorBracketHighlight.foreground4": lightDark(scale.red[5], scale.red[2]), + "editorBracketHighlight.foreground5": lightDark(scale.pink[5], scale.pink[2]), + "editorBracketHighlight.foreground6": lightDark(scale.purple[5], scale.purple[2]), + "editorBracketHighlight.unexpectedBracket.foreground": color.fg.muted, // gray + + "gitDecoration.addedResourceForeground" : color.success.fg, + "gitDecoration.modifiedResourceForeground" : color.attention.fg, + "gitDecoration.deletedResourceForeground" : color.danger.fg, + "gitDecoration.untrackedResourceForeground" : color.success.fg, + "gitDecoration.ignoredResourceForeground" : color.fg.subtle, + "gitDecoration.conflictingResourceForeground": color.severe.fg, + "gitDecoration.submoduleResourceForeground" : color.fg.muted, + + "debugToolBar.background" : color.canvas.overlay, + "editor.stackFrameHighlightBackground" : color.attention.muted, + "editor.focusedStackFrameHighlightBackground": color.success.muted, + + "peekViewEditor.matchHighlightBackground": onlyDark(color.attention.muted), + "peekViewResult.matchHighlightBackground": onlyDark(color.attention.muted), + "peekViewEditor.background" : onlyDark(color.neutral.subtle), + "peekViewResult.background" : onlyDark(scale.gray[9]), + + "settings.headerForeground" : color.fg.default, + "settings.modifiedItemIndicator" : color.attention.muted, + "welcomePage.buttonBackground" : color.btn.bg, + "welcomePage.buttonHoverBackground": color.btn.hoverBg, + }, + semanticHighlighting: true, + tokenColors: [ + { + scope: ["comment", "punctuation.definition.comment", "string.comment"], + settings: { + foreground: lightDark(scale.gray[5], scale.gray[3]) + }, + }, + { + scope: [ + "constant.other.placeholder", + "constant.character" + ], + settings: { + foreground: lightDark(scale.red[5], scale.red[3]) + }, + }, + { + scope: [ + "constant", + "entity.name.constant", + "variable.other.constant", + "variable.other.enummember", + "variable.language", + "entity", + ], + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: [ + "entity.name", + "meta.export.default", + "meta.definition.variable" + ], + settings: { + foreground: lightDark(scale.orange[6], scale.orange[2]) + }, + }, + { + scope: [ + "variable.parameter.function", + "meta.jsx.children", + "meta.block", + "meta.tag.attributes", + "entity.name.constant", + "meta.object.member", + "meta.embedded.expression" + ], + settings: { + foreground: color.fg.default, + }, + }, + { + "scope": "entity.name.function", + "settings": { + foreground: lightDark(scale.purple[5], scale.purple[2]) + } + }, + { + "scope": [ + "entity.name.tag", + "support.class.component" + ], + settings: { + foreground: lightDark(scale.green[6], scale.green[1]) + }, + }, + { + scope: "keyword", + settings: { + foreground: lightDark(scale.red[5], scale.red[3]) + }, + }, + { + scope: ["storage", "storage.type"], + settings: { + foreground: lightDark(scale.red[5], scale.red[3]) + }, + }, + { + scope: [ + "storage.modifier.package", + "storage.modifier.import", + "storage.type.java", + ], + settings: { + foreground: color.fg.default, + }, + }, + { + scope: [ + "string", + "string punctuation.section.embedded source", + ], + settings: { + foreground: lightDark(scale.blue[8], scale.blue[1]) + }, + }, + { + scope: "support", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "meta.property-name", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "variable", + settings: { + foreground: lightDark(scale.orange[6], scale.orange[2]) + }, + }, + { + scope: "variable.other", + settings: { + foreground: color.fg.default, + }, + }, + { + scope: "invalid.broken", + settings: { + fontStyle: "italic", + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: "invalid.deprecated", + settings: { + fontStyle: "italic", + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: "invalid.illegal", + settings: { + fontStyle: "italic", + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: "invalid.unimplemented", + settings: { + fontStyle: "italic", + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: "carriage-return", + settings: { + fontStyle: "italic underline", + background: lightDark(scale.red[5], scale.red[3]), + foreground: lightDark(scale.gray[0], scale.gray[0]), + content: "^M", + }, + }, + { + scope: "message.error", + settings: { + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: "string variable", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: ["source.regexp", "string.regexp"], + settings: { + foreground: lightDark(scale.blue[8], scale.blue[1]) + }, + }, + { + scope: [ + "string.regexp.character-class", + "string.regexp constant.character.escape", + "string.regexp source.ruby.embedded", + "string.regexp string.regexp.arbitrary-repitition", + ], + settings: { + foreground: lightDark(scale.blue[8], scale.blue[1]) + }, + }, + { + scope: "string.regexp constant.character.escape", + settings: { + fontStyle: "bold", + foreground: lightDark(scale.green[6], scale.green[1]) + }, + }, + { + scope: "support.constant", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "support.variable", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "support.type.property-name.json", + settings: { + foreground: lightDark(scale.green[6], scale.green[1]) + }, + }, + { + scope: "meta.module-reference", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "punctuation.definition.list.begin.markdown", + settings: { + foreground: lightDark(scale.orange[6], scale.orange[2]) + }, + }, + { + scope: ["markup.heading", "markup.heading entity.name"], + settings: { + fontStyle: "bold", + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "markup.quote", + settings: { + foreground: lightDark(scale.green[6], scale.green[1]) + }, + }, + { + scope: "markup.italic", + settings: { + fontStyle: "italic", + foreground: color.fg.default, + }, + }, + { + scope: "markup.bold", + settings: { + fontStyle: "bold", + foreground: color.fg.default, + }, + }, + { + scope: ["markup.underline"], + settings: { + fontStyle: "underline", + }, + }, + { + scope: ["markup.strikethrough"], + settings: { + fontStyle: "strikethrough", + }, + }, + { + scope: "markup.inline.raw", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: [ + "markup.deleted", + "meta.diff.header.from-file", + "punctuation.definition.deleted", + ], + settings: { + background: lightDark(scale.red[0], scale.red[9]), + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: ["punctuation.section.embedded"], + settings: { + foreground: lightDark(scale.red[5], scale.red[3]) + }, + }, + { + scope: [ + "markup.inserted", + "meta.diff.header.to-file", + "punctuation.definition.inserted", + ], + settings: { + background: lightDark(scale.green[0], scale.green[9]), + foreground: lightDark(scale.green[6], scale.green[1]) + }, + }, + { + scope: ["markup.changed", "punctuation.definition.changed"], + settings: { + background: lightDark(scale.orange[1], scale.orange[8]), + foreground: lightDark(scale.orange[6], scale.orange[2]) + }, + }, + { + scope: ["markup.ignored", "markup.untracked"], + settings: { + foreground: lightDark(scale.gray[1], scale.gray[8]), + background: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "meta.diff.range", + settings: { + foreground: lightDark(scale.purple[5], scale.purple[2]), + fontStyle: "bold", + }, + }, + { + scope: "meta.diff.header", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "meta.separator", + settings: { + fontStyle: "bold", + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: "meta.output", + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]) + }, + }, + { + scope: [ + "brackethighlighter.tag", + "brackethighlighter.curly", + "brackethighlighter.round", + "brackethighlighter.square", + "brackethighlighter.angle", + "brackethighlighter.quote", + ], + settings: { + foreground: lightDark(scale.gray[6], scale.gray[3]) + }, + }, + { + scope: "brackethighlighter.unmatched", + settings: { + foreground: lightDark(scale.red[7], scale.red[2]) + }, + }, + { + scope: ["constant.other.reference.link", "string.other.link"], + settings: { + foreground: lightDark(scale.blue[8], scale.blue[1]), + }, + }, + ], + }; +} + +// Convert to hex +// VS Code doesn't support other formats like hsl, rgba etc. + +function changeColorToHexAlphas(obj) { + if (typeof obj === 'object') { + for (var keys in obj) { + if (typeof obj[keys] === 'object') { + changeColorToHexAlphas(obj[keys]) + } else { + let keyValue = obj[keys] + if(chroma.valid(keyValue)){ + obj[keys] = chroma(keyValue).hex(); + } + } + } + } + return obj; +} + + +module.exports = getTheme; diff --git a/extras/vscode/yarn.lock b/extras/vscode/yarn.lock new file mode 100644 index 0000000..111cbcf --- /dev/null +++ b/extras/vscode/yarn.lock @@ -0,0 +1,2655 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0": + version "7.15.8" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" + integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== + dependencies: + "@babel/highlight" "^7.14.5" + +"@babel/helper-validator-identifier@^7.14.5": + version "7.15.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" + integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== + +"@babel/highlight@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" + integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== + dependencies: + "@babel/helper-validator-identifier" "^7.14.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/runtime@^7.10.4", "@babel/runtime@^7.5.5": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" + integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== + dependencies: + regenerator-runtime "^0.13.4" + +"@changesets/apply-release-plan@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-5.0.1.tgz#ed3e30550f787ef1b72f0a51e29a54d244123109" + integrity sha512-ltYLM/PPoL1Un9hnNCbUac25FWonJvIZ/9C3O4UyZ/k4rir9FGvH6KLtMOiPEAJWnXmaHeRDr06MzohuXOnmvw== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/config" "^1.6.1" + "@changesets/get-version-range-type" "^0.3.2" + "@changesets/git" "^1.1.2" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + detect-indent "^6.0.0" + fs-extra "^7.0.1" + lodash.startcase "^4.4.0" + outdent "^0.5.0" + prettier "^1.19.1" + resolve-from "^5.0.0" + semver "^5.4.1" + +"@changesets/assemble-release-plan@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.0.1.tgz#80e9b750705677eb2d6356c581ed9c2e97fd68e7" + integrity sha512-KQqafvScTFQ/4Q2LpLmDYhU47LWvIGcgVS8tzKU8fBvRdKuLGQXe42VYbwVM0cHIkFd/b6YFn+H2QMdKC2MjIQ== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.2" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + semver "^5.4.1" + +"@changesets/changelog-github@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@changesets/changelog-github/-/changelog-github-0.4.1.tgz#880cb624477972ea103abf6942cf4ee3106f682b" + integrity sha512-WK9DzS3i0wa2doEnOr4sm/FMnNtxzCCAKP7dEcWvhYkgXYX5R6jmfHAcDstmjAhiuvbhoHYom4MOC1tIzgwnfA== + dependencies: + "@changesets/get-github-info" "^0.5.0" + "@changesets/types" "^4.0.1" + dotenv "^8.1.0" + +"@changesets/cli@^2.17.0": + version "2.17.0" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.17.0.tgz#cc7ff4f64d029ddd6d87020a012c8cf8c7adde58" + integrity sha512-UyraYwYst1lTjef+8i80XQ6SqsLaGwi4Sgn9YuDf2xdHA9m+5qQXshHvHVjaTdPTA09rqMBk9yeO7vmAqF4+vQ== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/apply-release-plan" "^5.0.1" + "@changesets/assemble-release-plan" "^5.0.1" + "@changesets/config" "^1.6.1" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.2" + "@changesets/get-release-plan" "^3.0.1" + "@changesets/git" "^1.1.2" + "@changesets/logger" "^0.0.5" + "@changesets/pre" "^1.0.7" + "@changesets/read" "^0.5.0" + "@changesets/types" "^4.0.1" + "@changesets/write" "^0.1.5" + "@manypkg/get-packages" "^1.0.1" + "@types/semver" "^6.0.0" + boxen "^1.3.0" + chalk "^2.1.0" + enquirer "^2.3.0" + external-editor "^3.1.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + is-ci "^2.0.0" + meow "^6.0.0" + outdent "^0.5.0" + p-limit "^2.2.0" + preferred-pm "^3.0.0" + semver "^5.4.1" + spawndamnit "^2.0.0" + term-size "^2.1.0" + tty-table "^2.8.10" + +"@changesets/config@^1.6.1": + version "1.6.1" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-1.6.1.tgz#e9b1636fd56a74411c493c924e6ffa07d7d26091" + integrity sha512-aQTo6ODvhsvnSFszMP1YbJyAi1DtE1Pes9rL+G+KYJiAOA6k5RzbiKOarjo+ZkKXpX0G3CBAbOO8jXOX4xG7cQ== + dependencies: + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.2" + "@changesets/logger" "^0.0.5" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + fs-extra "^7.0.1" + micromatch "^4.0.2" + +"@changesets/errors@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.4.tgz#f79851746c43679a66b383fdff4c012f480f480d" + integrity sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== + dependencies: + extendable-error "^0.1.5" + +"@changesets/get-dependents-graph@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.2.2.tgz#7a2238f3d1a023de83d37b727a0da15826e88d73" + integrity sha512-3zJRw6TcexmOrmIZNOXpIRsZtqtrdmlzbqp4+V0VgnBvTxz16rqCS9VBsBqFYeJDWFj3soOlHUMeTwLghr18DA== + dependencies: + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + chalk "^2.1.0" + fs-extra "^7.0.1" + semver "^5.4.1" + +"@changesets/get-github-info@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@changesets/get-github-info/-/get-github-info-0.5.0.tgz#b91ceb2d82edef78ae1598ea9fc335a012250295" + integrity sha512-vm5VgHwrxkMkUjFyn3UVNKLbDp9YMHd3vMf1IyJoa/7B+6VpqmtAaXyDS0zBLfN5bhzVCHrRnj4GcZXXcqrFTw== + dependencies: + dataloader "^1.4.0" + node-fetch "^2.5.0" + +"@changesets/get-release-plan@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.1.tgz#c98a34321eac9e4187098893ff8dadb6f90ad89c" + integrity sha512-HTZeEPvLlcWMWKxLrzQNLQWKDDN1lUKvaOV+hl/yBhgtyJECljJJzd3IRaKqCSWMrYKNaaEcmunTtZ4oaeoK9w== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/assemble-release-plan" "^5.0.1" + "@changesets/config" "^1.6.1" + "@changesets/pre" "^1.0.7" + "@changesets/read" "^0.5.0" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + +"@changesets/get-version-range-type@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz#8131a99035edd11aa7a44c341cbb05e668618c67" + integrity sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== + +"@changesets/git@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-1.1.2.tgz#248d4418bcb2d4f198852409cfcbd06a1fcb0424" + integrity sha512-dfza8elsIwcYVa4fFzLaPs4+AkoCFiW3sfzkkC7WR+rG9j+zZh7CelzVpnoiAbEI2QOzeCbZKMoLSvBPgHhB1g== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + is-subdir "^1.1.1" + spawndamnit "^2.0.0" + +"@changesets/logger@^0.0.5": + version "0.0.5" + resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.5.tgz#68305dd5a643e336be16a2369cb17cdd8ed37d4c" + integrity sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== + dependencies: + chalk "^2.1.0" + +"@changesets/parse@^0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.9.tgz#c518792b05f15ab418d58dc1cea81601556e845e" + integrity sha512-XoTEkMpvRRVxSlhvOaK4YSFM+RZhYFTksxRh7ieNkb6pMxkpq8MOYSi/07BuqkODn4dJEMOoSy3RzL99P6FyqA== + dependencies: + "@changesets/types" "^4.0.1" + js-yaml "^3.13.1" + +"@changesets/pre@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-1.0.7.tgz#caf6430c90b8ac6d58c9cd90a19558ab06b19b88" + integrity sha512-oUU6EL4z0AIyCv/EscQFxxJsQfc9/AcSpqAGbdZrLXwshUWTXsJHMWlE3/+iSIyQ+I+/xtxbBxnqDUpUU3TOOg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + fs-extra "^7.0.1" + +"@changesets/read@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.5.0.tgz#52f7a10f6baebf97172e62035ee8345652c5a1c0" + integrity sha512-A2OJ+vgfvbUaLx2yKyHH+tapa+DUd2NtpFpVuxjUqv0zirjqju20z1bziqaqpIQSf/rXPuoc09vp5w4VakraHg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/git" "^1.1.2" + "@changesets/logger" "^0.0.5" + "@changesets/parse" "^0.3.9" + "@changesets/types" "^4.0.1" + chalk "^2.1.0" + fs-extra "^7.0.1" + p-filter "^2.1.0" + +"@changesets/types@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.0.1.tgz#85cf3cc32baff0691112d9d15fc21fbe022c9f0a" + integrity sha512-zVfv752D8K2tjyFmxU/vnntQ+dPu+9NupOSguA/2Zuym4tVxRh0ylArgKZ1bOAi2eXfGlZMxJU/kj7uCSI15RQ== + +"@changesets/write@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.1.5.tgz#97574d95c8e48c3bbb1173802672f9a64d1b7fef" + integrity sha512-AYVSCH7on/Cyzo/8lVfqlsXmyKl3JhbNu9yHApdLPhHAzv5wqoHiZlMDkmd+AA67SRqzK2lDs4BcIojK+uWeIA== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/types" "^4.0.1" + fs-extra "^7.0.1" + human-id "^1.0.2" + prettier "^1.19.1" + +"@manypkg/find-root@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" + integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== + dependencies: + "@babel/runtime" "^7.5.5" + "@types/node" "^12.7.1" + find-up "^4.1.0" + fs-extra "^8.1.0" + +"@manypkg/get-packages@^1.0.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.1.tgz#7c7e72d0061ab2e61d2ce4da58ce91290a60ac8d" + integrity sha512-J6VClfQSVgR6958eIDTGjfdCrELy1eT+SHeoSMomnvRQVktZMnEA5edIr5ovRFNw5y+Bk/jyoevPzGYod96mhw== + dependencies: + "@babel/runtime" "^7.5.5" + "@manypkg/find-root" "^1.1.0" + fs-extra "^8.1.0" + globby "^11.0.0" + read-yaml-file "^1.1.0" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@primer/primitives@7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@primer/primitives/-/primitives-7.10.0.tgz#de0d9648d484184442583564f02d6600b872fa5f" + integrity sha512-DdLHq21e93R9qDHyRuRpytBLY0Up9IwNWMOUgPNW6lRSng4N4+IdUlLS3Ekbasmxfs8Z8vKS8aezeYovQ5qsxQ== + +"@sindresorhus/is@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + +"@szmarczak/http-timer@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + dependencies: + defer-to-connect "^1.0.1" + +"@types/minimist@^1.2.0": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" + integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + +"@types/node@^12.7.1": + version "12.20.33" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.33.tgz#24927446e8b7669d10abacedd16077359678f436" + integrity sha512-5XmYX2GECSa+CxMYaFsr2mrql71Q4EvHjKS+ox/SiwSdaASMoBIWE6UmZqFO+VX1jIcsYLStI4FFoB6V7FeIYw== + +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + +"@types/semver@^6.0.0": + version "6.2.3" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" + integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= + dependencies: + string-width "^2.0.0" + +ansi-align@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" + integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== + dependencies: + string-width "^4.1.0" + +ansi-colors@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + +azure-devops-node-api@^11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.0.1.tgz#b7ec4783230e1de8fc972b23effe7ed2ebac17ff" + integrity sha512-YMdjAw9l5p/6leiyIloxj3k7VIvYThKjvqgiQn88r3nhT93ENwsoDS3A83CyJ4uTWzCZ5f5jCi6c27rTU5Pz+A== + dependencies: + tunnel "0.0.6" + typed-rest-client "^1.8.4" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +better-path-resolve@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" + integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== + dependencies: + is-windows "^1.0.0" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + +boxen@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^2.0.0" + +boxen@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" + integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== + dependencies: + ansi-align "^3.0.0" + camelcase "^6.2.0" + chalk "^4.1.0" + cli-boxes "^2.2.1" + string-width "^4.2.2" + type-fest "^0.20.2" + widest-line "^3.1.0" + wrap-ansi "^7.0.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.1, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +breakword@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" + integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== + dependencies: + wcwidth "^1.0.1" + +buffer-crc32@~0.2.3: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= + +cacheable-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^3.0.0" + lowercase-keys "^2.0.0" + normalize-url "^4.1.0" + responselike "^1.0.2" + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + +camelcase@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" + integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== + +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cheerio-select@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.5.0.tgz#faf3daeb31b17c5e1a9dabcee288aaf8aafa5823" + integrity sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg== + dependencies: + css-select "^4.1.3" + css-what "^5.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + domutils "^2.7.0" + +cheerio@^1.0.0-rc.9: + version "1.0.0-rc.10" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.10.tgz#2ba3dcdfcc26e7956fc1f440e61d51c643379f3e" + integrity sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw== + dependencies: + cheerio-select "^1.5.0" + dom-serializer "^1.3.2" + domhandler "^4.2.0" + htmlparser2 "^6.1.0" + parse5 "^6.0.1" + parse5-htmlparser2-tree-adapter "^6.0.1" + tslib "^2.2.0" + +chokidar@^3.2.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chroma-js@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-2.1.2.tgz#1075cb9ae25bcb2017c109394168b5cf3aa500ec" + integrity sha512-ri/ouYDWuxfus3UcaMxC1Tfp3IE9K5iQzxc2hSxbBRVNQFut1UuGAsZmiAf2mOUubzGJwgMSv9lHg+XqLaz1QQ== + dependencies: + cross-env "^6.0.3" + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + +cli-boxes@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" + integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +clone-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" + integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= + dependencies: + mimic-response "^1.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + +color-convert@^1.9.0, color-convert@^1.9.3: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312" + integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.1.2: + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== + dependencies: + color-convert "^1.9.3" + color-string "^1.6.0" + +commander@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +configstore@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" + integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== + dependencies: + dot-prop "^5.2.0" + graceful-fs "^4.1.2" + make-dir "^3.0.0" + unique-string "^2.0.0" + write-file-atomic "^3.0.0" + xdg-basedir "^4.0.0" + +cross-env@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-6.0.3.tgz#4256b71e49b3a40637a0ce70768a6ef5c72ae941" + integrity sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag== + dependencies: + cross-spawn "^7.0.0" + +cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.0: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-random-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + +css-select@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" + integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== + dependencies: + boolbase "^1.0.0" + css-what "^5.0.0" + domhandler "^4.2.0" + domutils "^2.6.0" + nth-check "^2.0.0" + +css-what@^5.0.0, css-what@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz#3f7b707aadf633baf62c2ceb8579b545bb40f7fe" + integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== + +csv-generate@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" + integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== + +csv-parse@^4.16.3: + version "4.16.3" + resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" + integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== + +csv-stringify@^5.6.5: + version "5.6.5" + resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" + integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== + +csv@^5.3.1: + version "5.5.3" + resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" + integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== + dependencies: + csv-generate "^3.4.3" + csv-parse "^4.16.3" + csv-stringify "^5.6.5" + stream-transform "^2.1.3" + +dataloader@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" + integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== + +debug@^2.2.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.6: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +decamelize-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" + integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + dependencies: + mimic-response "^1.0.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + +defer-to-connect@^1.0.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" + integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== + +denodeify@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + integrity sha1-OjYof1A05pnnV3kBBSwubJQlFjE= + +detect-indent@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dom-serializer@^1.0.1, dom-serializer@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" + integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" + integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== + +domhandler@^4.0.0, domhandler@^4.2.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" + integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== + dependencies: + domelementtype "^2.2.0" + +domutils@^2.5.2, domutils@^2.6.0, domutils@^2.7.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +dot-prop@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +dotenv@^8.1.0: + version "8.6.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" + integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== + +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enquirer@^2.3.0: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@~2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" + integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +escape-goat@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" + integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +extendable-error@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" + integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== + +external-editor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + +fd-slicer@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" + integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= + dependencies: + pend "~1.2.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-yarn-workspace-root2@1.2.16: + version "1.2.16" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" + integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + dependencies: + micromatch "^4.0.2" + pkg-dir "^4.2.0" + +fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@^7.0.6, glob@^7.1.3: + version "7.2.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-dirs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" + integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== + dependencies: + ini "2.0.0" + +globby@^11.0.0: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + +got@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== + dependencies: + "@sindresorhus/is" "^0.14.0" + "@szmarczak/http-timer" "^1.1.2" + cacheable-request "^6.0.0" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^4.1.0" + lowercase-keys "^1.0.1" + mimic-response "^1.0.1" + p-cancelable "^1.0.0" + to-readable-stream "^1.0.0" + url-parse-lax "^3.0.0" + +graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.8" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-yarn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" + integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" + integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== + dependencies: + lru-cache "^6.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +http-cache-semantics@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + +human-id@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" + integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== + +iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= + +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + +ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-core-module@^2.2.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" + integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== + dependencies: + has "^1.0.3" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-installed-globally@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" + integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + dependencies: + global-dirs "^3.0.0" + is-path-inside "^3.0.2" + +is-npm@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" + integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-inside@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-subdir@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" + integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== + dependencies: + better-path-resolve "1.0.0" + +is-typedarray@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-windows@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-yarn-global@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" + integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +keyv@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + dependencies: + json-buffer "3.0.0" + +kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +latest-version@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" + integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + dependencies: + package-json "^6.3.0" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + +linkify-it@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" + integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== + dependencies: + uc.micro "^1.0.1" + +load-yaml-file@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" + integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.13.0" + pify "^4.0.1" + strip-bom "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= + +lodash@^4.17.15: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-dir@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= + +map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + +markdown-it@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc" + integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg== + dependencies: + argparse "^1.0.7" + entities "~2.0.0" + linkify-it "^2.0.0" + mdurl "^1.0.1" + uc.micro "^1.0.5" + +mdurl@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= + +meow@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" + integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "^4.0.2" + normalize-package-data "^2.5.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.13.1" + yargs-parser "^18.1.3" + +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + dependencies: + braces "^3.0.1" + picomatch "^2.2.3" + +mime@^1.3.4: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-response@^1.0.0, mimic-response@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +minimatch@^3.0.3, minimatch@^3.0.4: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist-options@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + +minimist@^1.2.0: + version "1.2.6" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mixme@^0.5.1: + version "0.5.4" + resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.4.tgz#8cb3bd0cd32a513c161bf1ca99d143f0bcf2eff3" + integrity sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mute-stream@~0.0.4: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +node-fetch@^2.5.0: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +nodemon@^2.0.3: + version "2.0.13" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.13.tgz#67d40d3a4d5bd840aa785c56587269cfcf5d24aa" + integrity sha512-UMXMpsZsv1UXUttCn6gv8eQPhn6DR4BW+txnL3IN5IHqrCwcrT/yWHfL35UsClGXknTH79r5xbu+6J1zNHuSyA== + dependencies: + chokidar "^3.2.2" + debug "^3.2.6" + ignore-by-default "^1.0.1" + minimatch "^3.0.4" + pstree.remy "^1.1.7" + semver "^5.7.1" + supports-color "^5.5.0" + touch "^3.1.0" + undefsafe "^2.0.3" + update-notifier "^5.1.0" + +nopt@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" + integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= + dependencies: + abbrev "1" + +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^4.1.0: + version "4.5.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" + integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +nth-check@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz#2efe162f5c3da06a28959fbd3db75dbeea9f0fc2" + integrity sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w== + dependencies: + boolbase "^1.0.0" + +object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +outdent@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" + integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== + +p-cancelable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== + +p-filter@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" + integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== + dependencies: + p-map "^2.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json@^6.3.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" + integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== + dependencies: + got "^9.6.0" + registry-auth-token "^4.0.0" + registry-url "^5.0.0" + semver "^6.2.0" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-semver@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz#9a4afd6df063dc4826f93fba4a99cf223f666cb8" + integrity sha1-mkr9bfBj3Egm+T+6SpnPIj9mbLg= + dependencies: + semver "^5.1.0" + +parse5-htmlparser2-tree-adapter@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== + dependencies: + parse5 "^6.0.1" + +parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +preferred-pm@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6" + integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ== + dependencies: + find-up "^5.0.0" + find-yarn-workspace-root2 "1.2.16" + path-exists "^4.0.0" + which-pm "2.0.0" + +prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= + +prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +pstree.remy@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" + integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pupa@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" + integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== + dependencies: + escape-goat "^2.0.0" + +qs@^6.9.1: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + +rc@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +read-yaml-file@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" + integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.6.1" + pify "^4.0.1" + strip-bom "^3.0.0" + +read@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= + dependencies: + mute-stream "~0.0.4" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +registry-auth-token@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" + integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== + dependencies: + rc "^1.2.8" + +registry-url@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" + integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + dependencies: + rc "^1.2.8" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.10.0: + version "1.20.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== + dependencies: + is-core-module "^2.2.0" + path-parse "^1.0.6" + +responselike@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= + dependencies: + lowercase-keys "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sax@>=0.6.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +semver-diff@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" + integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== + dependencies: + semver "^6.3.0" + +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.4.1, semver@^5.7.1: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.4: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.5" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" + integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +smartwrap@^1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-1.2.5.tgz#45ee3e09ac234e5f7f17c16e916f511834f3cd23" + integrity sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg== + dependencies: + breakword "^1.0.5" + grapheme-splitter "^1.0.4" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + +spawndamnit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" + integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== + dependencies: + cross-spawn "^5.1.0" + signal-exit "^3.0.2" + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.10" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b" + integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +stream-transform@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" + integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== + dependencies: + mixme "^0.5.1" + +string-width@^2.0.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +supports-color@^5.3.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + +term-size@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" + integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + +to-readable-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +touch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" + integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== + dependencies: + nopt "~1.0.10" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= + +trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + +tslib@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tty-table@^2.8.10: + version "2.8.13" + resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-2.8.13.tgz#d484a416381973eaebbdf19c79136b390e5c6d70" + integrity sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ== + dependencies: + chalk "^3.0.0" + csv "^5.3.1" + smartwrap "^1.2.3" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + +tunnel@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" + integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== + +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +typed-rest-client@^1.8.4: + version "1.8.6" + resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.6.tgz#d8facd6abd98cbd8ad14cccf056ca5cc306919d7" + integrity sha512-xcQpTEAJw2DP7GqVNECh4dD+riS+C1qndXLfBCJ3xk0kqprtGN491P5KlmrDbKdtuW8NEcP/5ChxiJI3S9WYTA== + dependencies: + qs "^6.9.1" + tunnel "0.0.6" + underscore "^1.12.1" + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +uc.micro@^1.0.1, uc.micro@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" + integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== + +undefsafe@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" + integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== + dependencies: + debug "^2.2.0" + +underscore@^1.12.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" + integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== + +unique-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + dependencies: + crypto-random-string "^2.0.0" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +update-notifier@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" + integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== + dependencies: + boxen "^5.0.0" + chalk "^4.1.0" + configstore "^5.0.1" + has-yarn "^2.1.0" + import-lazy "^2.1.0" + is-ci "^2.0.0" + is-installed-globally "^0.4.0" + is-npm "^5.0.0" + is-yarn-global "^0.3.0" + latest-version "^5.1.0" + pupa "^2.1.1" + semver "^7.3.4" + semver-diff "^3.1.1" + xdg-basedir "^4.0.0" + +url-join@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" + integrity sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg= + +url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= + dependencies: + prepend-http "^2.0.0" + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vsce@^1.100.1: + version "1.100.1" + resolved "https://registry.yarnpkg.com/vsce/-/vsce-1.100.1.tgz#6ea04464abe3ccf3a5a8a05de25692f1780b1104" + integrity sha512-1VjLyse5g6e2eQ6jUpslu7IDq44velwF8Jy8s7ePdwGNuG8EzfmaOfVyig3ZSMJ0l8DiJmZllx5bRAB4RMdnHg== + dependencies: + azure-devops-node-api "^11.0.1" + chalk "^2.4.2" + cheerio "^1.0.0-rc.9" + commander "^6.1.0" + denodeify "^1.2.1" + glob "^7.0.6" + hosted-git-info "^4.0.2" + leven "^3.1.0" + lodash "^4.17.15" + markdown-it "^10.0.0" + mime "^1.3.4" + minimatch "^3.0.3" + osenv "^0.1.3" + parse-semver "^1.1.1" + read "^1.0.7" + semver "^5.1.0" + tmp "^0.2.1" + typed-rest-client "^1.8.4" + url-join "^1.1.0" + xml2js "^0.4.23" + yauzl "^2.3.1" + yazl "^2.2.2" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which-pm@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" + integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== + dependencies: + load-yaml-file "^0.2.0" + path-exists "^4.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +xdg-basedir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" + integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== + +xml2js@^0.4.23: + version "0.4.23" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" + integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== + dependencies: + sax ">=0.6.0" + xmlbuilder "~11.0.0" + +xmlbuilder@~11.0.0: + version "11.0.1" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@^18.1.2, yargs-parser@^18.1.3: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@^15.1.0: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yauzl@^2.3.1: + version "2.10.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" + integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.1.0" + +yazl@^2.2.2: + version "2.5.1" + resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" + integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== + dependencies: + buffer-crc32 "~0.2.3" + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/extras/windows_terminal/nekonight_day.json b/extras/windows_terminal/nekonight_day.json index 7a6a450..f40f0c3 100644 --- a/extras/windows_terminal/nekonight_day.json +++ b/extras/windows_terminal/nekonight_day.json @@ -16,7 +16,7 @@ "cyan": "#007197", "foreground": "#3760bf", "green": "#587539", - "name": "Tokyo Night Day", + "name": "Neko Night Day", "purple": "#9854f1", "red": "#f52a65", "selectionBackground": "#b7c1e3", diff --git a/extras/windows_terminal/nekonight_moon.json b/extras/windows_terminal/nekonight_moon.json index e2f14a4..bf7e9e0 100644 --- a/extras/windows_terminal/nekonight_moon.json +++ b/extras/windows_terminal/nekonight_moon.json @@ -16,7 +16,7 @@ "cyan": "#86e1fc", "foreground": "#c8d3f5", "green": "#c3e88d", - "name": "Tokyo Night Moon", + "name": "Neko Night Moon", "purple": "#c099ff", "red": "#ff757f", "selectionBackground": "#2d3f76", diff --git a/extras/windows_terminal/nekonight_night.json b/extras/windows_terminal/nekonight_night.json index d694eae..4bed802 100644 --- a/extras/windows_terminal/nekonight_night.json +++ b/extras/windows_terminal/nekonight_night.json @@ -16,7 +16,7 @@ "cyan": "#7dcfff", "foreground": "#c0caf5", "green": "#9ece6a", - "name": "Tokyo Night", + "name": "Neko Night", "purple": "#bb9af7", "red": "#f7768e", "selectionBackground": "#283457", diff --git a/extras/windows_terminal/nekonight_storm.json b/extras/windows_terminal/nekonight_storm.json index fbbe0ee..5241414 100644 --- a/extras/windows_terminal/nekonight_storm.json +++ b/extras/windows_terminal/nekonight_storm.json @@ -16,7 +16,7 @@ "cyan": "#7dcfff", "foreground": "#c0caf5", "green": "#9ece6a", - "name": "Tokyo Night Storm", + "name": "Neko Night Storm", "purple": "#bb9af7", "red": "#f7768e", "selectionBackground": "#2e3c64", diff --git a/extras/xfceterm/tokyonight_day.theme b/extras/xfceterm/tokyonight_day.theme index 1ff10e5..1b9fa56 100644 --- a/extras/xfceterm/tokyonight_day.theme +++ b/extras/xfceterm/tokyonight_day.theme @@ -1,5 +1,5 @@ [Scheme] -Name="tokyonight_day" +Name="nekonight_day" ColorBackground=#e1e2e7 ColorForeground=#3760bf diff --git a/extras/xfceterm/tokyonight_moon.theme b/extras/xfceterm/tokyonight_moon.theme index c78dc96..1ddb3bc 100644 --- a/extras/xfceterm/tokyonight_moon.theme +++ b/extras/xfceterm/tokyonight_moon.theme @@ -1,5 +1,5 @@ [Scheme] -Name="tokyonight_moon" +Name="nekonight_moon" ColorBackground=#222436 ColorForeground=#c8d3f5 diff --git a/extras/xfceterm/tokyonight_night.theme b/extras/xfceterm/tokyonight_night.theme index dbc1109..6cdfece 100644 --- a/extras/xfceterm/tokyonight_night.theme +++ b/extras/xfceterm/tokyonight_night.theme @@ -1,5 +1,5 @@ [Scheme] -Name="tokyonight_night" +Name="nekonight_night" ColorBackground=#1a1b26 ColorForeground=#c0caf5 diff --git a/extras/xfceterm/tokyonight_storm.theme b/extras/xfceterm/tokyonight_storm.theme index 06a4eab..bb35815 100644 --- a/extras/xfceterm/tokyonight_storm.theme +++ b/extras/xfceterm/tokyonight_storm.theme @@ -1,5 +1,5 @@ [Scheme] -Name="tokyonight_storm" +Name="nekonight_storm" ColorBackground=#24283b ColorForeground=#c0caf5 diff --git a/extras/xresources/tokyonight_day.Xresources b/extras/xresources/tokyonight_day.Xresources index d07d418..fb0d9b7 100644 --- a/extras/xresources/tokyonight_day.Xresources +++ b/extras/xresources/tokyonight_day.Xresources @@ -1,4 +1,4 @@ -! TokyoNight colors for Xresources +! NekoNight colors for Xresources *background: #e1e2e7 *foreground: #3760bf diff --git a/extras/xresources/tokyonight_moon.Xresources b/extras/xresources/tokyonight_moon.Xresources index c4b305a..74f72a6 100644 --- a/extras/xresources/tokyonight_moon.Xresources +++ b/extras/xresources/tokyonight_moon.Xresources @@ -1,4 +1,4 @@ -! TokyoNight colors for Xresources +! NekoNight colors for Xresources *background: #222436 *foreground: #c8d3f5 diff --git a/extras/xresources/tokyonight_night.Xresources b/extras/xresources/tokyonight_night.Xresources index 032a401..919c61a 100644 --- a/extras/xresources/tokyonight_night.Xresources +++ b/extras/xresources/tokyonight_night.Xresources @@ -1,4 +1,4 @@ -! TokyoNight colors for Xresources +! NekoNight colors for Xresources *background: #1a1b26 *foreground: #c0caf5 diff --git a/extras/xresources/tokyonight_storm.Xresources b/extras/xresources/tokyonight_storm.Xresources index d30c425..185f5f8 100644 --- a/extras/xresources/tokyonight_storm.Xresources +++ b/extras/xresources/tokyonight_storm.Xresources @@ -1,4 +1,4 @@ -! TokyoNight colors for Xresources +! NekoNight colors for Xresources *background: #24283b *foreground: #c0caf5 diff --git a/extras/zathura/tokyonight_day.zathurarc b/extras/zathura/tokyonight_day.zathurarc index 163fb1d..70a7e15 100644 --- a/extras/zathura/tokyonight_day.zathurarc +++ b/extras/zathura/tokyonight_day.zathurarc @@ -1,7 +1,7 @@ -# Tokyonight color theme for Zathura +# nekonight color theme for Zathura # Swaps Foreground for Background to get a light version if the user prefers # -# Tokyonight color theme +# nekonight color theme # set notification-error-bg "#f52a65" set notification-error-fg "#3760bf" diff --git a/extras/zathura/tokyonight_moon.zathurarc b/extras/zathura/tokyonight_moon.zathurarc index 4ec3701..ad63f50 100644 --- a/extras/zathura/tokyonight_moon.zathurarc +++ b/extras/zathura/tokyonight_moon.zathurarc @@ -1,7 +1,7 @@ -# Tokyonight color theme for Zathura +# nekonight color theme for Zathura # Swaps Foreground for Background to get a light version if the user prefers # -# Tokyonight color theme +# nekonight color theme # set notification-error-bg "#ff757f" set notification-error-fg "#c8d3f5" diff --git a/extras/zathura/tokyonight_night.zathurarc b/extras/zathura/tokyonight_night.zathurarc index e8e734a..e15e089 100644 --- a/extras/zathura/tokyonight_night.zathurarc +++ b/extras/zathura/tokyonight_night.zathurarc @@ -1,7 +1,7 @@ -# Tokyonight color theme for Zathura +# nekonight color theme for Zathura # Swaps Foreground for Background to get a light version if the user prefers # -# Tokyonight color theme +# nekonight color theme # set notification-error-bg "#f7768e" set notification-error-fg "#c0caf5" diff --git a/extras/zathura/tokyonight_storm.zathurarc b/extras/zathura/tokyonight_storm.zathurarc index 2c95e19..52440ec 100644 --- a/extras/zathura/tokyonight_storm.zathurarc +++ b/extras/zathura/tokyonight_storm.zathurarc @@ -1,7 +1,7 @@ -# Tokyonight color theme for Zathura +# nekonight color theme for Zathura # Swaps Foreground for Background to get a light version if the user prefers # -# Tokyonight color theme +# nekonight color theme # set notification-error-bg "#f7768e" set notification-error-fg "#c0caf5" diff --git a/extras/zellij/tokyonight_day.kdl b/extras/zellij/tokyonight_day.kdl index 32bbe78..f81fa2a 100644 --- a/extras/zellij/tokyonight_day.kdl +++ b/extras/zellij/tokyonight_day.kdl @@ -1,9 +1,9 @@ -// Tokyonight Zellij Colors +// nekonight Zellij Colors // Add this file to your `CONFIG_DIR/themes` directory as described here: // https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme themes { - tokyonight_day { + nekonight_day { fg "#3760bf" bg "#c4c8da" // Black should match the terminal background color diff --git a/extras/zellij/tokyonight_moon.kdl b/extras/zellij/tokyonight_moon.kdl index 38fe273..bf02956 100644 --- a/extras/zellij/tokyonight_moon.kdl +++ b/extras/zellij/tokyonight_moon.kdl @@ -1,9 +1,9 @@ -// Tokyonight Zellij Colors +// nekonight Zellij Colors // Add this file to your `CONFIG_DIR/themes` directory as described here: // https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme themes { - tokyonight_moon { + nekonight_moon { fg "#c8d3f5" bg "#2f334d" // Black should match the terminal background color diff --git a/extras/zellij/tokyonight_night.kdl b/extras/zellij/tokyonight_night.kdl index c4a7e0b..4e50ac6 100644 --- a/extras/zellij/tokyonight_night.kdl +++ b/extras/zellij/tokyonight_night.kdl @@ -1,9 +1,9 @@ -// Tokyonight Zellij Colors +// nekonight Zellij Colors // Add this file to your `CONFIG_DIR/themes` directory as described here: // https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme themes { - tokyonight_night { + nekonight_night { fg "#c0caf5" bg "#292e42" // Black should match the terminal background color diff --git a/extras/zellij/tokyonight_storm.kdl b/extras/zellij/tokyonight_storm.kdl index 9ebad86..a02d9aa 100644 --- a/extras/zellij/tokyonight_storm.kdl +++ b/extras/zellij/tokyonight_storm.kdl @@ -1,9 +1,9 @@ -// Tokyonight Zellij Colors +// nekonight Zellij Colors // Add this file to your `CONFIG_DIR/themes` directory as described here: // https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme themes { - tokyonight_storm { + nekonight_storm { fg "#c0caf5" bg "#292e42" // Black should match the terminal background color diff --git a/lua/barbecue/theme/nekonight.lua b/lua/barbecue/theme/nekonight.lua index a721c66..bd3b95f 100644 --- a/lua/barbecue/theme/nekonight.lua +++ b/lua/barbecue/theme/nekonight.lua @@ -1,4 +1,4 @@ -local c = require("tokyonight.colors").setup() +local c = require("nekonight.colors").setup() local M = { normal = { bg = c.none, fg = c.fg_dark }, diff --git a/lua/lightline/colorscheme/nekonight.lua b/lua/lightline/colorscheme/nekonight.lua index 19b55d4..6766bee 100644 --- a/lua/lightline/colorscheme/nekonight.lua +++ b/lua/lightline/colorscheme/nekonight.lua @@ -1,8 +1,8 @@ -local colors = require("tokyonight.colors").setup() +local colors = require("nekonight.colors").setup() -local tokyonight = {} +local nekonight = {} -tokyonight.normal = { +nekonight.normal = { left = { { colors.black, colors.blue }, { colors.blue, colors.fg_gutter } }, middle = { { colors.fg, colors.bg_statusline } }, right = { { colors.black, colors.blue }, { colors.blue, colors.fg_gutter } }, @@ -10,29 +10,29 @@ tokyonight.normal = { warning = { { colors.black, colors.warning } }, } -tokyonight.insert = { +nekonight.insert = { left = { { colors.black, colors.green }, { colors.blue, colors.bg } }, } -tokyonight.visual = { +nekonight.visual = { left = { { colors.black, colors.magenta }, { colors.blue, colors.bg } }, } -tokyonight.replace = { +nekonight.replace = { left = { { colors.black, colors.red }, { colors.blue, colors.bg } }, } -tokyonight.inactive = { +nekonight.inactive = { left = { { colors.blue, colors.bg_statusline }, { colors.dark3, colors.bg } }, middle = { { colors.fg_gutter, colors.bg_statusline } }, right = { { colors.fg_gutter, colors.bg_statusline }, { colors.dark3, colors.bg } }, } -tokyonight.tabline = { +nekonight.tabline = { left = { { colors.dark3, colors.bg_highlight }, { colors.dark3, colors.bg } }, middle = { { colors.fg_gutter, colors.bg_statusline } }, right = { { colors.fg_gutter, colors.bg_statusline }, { colors.dark3, colors.bg } }, tabsel = { { colors.blue, colors.fg_gutter }, { colors.dark3, colors.bg } }, } -return tokyonight +return nekonight diff --git a/lua/lualine/themes/_nekonight.lua b/lua/lualine/themes/_nekonight.lua index 2d25fa0..0a9178e 100644 --- a/lua/lualine/themes/_nekonight.lua +++ b/lua/lualine/themes/_nekonight.lua @@ -2,7 +2,7 @@ local M = {} ---@param style? string function M.get(style) - local colors, config = require("tokyonight.colors").setup({ + local colors, config = require("nekonight.colors").setup({ style = style, }) diff --git a/lua/lualine/themes/nekonight-day.lua b/lua/lualine/themes/nekonight-day.lua index eaf36e6..3343865 100644 --- a/lua/lualine/themes/nekonight-day.lua +++ b/lua/lualine/themes/nekonight-day.lua @@ -1 +1 @@ -return require("lualine.themes._tokyonight").get("day") +return require("lualine.themes._nekonight").get("day") diff --git a/lua/lualine/themes/nekonight-moon.lua b/lua/lualine/themes/nekonight-moon.lua index f07294b..1b83561 100644 --- a/lua/lualine/themes/nekonight-moon.lua +++ b/lua/lualine/themes/nekonight-moon.lua @@ -1 +1 @@ -return require("lualine.themes._tokyonight").get("moon") +return require("lualine.themes._nekonight").get("moon") diff --git a/lua/lualine/themes/nekonight-night.lua b/lua/lualine/themes/nekonight-night.lua index 2207e8f..70b3309 100644 --- a/lua/lualine/themes/nekonight-night.lua +++ b/lua/lualine/themes/nekonight-night.lua @@ -1 +1 @@ -return require("lualine.themes._tokyonight").get("night") +return require("lualine.themes._nekonight").get("night") diff --git a/lua/lualine/themes/nekonight-storm.lua b/lua/lualine/themes/nekonight-storm.lua index 86359dd..5925ceb 100644 --- a/lua/lualine/themes/nekonight-storm.lua +++ b/lua/lualine/themes/nekonight-storm.lua @@ -1 +1 @@ -return require("lualine.themes._tokyonight").get("storm") +return require("lualine.themes._nekonight").get("storm") diff --git a/lua/lualine/themes/nekonight.lua b/lua/lualine/themes/nekonight.lua index 279fe76..a888ac3 100644 --- a/lua/lualine/themes/nekonight.lua +++ b/lua/lualine/themes/nekonight.lua @@ -1 +1 @@ -return require("lualine.themes._tokyonight").get() +return require("lualine.themes._nekonight").get() diff --git a/lua/nekonight/config.lua b/lua/nekonight/config.lua index f60f4dc..81e2f54 100644 --- a/lua/nekonight/config.lua +++ b/lua/nekonight/config.lua @@ -2,9 +2,9 @@ local M = {} M.version = "4.11.0" -- x-release-please-version ----@class tokyonight.Config +---@class nekonight.Config ---@field on_colors fun(colors: ColorScheme) ----@field on_highlights fun(highlights: tokyonight.Highlights, colors: ColorScheme) +---@field on_highlights fun(highlights: nekonight.Highlights, colors: ColorScheme) M.defaults = { style = "moon", -- The theme comes in three styles, `storm`, a darker variant `night` and `day` light_style = "day", -- The theme is used when the background is set to light @@ -32,7 +32,7 @@ M.defaults = { --- You can override specific highlights to use other groups or a hex color --- function will be called with a Highlights and ColorScheme table - ---@param highlights tokyonight.Highlights + ---@param highlights nekonight.Highlights ---@param colors ColorScheme on_highlights = function(highlights, colors) end, @@ -48,20 +48,20 @@ M.defaults = { auto = true, -- add any plugins here that you want to enable -- for all possible plugins, see: - -- * https://github.com/folke/tokyonight.nvim/tree/main/lua/tokyonight/groups + -- * https://github.com/BrunoCiccarino/nekonight/tree/main/lua/nekonight/groups -- telescope = true, }, } ----@type tokyonight.Config +---@type nekonight.Config M.options = nil ----@param options? tokyonight.Config +---@param options? nekonight.Config function M.setup(options) M.options = vim.tbl_deep_extend("force", {}, M.defaults, options or {}) end ----@param opts? tokyonight.Config +---@param opts? nekonight.Config function M.extend(opts) return opts and vim.tbl_deep_extend("force", {}, M.options, opts) or M.options end diff --git a/lua/nekonight/docs.lua b/lua/nekonight/docs.lua index f6a3e62..4f9103a 100644 --- a/lua/nekonight/docs.lua +++ b/lua/nekonight/docs.lua @@ -1,5 +1,5 @@ local Docs = require("lazy.docs") -local Groups = require("tokyonight.groups") +local Groups = require("nekonight.groups") local M = {} @@ -24,7 +24,7 @@ function M.table(t) end function M.extras() - local Extra = require("tokyonight.extra") + local Extra = require("nekonight.extra") local names = vim.tbl_keys(Extra.extras) ---@type string[] table.sort(names) local t = { @@ -48,14 +48,14 @@ function M.plugins() local repo = group.url:match("[^/]*$") t[#t + 1] = { link(repo, group.url), - link(("`%s`"):format(name), "lua/tokyonight/groups/" .. name .. ".lua"), + link(("`%s`"):format(name), "lua/nekonight/groups/" .. name .. ".lua"), } end return M.table(t) end function M.update() - local config = Docs.extract("lua/tokyonight/config.lua", "\n(--@class tokyonight%.Config.-\n})") + local config = Docs.extract("lua/nekonight/config.lua", "\n(--@class nekonight%.Config.-\n})") config = config:gsub("%s*debug = false.\n", "\n") Docs.save({ config = config, diff --git a/lua/nekonight/extra/aerc.lua b/lua/nekonight/extra/aerc.lua index 79a5fc1..90a8085 100644 --- a/lua/nekonight/extra/aerc.lua +++ b/lua/nekonight/extra/aerc.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -8,8 +8,8 @@ function M.generate(colors) [[ # vim: ft=dosini # -# aerc TokyoNight styleset -# set styleset-name=tokyonight-xxx.ini in 'aerc.conf' to load the style +# aerc nekonight styleset +# set styleset-name=nekonight-xxx.ini in 'aerc.conf' to load the style # *.default=true diff --git a/lua/nekonight/extra/alacritty.lua b/lua/nekonight/extra/alacritty.lua index afd8fb6..7c8127c 100644 --- a/lua/nekonight/extra/alacritty.lua +++ b/lua/nekonight/extra/alacritty.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -7,7 +7,7 @@ function M.generate(colors) local alacritty = util.template( [=[ # ----------------------------------------------------------------------------- -# TokyoNight Alacritty Colors +# nekonight Alacritty Colors # Theme: ${_style_name} # Upstream: ${_upstream_url} # ----------------------------------------------------------------------------- diff --git a/lua/nekonight/extra/delta.lua b/lua/nekonight/extra/delta.lua index 9100770..bd913fc 100644 --- a/lua/nekonight/extra/delta.lua +++ b/lua/nekonight/extra/delta.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/dunst.lua b/lua/nekonight/extra/dunst.lua index c1deffe..0f3c39b 100644 --- a/lua/nekonight/extra/dunst.lua +++ b/lua/nekonight/extra/dunst.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -6,7 +6,7 @@ local M = {} function M.generate(colors) local dunst = util.template( [[ -# TokyoNight colors for dunst +# NekoNight colors for dunst # For more configuration options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] diff --git a/lua/nekonight/extra/fish.lua b/lua/nekonight/extra/fish.lua index 306decd..016ed35 100644 --- a/lua/nekonight/extra/fish.lua +++ b/lua/nekonight/extra/fish.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -13,7 +13,7 @@ function M.generate(colors) local fish = util.template( [[ - # TokyoNight Color Palette + # NekoNight Color Palette set -l foreground ${fg} set -l selection ${bg_visual} set -l comment ${comment} diff --git a/lua/nekonight/extra/fish_themes.lua b/lua/nekonight/extra/fish_themes.lua index 38c321c..6072b55 100644 --- a/lua/nekonight/extra/fish_themes.lua +++ b/lua/nekonight/extra/fish_themes.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -13,7 +13,7 @@ function M.generate(colors) local fish = util.template( [[ - # TokyoNight + # NekoNight # Syntax Highlighting Colors fish_color_normal ${fg} diff --git a/lua/nekonight/extra/foot.lua b/lua/nekonight/extra/foot.lua index 5772df6..799e139 100644 --- a/lua/nekonight/extra/foot.lua +++ b/lua/nekonight/extra/foot.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/fuzzel.lua b/lua/nekonight/extra/fuzzel.lua index 0f914cb..78a6a3a 100644 --- a/lua/nekonight/extra/fuzzel.lua +++ b/lua/nekonight/extra/fuzzel.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/fzf.lua b/lua/nekonight/extra/fzf.lua index 565791c..d18badf 100644 --- a/lua/nekonight/extra/fzf.lua +++ b/lua/nekonight/extra/fzf.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/ghostty.lua b/lua/nekonight/extra/ghostty.lua index edce292..a0c0e9a 100644 --- a/lua/nekonight/extra/ghostty.lua +++ b/lua/nekonight/extra/ghostty.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/gitui.lua b/lua/nekonight/extra/gitui.lua index 6b04b57..aa27f91 100644 --- a/lua/nekonight/extra/gitui.lua +++ b/lua/nekonight/extra/gitui.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/gnome_terminal.lua b/lua/nekonight/extra/gnome_terminal.lua index 0285600..65e00fa 100644 --- a/lua/nekonight/extra/gnome_terminal.lua +++ b/lua/nekonight/extra/gnome_terminal.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/helix.lua b/lua/nekonight/extra/helix.lua index 7bbd6be..b2e6937 100644 --- a/lua/nekonight/extra/helix.lua +++ b/lua/nekonight/extra/helix.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/init.lua b/lua/nekonight/extra/init.lua index 0c983a1..0b3d75a 100644 --- a/lua/nekonight/extra/init.lua +++ b/lua/nekonight/extra/init.lua @@ -1,4 +1,4 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} @@ -45,7 +45,7 @@ M.extras = { } function M.setup() - local tokyonight = require("tokyonight") + local nekonight = require("nekonight") vim.o.background = "dark" -- map of style to style name @@ -60,23 +60,23 @@ function M.setup() local names = vim.tbl_keys(M.extras) table.sort(names) - -- tokyonight.setup({ plugins = { all = true } }) + -- nekonight.setup({ plugins = { all = true } }) for _, extra in ipairs(names) do local info = M.extras[extra] - local plugin = require("tokyonight.extra." .. extra) + local plugin = require("nekonight.extra." .. extra) for style, style_name in pairs(styles) do - local colors, groups, opts = tokyonight.load({ style = style, plugins = { all = true } }) + local colors, groups, opts = nekonight.load({ style = style, plugins = { all = true } }) local fname = extra .. (info.subdir and "/" .. info.subdir .. "/" or "") - .. "/tokyonight" + .. "/nekonight" .. (info.sep or "_") .. style .. "." .. info.ext fname = string.gsub(fname, "%.$", "") -- remove trailing dot when no extension - colors["_upstream_url"] = "https://github.com/folke/tokyonight.nvim/raw/main/extras/" .. fname - colors["_style_name"] = "Tokyo Night" .. style_name - colors["_name"] = "tokyonight_" .. style + colors["_upstream_url"] = "https://github.com/BrunoCiccarino/nekonight/raw/main/extras/" .. fname + colors["_style_name"] = "nekonight" .. style_name + colors["_name"] = "nekonight_" .. style colors["_style"] = style print("[write] " .. fname) Util.write("extras/" .. fname, plugin.generate(colors, groups, opts)) diff --git a/lua/nekonight/extra/kitty.lua b/lua/nekonight/extra/kitty.lua index 31c93cb..fe34ddd 100644 --- a/lua/nekonight/extra/kitty.lua +++ b/lua/nekonight/extra/kitty.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/lazygit.lua b/lua/nekonight/extra/lazygit.lua index 2bbc086..220b2d0 100644 --- a/lua/nekonight/extra/lazygit.lua +++ b/lua/nekonight/extra/lazygit.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/prism.lua b/lua/nekonight/extra/prism.lua index 4d5f311..aa715ee 100644 --- a/lua/nekonight/extra/prism.lua +++ b/lua/nekonight/extra/prism.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/process_compose.lua b/lua/nekonight/extra/process_compose.lua index cd16884..246512d 100644 --- a/lua/nekonight/extra/process_compose.lua +++ b/lua/nekonight/extra/process_compose.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} --- @param colors ColorScheme diff --git a/lua/nekonight/extra/slack.lua b/lua/nekonight/extra/slack.lua index 58fda65..b48443c 100644 --- a/lua/nekonight/extra/slack.lua +++ b/lua/nekonight/extra/slack.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/spotify_player.lua b/lua/nekonight/extra/spotify_player.lua index 5ded384..dac9959 100644 --- a/lua/nekonight/extra/spotify_player.lua +++ b/lua/nekonight/extra/spotify_player.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/sublime.lua b/lua/nekonight/extra/sublime.lua index bf18e38..358756a 100644 --- a/lua/nekonight/extra/sublime.lua +++ b/lua/nekonight/extra/sublime.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -12,9 +12,9 @@ function M.generate(colors) end -- vim.schedule(function() --- local config = require("tokyonight.config") +-- local config = require("nekonight.config") -- config.setup({ style = "storm" }) --- local colors = require("tokyonight.colors").setup() +-- local colors = require("nekonight.colors").setup() -- -- local lookup = {} -- @@ -47,9 +47,9 @@ M.template = [[ colorSpaceName sRGB name - TokyoNight + nekonight semanticClass - enki.theme.tokyo + enki.theme.neko settings diff --git a/lua/nekonight/extra/terminator.lua b/lua/nekonight/extra/terminator.lua index 9ab4ce9..87daafe 100644 --- a/lua/nekonight/extra/terminator.lua +++ b/lua/nekonight/extra/terminator.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/termux.lua b/lua/nekonight/extra/termux.lua index b9cd04f..f74b486 100644 --- a/lua/nekonight/extra/termux.lua +++ b/lua/nekonight/extra/termux.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/tilix.lua b/lua/nekonight/extra/tilix.lua index 0b08390..450147e 100644 --- a/lua/nekonight/extra/tilix.lua +++ b/lua/nekonight/extra/tilix.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/tmux.lua b/lua/nekonight/extra/tmux.lua index 13a7fba..59edcd7 100644 --- a/lua/nekonight/extra/tmux.lua +++ b/lua/nekonight/extra/tmux.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -8,7 +8,7 @@ function M.generate(colors) [[ #!/usr/bin/env bash -# TokyoNight colors for Tmux +# NekoNight colors for Tmux set -g mode-style "fg=${blue},bg=${fg_gutter}" diff --git a/lua/nekonight/extra/vim.lua b/lua/nekonight/extra/vim.lua index 69ec364..515ce36 100644 --- a/lua/nekonight/extra/vim.lua +++ b/lua/nekonight/extra/vim.lua @@ -7,11 +7,11 @@ local mapping = { } --- @param colors ColorScheme ---- @param groups tokyonight.Highlights ---- @param opts tokyonight.Config +--- @param groups nekonight.Highlights +--- @param opts nekonight.Config function M.generate(colors, groups, opts) opts.plugins = { all = false, auto = false, treesitter = false } - local Groups = require("tokyonight.groups") + local Groups = require("nekonight.groups") for p, n in pairs(Groups.plugins) do if not p:find("nvim") then opts.plugins[n] = true @@ -20,7 +20,7 @@ function M.generate(colors, groups, opts) groups = Groups.setup(colors, opts) local lines = { ([[ -let g:colors_name = "tokyonight-%s" +let g:colors_name = "nekonight-%s" hi clear ]]):format(colors._style), } @@ -83,7 +83,7 @@ hi clear used[name] = true lines[#lines + 1] = ("hi %s %s"):format(name, table.concat(props, " ")) else - print("tokyonight: invalid highlight group: " .. name) + print("nekonight: invalid highlight group: " .. name) end end end diff --git a/lua/nekonight/extra/vimium.lua b/lua/nekonight/extra/vimium.lua index e3d0848..951d86d 100644 --- a/lua/nekonight/extra/vimium.lua +++ b/lua/nekonight/extra/vimium.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/wezterm.lua b/lua/nekonight/extra/wezterm.lua index 3b10d62..547391b 100644 --- a/lua/nekonight/extra/wezterm.lua +++ b/lua/nekonight/extra/wezterm.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/windows_terminal.lua b/lua/nekonight/extra/windows_terminal.lua index 240e912..86a0cf3 100644 --- a/lua/nekonight/extra/windows_terminal.lua +++ b/lua/nekonight/extra/windows_terminal.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/xfceterm.lua b/lua/nekonight/extra/xfceterm.lua index 690f17d..bbc26b8 100644 --- a/lua/nekonight/extra/xfceterm.lua +++ b/lua/nekonight/extra/xfceterm.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/xresources.lua b/lua/nekonight/extra/xresources.lua index 876e876..30c52f7 100644 --- a/lua/nekonight/extra/xresources.lua +++ b/lua/nekonight/extra/xresources.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -6,7 +6,7 @@ local M = {} function M.generate(colors) local xr = util.template( [[ -! TokyoNight colors for Xresources +! NekoNight colors for Xresources *background: ${bg} *foreground: ${fg} diff --git a/lua/nekonight/extra/yazi.lua b/lua/nekonight/extra/yazi.lua index e34399e..e20f3ac 100644 --- a/lua/nekonight/extra/yazi.lua +++ b/lua/nekonight/extra/yazi.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} diff --git a/lua/nekonight/extra/zathura.lua b/lua/nekonight/extra/zathura.lua index 39b5af2..3427e45 100644 --- a/lua/nekonight/extra/zathura.lua +++ b/lua/nekonight/extra/zathura.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -6,10 +6,10 @@ local M = {} function M.generate(colors) local zathura = util.template( [[ -# Tokyonight color theme for Zathura +# Nekonight color theme for Zathura # Swaps Foreground for Background to get a light version if the user prefers # -# Tokyonight color theme +# Nekonight color theme # set notification-error-bg "${red}" set notification-error-fg "${fg}" diff --git a/lua/nekonight/extra/zellij.lua b/lua/nekonight/extra/zellij.lua index f0b903d..95d0436 100644 --- a/lua/nekonight/extra/zellij.lua +++ b/lua/nekonight/extra/zellij.lua @@ -1,4 +1,4 @@ -local util = require("tokyonight.util") +local util = require("nekonight.util") local M = {} @@ -6,7 +6,7 @@ local M = {} function M.generate(colors) local zellij = util.template( [=[ -// Tokyonight Zellij Colors +// Nekonight Zellij Colors // Add this file to your `CONFIG_DIR/themes` directory as described here: // https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme diff --git a/lua/nekonight/groups/aerial.lua b/lua/nekonight/groups/aerial.lua index ace1d94..45ff8ff 100644 --- a/lua/nekonight/groups/aerial.lua +++ b/lua/nekonight/groups/aerial.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/stevearc/aerial.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { @@ -10,7 +10,7 @@ function M.get(c, opts) AerialGuide = { fg = c.fg_gutter }, AerialLine = "LspInlayHint", } - require("tokyonight.groups.kinds").kinds(ret, "Aerial%sIcon") + require("nekonight.groups.kinds").kinds(ret, "Aerial%sIcon") return ret end diff --git a/lua/nekonight/groups/ale.lua b/lua/nekonight/groups/ale.lua index b6eca0d..1554861 100644 --- a/lua/nekonight/groups/ale.lua +++ b/lua/nekonight/groups/ale.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/dense-analysis/ale" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/alpha.lua b/lua/nekonight/groups/alpha.lua index 570bb06..0119c55 100644 --- a/lua/nekonight/groups/alpha.lua +++ b/lua/nekonight/groups/alpha.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/goolord/alpha-nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/barbar.lua b/lua/nekonight/groups/barbar.lua index 823f588..945fbe5 100644 --- a/lua/nekonight/groups/barbar.lua +++ b/lua/nekonight/groups/barbar.lua @@ -1,10 +1,10 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} M.url = "https://github.com/romgrk/barbar.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c) -- stylua: ignore return { diff --git a/lua/nekonight/groups/base.lua b/lua/nekonight/groups/base.lua index b7abdc3..ae59f64 100644 --- a/lua/nekonight/groups/base.lua +++ b/lua/nekonight/groups/base.lua @@ -1,8 +1,8 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/blink.lua b/lua/nekonight/groups/blink.lua index fe21aeb..a9288d3 100644 --- a/lua/nekonight/groups/blink.lua +++ b/lua/nekonight/groups/blink.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/Saghen/blink.cmp" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { @@ -19,7 +19,7 @@ function M.get(c, opts) BlinkCmpLabelMatch = { fg = c.blue1, bg = c.none }, } - require("tokyonight.groups.kinds").kinds(ret, "BlinkCmpKind%s") + require("nekonight.groups.kinds").kinds(ret, "BlinkCmpKind%s") return ret end diff --git a/lua/nekonight/groups/bufferline.lua b/lua/nekonight/groups/bufferline.lua index 299f60a..25e0a30 100644 --- a/lua/nekonight/groups/bufferline.lua +++ b/lua/nekonight/groups/bufferline.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/akinsho/bufferline.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/cmp.lua b/lua/nekonight/groups/cmp.lua index 25c6e55..feb0870 100644 --- a/lua/nekonight/groups/cmp.lua +++ b/lua/nekonight/groups/cmp.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/hrsh7th/nvim-cmp" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { @@ -21,7 +21,7 @@ function M.get(c, opts) CmpItemMenu = { fg = c.comment, bg = c.none }, } - require("tokyonight.groups.kinds").kinds(ret, "CmpItemKind%s") + require("nekonight.groups.kinds").kinds(ret, "CmpItemKind%s") return ret end diff --git a/lua/nekonight/groups/codeium.lua b/lua/nekonight/groups/codeium.lua index fa842ac..ca31d88 100644 --- a/lua/nekonight/groups/codeium.lua +++ b/lua/nekonight/groups/codeium.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/Exafunction/codeium.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { diff --git a/lua/nekonight/groups/copilot.lua b/lua/nekonight/groups/copilot.lua index 9bda8a8..8b46ec6 100644 --- a/lua/nekonight/groups/copilot.lua +++ b/lua/nekonight/groups/copilot.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/zbirenbaum/copilot.lua" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { diff --git a/lua/nekonight/groups/dap.lua b/lua/nekonight/groups/dap.lua index 3f26f6d..15de2fb 100644 --- a/lua/nekonight/groups/dap.lua +++ b/lua/nekonight/groups/dap.lua @@ -1,10 +1,10 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} M.url = "https://github.com/mfussenegger/nvim-dap" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/dashboard.lua b/lua/nekonight/groups/dashboard.lua index 4af44af..c9a7273 100644 --- a/lua/nekonight/groups/dashboard.lua +++ b/lua/nekonight/groups/dashboard.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/nvimdev/dashboard-nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/flash.lua b/lua/nekonight/groups/flash.lua index dce2a11..5eb01a2 100644 --- a/lua/nekonight/groups/flash.lua +++ b/lua/nekonight/groups/flash.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/folke/flash.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/fzf.lua b/lua/nekonight/groups/fzf.lua index a3e4fa3..082dec0 100644 --- a/lua/nekonight/groups/fzf.lua +++ b/lua/nekonight/groups/fzf.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/ibhagwan/fzf-lua" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c) -- stylua: ignore return { diff --git a/lua/nekonight/groups/gitgutter.lua b/lua/nekonight/groups/gitgutter.lua index 54f4c28..9ed780f 100644 --- a/lua/nekonight/groups/gitgutter.lua +++ b/lua/nekonight/groups/gitgutter.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/airblade/vim-gitgutter" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/gitsigns.lua b/lua/nekonight/groups/gitsigns.lua index 9d4c601..f49d7e5 100644 --- a/lua/nekonight/groups/gitsigns.lua +++ b/lua/nekonight/groups/gitsigns.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/lewis6991/gitsigns.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/glyph-palette.lua b/lua/nekonight/groups/glyph-palette.lua index 19daad0..8fcbef7 100644 --- a/lua/nekonight/groups/glyph-palette.lua +++ b/lua/nekonight/groups/glyph-palette.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/lambdalisue/glyph-palette.vim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c) -- stylua: ignore return { diff --git a/lua/nekonight/groups/grug-far.lua b/lua/nekonight/groups/grug-far.lua index a398da5..5929d35 100644 --- a/lua/nekonight/groups/grug-far.lua +++ b/lua/nekonight/groups/grug-far.lua @@ -2,7 +2,7 @@ local M = {} M.url = "https://github.com/MagicDuck/grug-far.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/groups/headlines.lua b/lua/nekonight/groups/headlines.lua index 35a8698..07c3cb5 100644 --- a/lua/nekonight/groups/headlines.lua +++ b/lua/nekonight/groups/headlines.lua @@ -1,10 +1,10 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} M.url = "https://github.com/lukas-reineke/headlines.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore local ret = { diff --git a/lua/nekonight/groups/hop.lua b/lua/nekonight/groups/hop.lua index 1ac8b08..f07d4e1 100644 --- a/lua/nekonight/groups/hop.lua +++ b/lua/nekonight/groups/hop.lua @@ -1,10 +1,10 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} M.url = "https://github.com/phaazon/hop.nvim" ----@type tokyonight.HighlightsFn +---@type nekonight.HighlightsFn function M.get(c, opts) -- stylua: ignore return { diff --git a/lua/nekonight/init.lua b/lua/nekonight/init.lua index 1c5ce3c..43248bf 100644 --- a/lua/nekonight/init.lua +++ b/lua/nekonight/init.lua @@ -1,24 +1,24 @@ -local config = require("tokyonight.config") +local config = require("nekonight.config") local M = {} ---@type {light?: string, dark?: string} M.styles = {} ----@param opts? tokyonight.Config +---@param opts? nekonight.Config function M.load(opts) - opts = require("tokyonight.config").extend(opts) + opts = require("nekonight.config").extend(opts) local bg = vim.o.background local style_bg = opts.style == "day" and "light" or "dark" if bg ~= style_bg then - if vim.g.colors_name == "tokyonight-" .. opts.style then + if vim.g.colors_name == "nekonight-" .. opts.style then opts.style = bg == "light" and (M.styles.light or "day") or (M.styles.dark or "moon") else vim.o.background = style_bg end end M.styles[vim.o.background] = opts.style - return require("tokyonight.theme").setup(opts) + return require("nekonight.theme").setup(opts) end M.setup = config.setup diff --git a/lua/nekonight/theme.lua b/lua/nekonight/theme.lua index 7345327..8bbae96 100644 --- a/lua/nekonight/theme.lua +++ b/lua/nekonight/theme.lua @@ -1,13 +1,13 @@ -local Util = require("tokyonight.util") +local Util = require("nekonight.util") local M = {} ----@param opts? tokyonight.Config +---@param opts? nekonight.Config function M.setup(opts) - opts = require("tokyonight.config").extend(opts) + opts = require("nekonight.config").extend(opts) - local colors = require("tokyonight.colors").setup(opts) - local groups = require("tokyonight.groups").setup(colors, opts) + local colors = require("nekonight.colors").setup(opts) + local groups = require("nekonight.groups").setup(colors, opts) -- only needed to clear when not the default colorscheme if vim.g.colors_name then @@ -15,7 +15,7 @@ function M.setup(opts) end vim.o.termguicolors = true - vim.g.colors_name = "tokyonight-" .. opts.style + vim.g.colors_name = "nekonight-" .. opts.style for group, hl in pairs(groups) do hl = type(hl) == "string" and { link = hl } or hl diff --git a/lua/nekonight/types.lua b/lua/nekonight/types.lua index 433c243..6d3e7ac 100644 --- a/lua/nekonight/types.lua +++ b/lua/nekonight/types.lua @@ -1,10 +1,10 @@ ----@class tokyonight.Highlight: vim.api.keyset.highlight +---@class nekonight.Highlight: vim.api.keyset.highlight ---@field style? vim.api.keyset.highlight ----@alias tokyonight.Highlights table +---@alias nekonight.Highlights table ----@alias tokyonight.HighlightsFn fun(colors: ColorScheme, opts:tokyonight.Config):tokyonight.Highlights +---@alias nekonight.HighlightsFn fun(colors: ColorScheme, opts:nekonight.Config):nekonight.Highlights ----@class tokyonight.Cache ----@field groups tokyonight.Highlights +---@class nekonight.Cache +---@field groups nekonight.Highlights ---@field inputs table diff --git a/lua/nekonight/util.lua b/lua/nekonight/util.lua index c5cf109..5ceac94 100644 --- a/lua/nekonight/util.lua +++ b/lua/nekonight/util.lua @@ -57,7 +57,7 @@ function M.invert(color) color[key] = M.invert(value) end elseif type(color) == "string" then - local hsluv = require("tokyonight.hsluv") + local hsluv = require("nekonight.hsluv") if color ~= "NONE" then local hsl = hsluv.hex_to_hsluv(color) hsl[3] = 100 - hsl[3] @@ -76,7 +76,7 @@ end function M.brighten(color, lightness_amount, saturation_amount) lightness_amount = lightness_amount or 0.05 saturation_amount = saturation_amount or 0.2 - local hsluv = require("tokyonight.hsluv") + local hsluv = require("nekonight.hsluv") -- Convert the hex color to HSLuv local hsl = hsluv.hex_to_hsluv(color) @@ -91,7 +91,7 @@ function M.brighten(color, lightness_amount, saturation_amount) return hsluv.hsluv_to_hex(hsl) end ----@param groups tokyonight.Highlights +---@param groups nekonight.Highlights ---@return table function M.resolve(groups) for _, hl in pairs(groups) do @@ -140,12 +140,12 @@ end M.cache = {} function M.cache.file(key) - return vim.fn.stdpath("cache") .. "/tokyonight-" .. key .. ".json" + return vim.fn.stdpath("cache") .. "/nekonight-" .. key .. ".json" end ---@param key string function M.cache.read(key) - ---@type boolean, tokyonight.Cache + ---@type boolean, nekonight.Cache local ok, ret = pcall(function() return vim.json.decode(M.read(M.cache.file(key)), { luanil = { object = true, @@ -156,7 +156,7 @@ function M.cache.read(key) end ---@param key string ----@param data tokyonight.Cache +---@param data nekonight.Cache function M.cache.write(key, data) pcall(M.write, M.cache.file(key), vim.json.encode(data)) end diff --git a/tests/colorscheme_spec.lua b/tests/colorscheme_spec.lua index 3aafb76..4dd8d05 100644 --- a/tests/colorscheme_spec.lua +++ b/tests/colorscheme_spec.lua @@ -1,5 +1,5 @@ -local Config = require("tokyonight.config") -local Init = require("tokyonight") +local Config = require("nekonight.config") +local Init = require("nekonight") before_each(function() vim.o.background = "dark" @@ -17,68 +17,68 @@ end) describe("loading respects vim.o.background", function() it("= dark", function() vim.o.background = "dark" - vim.cmd.colorscheme("tokyonight") + vim.cmd.colorscheme("nekonight") assert.same("dark", vim.o.background) - assert.same("tokyonight-moon", vim.g.colors_name) + assert.same("nekonight-moon", vim.g.colors_name) end) it("= light", function() vim.o.background = "light" - vim.cmd.colorscheme("tokyonight") + vim.cmd.colorscheme("nekonight") assert.same("light", vim.o.background) - assert.same("tokyonight-day", vim.g.colors_name) + assert.same("nekonight-day", vim.g.colors_name) end) it("= dark with night", function() vim.o.background = "dark" - vim.cmd.colorscheme("tokyonight-night") + vim.cmd.colorscheme("nekonight-night") assert.same("dark", vim.o.background) - assert.same("tokyonight-night", vim.g.colors_name) + assert.same("nekonight-night", vim.g.colors_name) end) it("= dark with day", function() vim.o.background = "dark" - vim.cmd.colorscheme("tokyonight-day") + vim.cmd.colorscheme("nekonight-day") assert.same("light", vim.o.background) - assert.same("tokyonight-day", vim.g.colors_name) + assert.same("nekonight-day", vim.g.colors_name) end) it("= light with night", function() vim.o.background = "light" - vim.cmd.colorscheme("tokyonight-night") + vim.cmd.colorscheme("nekonight-night") assert.same("dark", vim.o.background) - assert.same("tokyonight-night", vim.g.colors_name) + assert.same("nekonight-night", vim.g.colors_name) end) it("= light with day", function() vim.o.background = "light" - vim.cmd.colorscheme("tokyonight-day") + vim.cmd.colorscheme("nekonight-day") assert.same("light", vim.o.background) - assert.same("tokyonight-day", vim.g.colors_name) + assert.same("nekonight-day", vim.g.colors_name) end) it(" and switches to light", function() vim.o.background = "dark" - vim.cmd.colorscheme("tokyonight-night") + vim.cmd.colorscheme("nekonight-night") vim.o.background = "light" assert.same("light", vim.o.background) - assert.same("tokyonight-day", vim.g.colors_name) + assert.same("nekonight-day", vim.g.colors_name) end) it(" and switches to dark", function() vim.o.background = "light" - vim.cmd.colorscheme("tokyonight") + vim.cmd.colorscheme("nekonight") vim.o.background = "dark" assert.same("dark", vim.o.background) - assert.same("tokyonight-moon", vim.g.colors_name) + assert.same("nekonight-moon", vim.g.colors_name) end) it(" and remembers dark", function() vim.o.background = "dark" - vim.cmd.colorscheme("tokyonight-night") + vim.cmd.colorscheme("nekonight-night") vim.o.background = "light" vim.o.background = "dark" assert.same("dark", vim.o.background) - assert.same("tokyonight-night", vim.g.colors_name) + assert.same("nekonight-night", vim.g.colors_name) end) end) diff --git a/tests/groups_spec.lua b/tests/groups_spec.lua index d2501aa..4532ee3 100644 --- a/tests/groups_spec.lua +++ b/tests/groups_spec.lua @@ -1,5 +1,5 @@ -local Config = require("tokyonight.config") -local Groups = require("tokyonight.groups") +local Config = require("nekonight.config") +local Groups = require("nekonight.groups") local base = { "base", "kinds", "semantic_tokens", "treesitter" } @@ -8,7 +8,7 @@ before_each(function() end) describe("group is valid", function() - for name in vim.fs.dir("lua/tokyonight/groups") do + for name in vim.fs.dir("lua/nekonight/groups") do name = name:match("(.+)%.lua$") if name and name ~= "init" and not vim.list_contains(base, name) then it(name .. " has an url", function() @@ -47,7 +47,7 @@ describe("group config", function() for _, name in pairs(Groups.plugins) do all[name] = true end - local colors = require("tokyonight.colors").setup(opts) + local colors = require("nekonight.colors").setup(opts) local _, groups = Groups.setup(colors, opts) assert.same(all, groups) end) @@ -58,7 +58,7 @@ describe("group config", function() for _, name in ipairs(base) do all[name] = true end - local colors = require("tokyonight.colors").setup(opts) + local colors = require("nekonight.colors").setup(opts) local _, groups = Groups.setup(colors, opts) assert.same(all, groups) end) @@ -74,7 +74,7 @@ describe("group config", function() all[name] = true end all.dashboard = true - local colors = require("tokyonight.colors").setup(opts) + local colors = require("nekonight.colors").setup(opts) local _, groups = Groups.setup(colors, opts) assert.same(all, groups) end) @@ -92,7 +92,7 @@ describe("group config", function() all[name] = true end all.dashboard = true - local colors = require("tokyonight.colors").setup(opts) + local colors = require("nekonight.colors").setup(opts) local _, groups = Groups.setup(colors, opts) assert.same(all, groups) end)