├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── images ├── icon.png └── screenshot.png ├── package.json └── themes └── Transparent Color Theme-color-theme.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/package.json -------------------------------------------------------------------------------- /themes/Transparent Color Theme-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexOwl/vscode-transparent-color-theme/HEAD/themes/Transparent Color Theme-color-theme.json --------------------------------------------------------------------------------