config

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

base16-dracula-theme.el (1046B)


      1 ;; base16-dracula-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-dracula-theme-colors
     15   '(:base00 "#282936"
     16     :base01 "#3a3c4e"
     17     :base02 "#4d4f68"
     18     :base03 "#626483"
     19     :base04 "#62d6e8"
     20     :base05 "#e9e9f4"
     21     :base06 "#f1f2f8"
     22     :base07 "#f7f7fb"
     23     :base08 "#ea51b2"
     24     :base09 "#b45bcf"
     25     :base0A "#00f769"
     26     :base0B "#ebff87"
     27     :base0C "#a1efe4"
     28     :base0D "#62d6e8"
     29     :base0E "#b45bcf"
     30     :base0F "#00f769")
     31   "All colors for Base16 Dracula are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-dracula)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-dracula base16-dracula-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-dracula)
     41 
     42 (provide 'base16-dracula-theme)
     43 
     44 ;;; base16-dracula-theme.el ends here