config

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

base16-rebecca-theme.el (1048B)


      1 ;; base16-rebecca-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-rebecca-theme-colors
     15   '(:base00 "#292a44"
     16     :base01 "#663399"
     17     :base02 "#383a62"
     18     :base03 "#666699"
     19     :base04 "#a0a0c5"
     20     :base05 "#f1eff8"
     21     :base06 "#ccccff"
     22     :base07 "#53495d"
     23     :base08 "#a0a0c5"
     24     :base09 "#efe4a1"
     25     :base0A "#ae81ff"
     26     :base0B "#6dfedf"
     27     :base0C "#8eaee0"
     28     :base0D "#2de0a7"
     29     :base0E "#7aa5ff"
     30     :base0F "#ff79c6")
     31   "All colors for Base16 Rebecca are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-rebecca)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-rebecca base16-rebecca-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-rebecca)
     41 
     42 (provide 'base16-rebecca-theme)
     43 
     44 ;;; base16-rebecca-theme.el ends here