Module: Isna::Colors
- Included in:
- String
- Defined in:
- lib/isna/colors.rb
Instance Method Summary collapse
- #black ⇒ Object
- #blue ⇒ Object
- #cyan ⇒ Object
- #green ⇒ Object
- #pink ⇒ Object
- #red ⇒ Object
- #white ⇒ Object
- #yellow ⇒ Object
Instance Method Details
#black ⇒ Object
5 6 7 |
# File 'lib/isna/colors.rb', line 5 def black change_color 30 end |
#blue ⇒ Object
21 22 23 |
# File 'lib/isna/colors.rb', line 21 def blue change_color 34 end |
#cyan ⇒ Object
29 30 31 |
# File 'lib/isna/colors.rb', line 29 def cyan change_color 36 end |
#green ⇒ Object
13 14 15 |
# File 'lib/isna/colors.rb', line 13 def green change_color 32 end |
#pink ⇒ Object
25 26 27 |
# File 'lib/isna/colors.rb', line 25 def pink change_color 35 end |
#red ⇒ Object
9 10 11 |
# File 'lib/isna/colors.rb', line 9 def red change_color 31 end |
#white ⇒ Object
33 34 35 |
# File 'lib/isna/colors.rb', line 33 def white change_color 37 end |
#yellow ⇒ Object
17 18 19 |
# File 'lib/isna/colors.rb', line 17 def yellow change_color 33 end |