config

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

base16-tokyodark-terminal-theme.el (1089B)


      1 ;; base16-tokyodark-terminal-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Tiagovla (https://github.com/tiagovla/)
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-tokyodark-terminal-theme-colors
     15   '(:base00 "#11121d"
     16     :base01 "#1a1b2a"
     17     :base02 "#212234"
     18     :base03 "#282c34"
     19     :base04 "#4a5057"
     20     :base05 "#a0a8cd"
     21     :base06 "#a0a8cd"
     22     :base07 "#a0a8cd"
     23     :base08 "#ee6d85"
     24     :base09 "#f6955b"
     25     :base0A "#d7a65f"
     26     :base0B "#95c561"
     27     :base0C "#38a89d"
     28     :base0D "#7199ee"
     29     :base0E "#a485dd"
     30     :base0F "#773440")
     31   "All colors for Base16 Tokyodark Terminal are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-tokyodark-terminal)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-tokyodark-terminal base16-tokyodark-terminal-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-tokyodark-terminal)
     41 
     42 (provide 'base16-tokyodark-terminal-theme)
     43 
     44 ;;; base16-tokyodark-terminal-theme.el ends here