Lines Matching full:colour
29 colour: Text colour to use
31 def __init__(self, text, newline, colour): argument
34 self.colour = colour
37 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour,
40 def Print(text='', newline=True, colour=None): argument
49 colour: Colour to use for the text
52 print_test_list.append(PrintLine(text, newline, colour))
54 if colour:
56 text = col.Color(colour, text)
84 if line.colour:
86 print(col.Color(line.colour, line.text), end='')