config

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

base16-tokyo-city-terminal-light-theme.el (1126B)


      1 ;; base16-tokyo-city-terminal-light-theme.el -- A base16 colorscheme
      2 
      3 ;;; Commentary:
      4 ;; Base16: (https://github.com/tinted-theming/home)
      5 
      6 ;;; Authors:
      7 ;; Scheme: Michaƫl Ball
      8 ;; Template: Kaleb Elwert <belak@coded.io>
      9 
     10 ;;; Code:
     11 
     12 (require 'base16-theme)
     13 
     14 (defvar base16-tokyo-city-terminal-light-theme-colors
     15   '(:base00 "#fbfbfd"
     16     :base01 "#f6f6f8"
     17     :base02 "#d8e2ec"
     18     :base03 "#b7c5d3"
     19     :base04 "#526270"
     20     :base05 "#28323a"
     21     :base06 "#1d252c"
     22     :base07 "#171d23"
     23     :base08 "#8c4351"
     24     :base09 "#965027"
     25     :base0A "#8f5e15"
     26     :base0B "#33635c"
     27     :base0C "#0f4b6e"
     28     :base0D "#34548a"
     29     :base0E "#5a4a78"
     30     :base0F "#7e5140")
     31   "All colors for Base16 Tokyo City Terminal Light are defined here.")
     32 
     33 ;; Define the theme
     34 (deftheme base16-tokyo-city-terminal-light)
     35 
     36 ;; Add all the faces to the theme
     37 (base16-theme-define 'base16-tokyo-city-terminal-light base16-tokyo-city-terminal-light-theme-colors)
     38 
     39 ;; Mark the theme as provided
     40 (provide-theme 'base16-tokyo-city-terminal-light)
     41 
     42 (provide 'base16-tokyo-city-terminal-light-theme)
     43 
     44 ;;; base16-tokyo-city-terminal-light-theme.el ends here