├── .github └── workflows │ └── mirror.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── soothe-darker-theme.el ├── soothe-obsidian-theme.el ├── soothe-theme.el └── soothe-tva.el /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/.github/workflows/mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/README.md -------------------------------------------------------------------------------- /soothe-darker-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/soothe-darker-theme.el -------------------------------------------------------------------------------- /soothe-obsidian-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/soothe-obsidian-theme.el -------------------------------------------------------------------------------- /soothe-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/soothe-theme.el -------------------------------------------------------------------------------- /soothe-tva.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-soothe-theme/HEAD/soothe-tva.el --------------------------------------------------------------------------------