├── .DS_Store ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images └── icon.png ├── package.json └── themes ├── Xcode Civic.json ├── Xcode Classic Dark.json ├── Xcode Classic Light.json ├── Xcode Default Dark Customized Version.json ├── Xcode Default Dark.json ├── Xcode Low Key.json └── Xcode Spartan.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/package.json -------------------------------------------------------------------------------- /themes/Xcode Civic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Civic.json -------------------------------------------------------------------------------- /themes/Xcode Classic Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Classic Dark.json -------------------------------------------------------------------------------- /themes/Xcode Classic Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Classic Light.json -------------------------------------------------------------------------------- /themes/Xcode Default Dark Customized Version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Default Dark Customized Version.json -------------------------------------------------------------------------------- /themes/Xcode Default Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Default Dark.json -------------------------------------------------------------------------------- /themes/Xcode Low Key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Low Key.json -------------------------------------------------------------------------------- /themes/Xcode Spartan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCerquetella/xcode-theme/HEAD/themes/Xcode Spartan.json --------------------------------------------------------------------------------