├── .gitignore ├── LICENSE ├── README.md ├── dot_env ├── index.js ├── moon.png ├── package.json └── sun.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | node_modules 3 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/README.md -------------------------------------------------------------------------------- /dot_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/dot_env -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/index.js -------------------------------------------------------------------------------- /moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/moon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/package.json -------------------------------------------------------------------------------- /sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/dark-mode-email/HEAD/sun.png --------------------------------------------------------------------------------