Advertisement
poetician

Turquoise | emacs

Apr 3rd, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. ;; base16-oomox-turquoise-theme.el -- A base16 colorscheme
  2.  
  3. ;;; Commentary:
  4. ;; Base16: (https://github.com/chriskempson/base16)
  5.  
  6. ;;; Authors:
  7. ;; Scheme: oomox-Turquoise
  8. ;; Template: Kaleb Elwert <belak@coded.io>
  9.  
  10. ;;; Code:
  11.  
  12. (require 'base16-theme)
  13.  
  14. (defvar base16-oomox-turquoise-colors
  15. '(:base00 "#2aa1b7"
  16. :base01 "#000012"
  17. :base02 "#000f4f"
  18. :base03 "#186983"
  19. :base04 "#3eb5cb"
  20. :base05 "#073351"
  21. :base06 "#abd9ee"
  22. :base07 "#b9e2f6"
  23. :base08 "#c73202"
  24. :base09 "#8e5202"
  25. :base0A "#7e5c02"
  26. :base0B "#586442"
  27. :base0C "#416289"
  28. :base0D "#1b58cb"
  29. :base0E "#8e47ac"
  30. :base0F "#962e00")
  31. "All colors for Base16 oomox-Turquoise are defined here.")
  32.  
  33. ;; Define the theme
  34. (deftheme base16-oomox-turquoise)
  35.  
  36. ;; Add all the faces to the theme
  37. (base16-theme-define 'base16-oomox-turquoise base16-oomox-turquoise-colors)
  38.  
  39. ;; Mark the theme as provided
  40. (provide-theme 'base16-oomox-turquoise)
  41.  
  42. (provide 'base16-oomox-turquoise-theme)
  43.  
  44. ;;; base16-oomox-turquoise-theme.el ends here
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement