├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── atom ├── material-dark │ ├── index.less │ ├── package.json │ └── styles │ │ ├── base.less │ │ └── syntax-variables.less └── material-light │ ├── index.less │ ├── package.json │ └── styles │ ├── base.less │ └── syntax-variables.less ├── index.less ├── messages.json ├── messages ├── 2.0.0.txt └── install.txt ├── package.json ├── screenshots ├── material-dark-html-js.jpg ├── material-dark-python.jpg ├── material-dark-scss-less.jpg ├── material-light-html-js.jpg ├── material-light-python.jpg └── material-light-scss-less.jpg └── sublime ├── material-dark.tmTheme └── material-light.tmTheme /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/README.md -------------------------------------------------------------------------------- /atom/material-dark/index.less: -------------------------------------------------------------------------------- 1 | @import "./styles/base.less"; 2 | -------------------------------------------------------------------------------- /atom/material-dark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-dark/package.json -------------------------------------------------------------------------------- /atom/material-dark/styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-dark/styles/base.less -------------------------------------------------------------------------------- /atom/material-dark/styles/syntax-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-dark/styles/syntax-variables.less -------------------------------------------------------------------------------- /atom/material-light/index.less: -------------------------------------------------------------------------------- 1 | @import "./styles/base.less"; 2 | -------------------------------------------------------------------------------- /atom/material-light/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-light/package.json -------------------------------------------------------------------------------- /atom/material-light/styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-light/styles/base.less -------------------------------------------------------------------------------- /atom/material-light/styles/syntax-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/atom/material-light/styles/syntax-variables.less -------------------------------------------------------------------------------- /index.less: -------------------------------------------------------------------------------- 1 | @import './atom/material-dark/styles/base.less'; 2 | -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/messages.json -------------------------------------------------------------------------------- /messages/2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/messages/2.0.0.txt -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/messages/install.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/material-dark-html-js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-dark-html-js.jpg -------------------------------------------------------------------------------- /screenshots/material-dark-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-dark-python.jpg -------------------------------------------------------------------------------- /screenshots/material-dark-scss-less.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-dark-scss-less.jpg -------------------------------------------------------------------------------- /screenshots/material-light-html-js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-light-html-js.jpg -------------------------------------------------------------------------------- /screenshots/material-light-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-light-python.jpg -------------------------------------------------------------------------------- /screenshots/material-light-scss-less.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/screenshots/material-light-scss-less.jpg -------------------------------------------------------------------------------- /sublime/material-dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/sublime/material-dark.tmTheme -------------------------------------------------------------------------------- /sublime/material-light.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willsoto/material-color-scheme/HEAD/sublime/material-light.tmTheme --------------------------------------------------------------------------------