├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── images └── icon.png ├── package.json ├── screenshots ├── php.png ├── ruby-full.png └── ruby.png └── themes ├── outrun-day-color-theme.json ├── outrun-electric-color-theme.json ├── outrun-night-color-theme.json └── outrun-old.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/screenshots/php.png -------------------------------------------------------------------------------- /screenshots/ruby-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/screenshots/ruby-full.png -------------------------------------------------------------------------------- /screenshots/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/screenshots/ruby.png -------------------------------------------------------------------------------- /themes/outrun-day-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/themes/outrun-day-color-theme.json -------------------------------------------------------------------------------- /themes/outrun-electric-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/themes/outrun-electric-color-theme.json -------------------------------------------------------------------------------- /themes/outrun-night-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/themes/outrun-night-color-theme.json -------------------------------------------------------------------------------- /themes/outrun-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrap/outrun-theme-vscode/HEAD/themes/outrun-old.json --------------------------------------------------------------------------------