class RougeLines::Themes::Base16
default base16 theme by Chris Kempson (chriskempson.com)
Public Class Methods
dark!()
click to toggle source
# File lib/rouge-lines/themes/base16.rb, line 33 def self.dark! mode :light # indicate that there is a light variant mode! :dark end
light!()
click to toggle source
# File lib/rouge-lines/themes/base16.rb, line 28 def self.light! mode :dark # indicate that there is a dark variant mode! :light end
make_dark!()
click to toggle source
# File lib/rouge-lines/themes/base16.rb, line 38 def self.make_dark! style Text, :fg => :base05, :bg => :base00 end
make_light!()
click to toggle source
# File lib/rouge-lines/themes/base16.rb, line 42 def self.make_light! style Text, :fg => :base02 end