config

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

base16-shadesmear-light-theme.el (1071B)


      1 ;; base16-shadesmear-light-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Kyle Giammarco (http://kyle.giammar.co)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-shadesmear-light-theme-colors
     15   '(:base00 "#dbdbdb"
     16     :base01 "#e4e4e4"
     17     :base02 "#c0c0c0"
     18     :base03 "#4e4e4e"
     19     :base04 "#1c1c1c"
     20     :base05 "#232323"
     21     :base06 "#1c1c1c"
     22     :base07 "#e4e4e4"
     23     :base08 "#cc5450"
     24     :base09 "#a64270"
     25     :base0A "#307878"
     26     :base0B "#71983b"
     27     :base0C "#c57d42"
     28     :base0D "#376388"
     29     :base0E "#d7ab54"
     30     :base0F "#6d6d6d")
     31   "All colors for Base16 ShadeSmear Light are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-shadesmear-light)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-shadesmear-light base16-shadesmear-light-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-shadesmear-light)
     41 
     42 (provide 'base16-shadesmear-light-theme)
     43 
     44 ;;; base16-shadesmear-light-theme.el ends here