├── .github └── workflows │ └── mirror.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── darktooth-dark-theme.el ├── darktooth-darker-theme.el ├── darktooth-theme.el ├── darktooth.el ├── palette-images ├── accents.png ├── bright.png ├── dark.png ├── darkness.png ├── delimiters.png ├── faded.png ├── header.png ├── identifiers-1.png ├── identifiers-2.png ├── identifiers-3.png ├── lightness.png ├── medium.png ├── mid.png ├── muted.png └── neutral.png ├── palette ├── darktooth-theme-colors.css ├── darktooth-theme-colors.css.map ├── darktooth-theme-colors.scss ├── index.html └── js │ └── index.js └── screenshots ├── darktooth-coffee.png ├── darktooth-dired.png ├── darktooth-emacslisp.png ├── darktooth-java.png ├── darktooth-keyboard.jpg ├── darktooth-modeline.png ├── darktooth-multi-window.png ├── darktooth-popup-menu.png ├── darktooth-popup-tip.png ├── darktooth-terminal.png ├── darktooth-vera.png └── darktooth-xml.png /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/.github/workflows/mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/README.md -------------------------------------------------------------------------------- /darktooth-dark-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/darktooth-dark-theme.el -------------------------------------------------------------------------------- /darktooth-darker-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/darktooth-darker-theme.el -------------------------------------------------------------------------------- /darktooth-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/darktooth-theme.el -------------------------------------------------------------------------------- /darktooth.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/darktooth.el -------------------------------------------------------------------------------- /palette-images/accents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/accents.png -------------------------------------------------------------------------------- /palette-images/bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/bright.png -------------------------------------------------------------------------------- /palette-images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/dark.png -------------------------------------------------------------------------------- /palette-images/darkness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/darkness.png -------------------------------------------------------------------------------- /palette-images/delimiters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/delimiters.png -------------------------------------------------------------------------------- /palette-images/faded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/faded.png -------------------------------------------------------------------------------- /palette-images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/header.png -------------------------------------------------------------------------------- /palette-images/identifiers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/identifiers-1.png -------------------------------------------------------------------------------- /palette-images/identifiers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/identifiers-2.png -------------------------------------------------------------------------------- /palette-images/identifiers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/identifiers-3.png -------------------------------------------------------------------------------- /palette-images/lightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/lightness.png -------------------------------------------------------------------------------- /palette-images/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/medium.png -------------------------------------------------------------------------------- /palette-images/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/mid.png -------------------------------------------------------------------------------- /palette-images/muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/muted.png -------------------------------------------------------------------------------- /palette-images/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette-images/neutral.png -------------------------------------------------------------------------------- /palette/darktooth-theme-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette/darktooth-theme-colors.css -------------------------------------------------------------------------------- /palette/darktooth-theme-colors.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette/darktooth-theme-colors.css.map -------------------------------------------------------------------------------- /palette/darktooth-theme-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette/darktooth-theme-colors.scss -------------------------------------------------------------------------------- /palette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette/index.html -------------------------------------------------------------------------------- /palette/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/palette/js/index.js -------------------------------------------------------------------------------- /screenshots/darktooth-coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-coffee.png -------------------------------------------------------------------------------- /screenshots/darktooth-dired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-dired.png -------------------------------------------------------------------------------- /screenshots/darktooth-emacslisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-emacslisp.png -------------------------------------------------------------------------------- /screenshots/darktooth-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-java.png -------------------------------------------------------------------------------- /screenshots/darktooth-keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-keyboard.jpg -------------------------------------------------------------------------------- /screenshots/darktooth-modeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-modeline.png -------------------------------------------------------------------------------- /screenshots/darktooth-multi-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-multi-window.png -------------------------------------------------------------------------------- /screenshots/darktooth-popup-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-popup-menu.png -------------------------------------------------------------------------------- /screenshots/darktooth-popup-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-popup-tip.png -------------------------------------------------------------------------------- /screenshots/darktooth-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-terminal.png -------------------------------------------------------------------------------- /screenshots/darktooth-vera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-vera.png -------------------------------------------------------------------------------- /screenshots/darktooth-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/emacs-theme-darktooth/HEAD/screenshots/darktooth-xml.png --------------------------------------------------------------------------------