├── .gitignore ├── LICENSE ├── README.md ├── index.less ├── package.json └── styles ├── editor.less ├── languages.less └── syntax-variables.less /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/README.md -------------------------------------------------------------------------------- /index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/index.less -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/package.json -------------------------------------------------------------------------------- /styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/styles/editor.less -------------------------------------------------------------------------------- /styles/languages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/styles/languages.less -------------------------------------------------------------------------------- /styles/syntax-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-atom-dark-syntax/HEAD/styles/syntax-variables.less --------------------------------------------------------------------------------