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