config

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

base16-circus-theme.el (1033B)


      1 ;; base16-circus-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-circus-theme-colors
     15   '(:base00 "#191919"
     16     :base01 "#202020"
     17     :base02 "#303030"
     18     :base03 "#5f5a60"
     19     :base04 "#505050"
     20     :base05 "#a7a7a7"
     21     :base06 "#808080"
     22     :base07 "#ffffff"
     23     :base08 "#dc657d"
     24     :base09 "#4bb1a7"
     25     :base0A "#c3ba63"
     26     :base0B "#84b97c"
     27     :base0C "#4bb1a7"
     28     :base0D "#639ee4"
     29     :base0E "#b888e2"
     30     :base0F "#b888e2")
     31   "All colors for Base16 Circus are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-circus)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-circus base16-circus-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-circus)
     41 
     42 (provide 'base16-circus-theme)
     43 
     44 ;;; base16-circus-theme.el ends here