config

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

base16-bespin-theme.el (953B)


      1 ;; base16-bespin-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-bespin-theme-colors
     15   '(:base00 "#28211c"
     16     :base01 "#36312e"
     17     :base02 "#5e5d5c"
     18     :base03 "#666666"
     19     :base04 "#797977"
     20     :base05 "#8a8986"
     21     :base06 "#9d9b97"
     22     :base07 "#baae9e"
     23     :base08 "#cf6a4c"
     24     :base09 "#cf7d34"
     25     :base0A "#f9ee98"
     26     :base0B "#54be0d"
     27     :base0C "#afc4db"
     28     :base0D "#5ea6ea"
     29     :base0E "#9b859d"
     30     :base0F "#937121")
     31   "All colors for Base16 Bespin are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-bespin)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-bespin base16-bespin-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-bespin)
     41 
     42 (provide 'base16-bespin-theme)
     43 
     44 ;;; base16-bespin-theme.el ends here