# File lib/drydock/mixins/string.rb, line 15
15:   def colour(col, bgcol = nil, attribute = nil)
16:     return self unless @@print_with_attributes
17:     Console.style(col, bgcol, attribute) +
18:     self +
19:     Console.style(:default, :default, :default)
20:   end