├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── icon.svg ├── package.json ├── screenshot.png ├── src ├── build.js ├── theme.xml └── themes.js └── themes ├── Earth.tmTheme ├── Forest.tmTheme ├── Sea.tmTheme ├── Sky.tmTheme └── Space.tmTheme /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/README.md -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/icon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/src/build.js -------------------------------------------------------------------------------- /src/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/src/theme.xml -------------------------------------------------------------------------------- /src/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/src/themes.js -------------------------------------------------------------------------------- /themes/Earth.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/themes/Earth.tmTheme -------------------------------------------------------------------------------- /themes/Forest.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/themes/Forest.tmTheme -------------------------------------------------------------------------------- /themes/Sea.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/themes/Sea.tmTheme -------------------------------------------------------------------------------- /themes/Sky.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/themes/Sky.tmTheme -------------------------------------------------------------------------------- /themes/Space.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallar/vscode-duotone-dark/HEAD/themes/Space.tmTheme --------------------------------------------------------------------------------