├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitpod.yml ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── colors.json ├── package.json ├── themes ├── Synthax-color-theme.json └── img │ ├── code.png │ ├── examples │ ├── boolean.png │ ├── builtins.png │ ├── functions-classes.png │ ├── functions.png │ ├── null.png │ ├── numbers.png │ ├── objects.png │ ├── old │ │ ├── boolean.png │ │ ├── functions.png │ │ ├── objects.png │ │ ├── strings.png │ │ ├── tags.png │ │ ├── types.png │ │ └── variables.png │ ├── parameters-correct.png │ ├── parameters-wrong.png │ ├── strings.png │ ├── tags.png │ ├── types.png │ └── variables.png │ ├── symbol.png │ ├── synthax_icon.png │ └── synthax_logo.png └── vsc-extension-quickstart.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: npm install -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/README.md -------------------------------------------------------------------------------- /colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/colors.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/package.json -------------------------------------------------------------------------------- /themes/Synthax-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/Synthax-color-theme.json -------------------------------------------------------------------------------- /themes/img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/code.png -------------------------------------------------------------------------------- /themes/img/examples/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/boolean.png -------------------------------------------------------------------------------- /themes/img/examples/builtins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/builtins.png -------------------------------------------------------------------------------- /themes/img/examples/functions-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/functions-classes.png -------------------------------------------------------------------------------- /themes/img/examples/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/functions.png -------------------------------------------------------------------------------- /themes/img/examples/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/null.png -------------------------------------------------------------------------------- /themes/img/examples/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/numbers.png -------------------------------------------------------------------------------- /themes/img/examples/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/objects.png -------------------------------------------------------------------------------- /themes/img/examples/old/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/boolean.png -------------------------------------------------------------------------------- /themes/img/examples/old/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/functions.png -------------------------------------------------------------------------------- /themes/img/examples/old/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/objects.png -------------------------------------------------------------------------------- /themes/img/examples/old/strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/strings.png -------------------------------------------------------------------------------- /themes/img/examples/old/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/tags.png -------------------------------------------------------------------------------- /themes/img/examples/old/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/types.png -------------------------------------------------------------------------------- /themes/img/examples/old/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/old/variables.png -------------------------------------------------------------------------------- /themes/img/examples/parameters-correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/parameters-correct.png -------------------------------------------------------------------------------- /themes/img/examples/parameters-wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/parameters-wrong.png -------------------------------------------------------------------------------- /themes/img/examples/strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/strings.png -------------------------------------------------------------------------------- /themes/img/examples/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/tags.png -------------------------------------------------------------------------------- /themes/img/examples/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/types.png -------------------------------------------------------------------------------- /themes/img/examples/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/examples/variables.png -------------------------------------------------------------------------------- /themes/img/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/symbol.png -------------------------------------------------------------------------------- /themes/img/synthax_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/synthax_icon.png -------------------------------------------------------------------------------- /themes/img/synthax_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/themes/img/synthax_logo.png -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxhoundn/synthax-code-theme/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------