class Rouge::Themes::Base16

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

Public Class Methods

dark!() click to toggle source
# File lib/rouge/themes/base16.rb, line 35
def self.dark!
  mode :light # indicate that there is a light variant
  mode! :dark
end
light!() click to toggle source
# File lib/rouge/themes/base16.rb, line 30
def self.light!
  mode :dark # indicate that there is a dark variant
  mode! :light
end
make_dark!() click to toggle source
# File lib/rouge/themes/base16.rb, line 40
def self.make_dark!
  style Text, :fg => :base05, :bg => :base00
end
make_light!() click to toggle source
# File lib/rouge/themes/base16.rb, line 44
def self.make_light!
  style Text, :fg => :base02
end