config

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

base16-sparky-theme.el (983B)


      1 ;; base16-sparky-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Leila Sother (https://github.com/mixcoac)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-sparky-theme-colors
     15   '(:base00 "#072b31"
     16     :base01 "#00313c"
     17     :base02 "#003c46"
     18     :base03 "#003b49"
     19     :base04 "#00778b"
     20     :base05 "#f4f5f0"
     21     :base06 "#f5f5f1"
     22     :base07 "#ffffff"
     23     :base08 "#ff585d"
     24     :base09 "#ff8f1c"
     25     :base0A "#fbdd40"
     26     :base0B "#78d64b"
     27     :base0C "#2dccd3"
     28     :base0D "#4698cb"
     29     :base0E "#d59ed7"
     30     :base0F "#9b704d")
     31   "All colors for Base16 Sparky are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-sparky)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-sparky base16-sparky-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-sparky)
     41 
     42 (provide 'base16-sparky-theme)
     43 
     44 ;;; base16-sparky-theme.el ends here