You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
295 B

class Settings
class << self
def color_scheme
"awesome-orange"
end
def darktext_html_color
"ff2400"
end
def test_color
"ff0000"
end
def regular_text_html_color
"0C090A"
end
def divider_html_color
"B6B6B6"
end
end
end