Class: Colors
- Inherits:
-
Object
- Object
- Colors
- Defined in:
- lib/geektool_kit/colors.rb
Class Method Summary collapse
- .BLUE ⇒ Object
- .CYAN ⇒ Object
- .DEFAULT ⇒ Object
- .GREEN ⇒ Object
- .MAGENTA ⇒ Object
- .RED ⇒ Object
- .RESET ⇒ Object
- .WHITE ⇒ Object
- .YELLOW ⇒ Object
Class Method Details
.BLUE ⇒ Object
15 16 17 |
# File 'lib/geektool_kit/colors.rb', line 15 def self.BLUE "\033[34m" end |
.CYAN ⇒ Object
23 24 25 |
# File 'lib/geektool_kit/colors.rb', line 23 def self.CYAN "\033[36m" end |
.DEFAULT ⇒ Object
31 32 33 |
# File 'lib/geektool_kit/colors.rb', line 31 def self.DEFAULT "\033[0;39m" end |
.GREEN ⇒ Object
7 8 9 |
# File 'lib/geektool_kit/colors.rb', line 7 def self.GREEN "\033[32m" end |
.MAGENTA ⇒ Object
19 20 21 |
# File 'lib/geektool_kit/colors.rb', line 19 def self.MAGENTA "\033[35m" end |
.RED ⇒ Object
3 4 5 |
# File 'lib/geektool_kit/colors.rb', line 3 def self.RED "\033[31m" end |
.RESET ⇒ Object
35 36 37 |
# File 'lib/geektool_kit/colors.rb', line 35 def self.RESET "\033[0m" end |
.WHITE ⇒ Object
27 28 29 |
# File 'lib/geektool_kit/colors.rb', line 27 def self.WHITE "\033[37m" end |
.YELLOW ⇒ Object
11 12 13 |
# File 'lib/geektool_kit/colors.rb', line 11 def self.YELLOW "\033[33m" end |