class Rouge::Themes::Base16

github.com/chriskempson/base16-default-schemes<br>base16 default dark
author Chris Kempson

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