config

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

base16-pasque-theme.el (988B)


      1 ;; base16-pasque-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Gabriel Fontes (https://github.com/Misterio77)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-pasque-theme-colors
     15   '(:base00 "#271c3a"
     16     :base01 "#100323"
     17     :base02 "#3e2d5c"
     18     :base03 "#5d5766"
     19     :base04 "#bebcbf"
     20     :base05 "#dedcdf"
     21     :base06 "#edeaef"
     22     :base07 "#bbaadd"
     23     :base08 "#a92258"
     24     :base09 "#918889"
     25     :base0A "#804ead"
     26     :base0B "#c6914b"
     27     :base0C "#7263aa"
     28     :base0D "#8e7dc6"
     29     :base0E "#953b9d"
     30     :base0F "#59325c")
     31   "All colors for Base16 Pasque are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-pasque)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-pasque base16-pasque-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-pasque)
     41 
     42 (provide 'base16-pasque-theme)
     43 
     44 ;;; base16-pasque-theme.el ends here