├── .gitignore ├── .vscode └── launch.json ├── README.md ├── icon.png ├── icon.svg ├── installLocal.js ├── legacy ├── AnOldHope.tmTheme └── AnOldHopeLight.tmTheme ├── package.json ├── src ├── getColors.js ├── getTokenColors.js ├── helpers │ └── shadeColor.js ├── palette.js ├── themes │ ├── AnOldHope.js │ ├── AnOldHopeTatooine.js │ └── index.js └── writeTheme.js └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | themes/** 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/icon.svg -------------------------------------------------------------------------------- /installLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/installLocal.js -------------------------------------------------------------------------------- /legacy/AnOldHope.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/legacy/AnOldHope.tmTheme -------------------------------------------------------------------------------- /legacy/AnOldHopeLight.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/legacy/AnOldHopeLight.tmTheme -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/package.json -------------------------------------------------------------------------------- /src/getColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/getColors.js -------------------------------------------------------------------------------- /src/getTokenColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/getTokenColors.js -------------------------------------------------------------------------------- /src/helpers/shadeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/helpers/shadeColor.js -------------------------------------------------------------------------------- /src/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/palette.js -------------------------------------------------------------------------------- /src/themes/AnOldHope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/themes/AnOldHope.js -------------------------------------------------------------------------------- /src/themes/AnOldHopeTatooine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/themes/AnOldHopeTatooine.js -------------------------------------------------------------------------------- /src/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/themes/index.js -------------------------------------------------------------------------------- /src/writeTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/src/writeTheme.js -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinsanders/an-old-hope-theme-vscode/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------