class Rugments::Themes::Base16

default base16 theme by Chris Kempson (chriskempson.com)

Public Class Methods

dark!() click to toggle source
# File lib/rugments/themes/base16.rb, line 32
def self.dark!
  mode :light # indicate that there is a light variant
  mode! :dark
end
light!() click to toggle source
# File lib/rugments/themes/base16.rb, line 27
def self.light!
  mode :dark # indicate that there is a dark variant
  mode! :light
end
make_dark!() click to toggle source
# File lib/rugments/themes/base16.rb, line 37
def self.make_dark!
  style Text, fg: :base05, bg: :base00
end
make_light!() click to toggle source
# File lib/rugments/themes/base16.rb, line 41
def self.make_light!
  style Text, fg: :base02
end