├── .gitignore ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── icon.png ├── icon.svg ├── package.json ├── screenshot.png └── themes └── darcula.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/icon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/screenshot.png -------------------------------------------------------------------------------- /themes/darcula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokoroku/vscode-theme-darcula/HEAD/themes/darcula.json --------------------------------------------------------------------------------