lib/string.rb in wordle-0.6.0 vs lib/string.rb in wordle-0.7.0
- old
+ new
@@ -12,6 +12,14 @@
end
def gray
colorize(47)
end
+
+ def blue
+ colorize(46)
+ end
+
+ def orange
+ "\033[48:2:255:165:0m#{self}\033[m"
+ end
end
- old
+ new