class Rouge::Themes::Base16

by Chris Kempson (chriskempson.com)
default base16 theme

def self.dark!

def self.dark!
  mode :light # indicate that there is a light variant
  mode! :dark
end

def self.light!

def self.light!
  mode :dark # indicate that there is a dark variant
  mode! :light
end

def self.make_dark!

def self.make_dark!
  style Text, :fg => :base05, :bg => :base00
end

def self.make_light!

def self.make_light!
  style Text, :fg => :base02
end