├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.less ├── package.json ├── screenshot.png ├── screenshoto.png └── styles ├── base.less ├── colors.less └── syntax-variables.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/README.md -------------------------------------------------------------------------------- /index.less: -------------------------------------------------------------------------------- 1 | @import "./styles/base.less"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/screenshoto.png -------------------------------------------------------------------------------- /styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/styles/base.less -------------------------------------------------------------------------------- /styles/colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/styles/colors.less -------------------------------------------------------------------------------- /styles/syntax-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csutter/chester-atom-syntax/HEAD/styles/syntax-variables.less --------------------------------------------------------------------------------