module Dotpretty::ColorPalettes::Bash

Constants

RESET
START_GREEN
START_RED
START_YELLOW

Public Instance Methods

green(text) click to toggle source
# File lib/dotpretty/color_palettes/bash.rb, line 10
def green(text)
  return "#{START_GREEN}#{text}#{RESET}"
end
red(text) click to toggle source
# File lib/dotpretty/color_palettes/bash.rb, line 14
def red(text)
  return "#{START_RED}#{text}#{RESET}"
end
yellow(text) click to toggle source
# File lib/dotpretty/color_palettes/bash.rb, line 18
def yellow(text)
  return "#{START_YELLOW}#{text}#{RESET}"
end