config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

base16-hopscotch-theme.el (980B)


      1 ;; base16-hopscotch-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Jan T. Sott
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-hopscotch-theme-colors
     15   '(:base00 "#322931"
     16     :base01 "#433b42"
     17     :base02 "#5c545b"
     18     :base03 "#797379"
     19     :base04 "#989498"
     20     :base05 "#b9b5b8"
     21     :base06 "#d5d3d5"
     22     :base07 "#ffffff"
     23     :base08 "#dd464c"
     24     :base09 "#fd8b19"
     25     :base0A "#fdcc59"
     26     :base0B "#8fc13e"
     27     :base0C "#149b93"
     28     :base0D "#1290bf"
     29     :base0E "#c85e7c"
     30     :base0F "#b33508")
     31   "All colors for Base16 Hopscotch are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-hopscotch)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-hopscotch base16-hopscotch-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-hopscotch)
     41 
     42 (provide 'base16-hopscotch-theme)
     43 
     44 ;;; base16-hopscotch-theme.el ends here