config

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

base16-twilight-theme.el (999B)


      1 ;; base16-twilight-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: David Hart (https://github.com/hartbit)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-twilight-theme-colors
     15   '(:base00 "#1e1e1e"
     16     :base01 "#323537"
     17     :base02 "#464b50"
     18     :base03 "#5f5a60"
     19     :base04 "#838184"
     20     :base05 "#a7a7a7"
     21     :base06 "#c3c3c3"
     22     :base07 "#ffffff"
     23     :base08 "#cf6a4c"
     24     :base09 "#cda869"
     25     :base0A "#f9ee98"
     26     :base0B "#8f9d6a"
     27     :base0C "#afc4db"
     28     :base0D "#7587a6"
     29     :base0E "#9b859d"
     30     :base0F "#9b703f")
     31   "All colors for Base16 Twilight are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-twilight)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-twilight base16-twilight-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-twilight)
     41 
     42 (provide 'base16-twilight-theme)
     43 
     44 ;;; base16-twilight-theme.el ends here