Skip to content

Instantly share code, notes, and snippets.

@ivoarch
Created March 27, 2014 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivoarch/9819050 to your computer and use it in GitHub Desktop.
Save ivoarch/9819050 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# coding: utf-8
# ANSI color scheme script
# Author: Ivaylo Kuzev <ivkuzev[at]gmail[dot]com>
# Original: http://crunchbanglinux.org/forums/post/134749/#p134749
# Modified using Ruby.
CL = "\e[0m"
BO = "\e[1m"
R = "\e[31m"
G = "\e[32m"
Y = "\e[33m"
B = "\e[34m"
P = "\e[35m"
C = "\e[36m"
print <<EOF
#{BO}#{R} ██████ #{CL} #{BO}#{G}██████ #{CL}#{BO}#{Y} ██████#{CL} #{BO}#{B}██████ #{CL} #{BO}#{P} ██████#{CL} #{BO}#{C} ███████#{CL}
#{BO}#{R} ████████#{CL} #{BO}#{G}██ ██ #{CL}#{BO}#{Y}██ #{CL} #{BO}#{B}██ ██#{CL} #{BO}#{P}██████ #{CL} #{BO}#{C} █████████#{CL}
#{R} ██ ████#{CL} #{G}██ ████#{CL}#{Y} ████ #{CL} #{B}████ ██#{CL} #{P}████ #{CL} #{C}█████ #{CL}
#{R} ██ ██#{CL} #{G}██████ #{CL}#{Y} ████████#{CL} #{B}██████ #{CL} #{P}████████#{CL} #{C}██ #{CL}
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment