├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── screenshots ├── 1.png └── 2.png └── styles ├── index.less └── ui-variables.less /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/styles/index.less -------------------------------------------------------------------------------- /styles/ui-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faraadi/mailspring-nord-theme/HEAD/styles/ui-variables.less --------------------------------------------------------------------------------