├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── icon.png ├── package.json ├── palette drak.png ├── palette light.png ├── scheme dark.png ├── scheme light.png ├── screenshot.png ├── themes ├── Chinolor-color-theme.json └── Chinolor-light-color-theme.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/package.json -------------------------------------------------------------------------------- /palette drak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/palette drak.png -------------------------------------------------------------------------------- /palette light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/palette light.png -------------------------------------------------------------------------------- /scheme dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/scheme dark.png -------------------------------------------------------------------------------- /scheme light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/scheme light.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/screenshot.png -------------------------------------------------------------------------------- /themes/Chinolor-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/themes/Chinolor-color-theme.json -------------------------------------------------------------------------------- /themes/Chinolor-light-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/themes/Chinolor-light-color-theme.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwyvi/chinolor/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------