├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── LICENSE ├── README.md ├── assets └── icon.gif ├── jsconfig.json ├── package.json └── themes ├── lunar-dark-color-theme.json └── lunar-midnight-color-theme.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/assets/icon.gif -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/package.json -------------------------------------------------------------------------------- /themes/lunar-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/themes/lunar-dark-color-theme.json -------------------------------------------------------------------------------- /themes/lunar-midnight-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heybereket/lunar-theme/HEAD/themes/lunar-midnight-color-theme.json --------------------------------------------------------------------------------