Home | History | Annotate | Download | only in firmware_TouchMTB

Lines Matching refs:CSI

12 CSI = '\033['                       # ANSI Control Sequence Introducer
13 NORMAL = CSI + '0m'
14 CODE = {'black': CSI + '1;30m', # color code for foreground color
15 'red': CSI + '1;31m',
16 'green': CSI + '1;32m',
17 'yellow': CSI + '1;33m',
18 'blue': CSI + '1;34m',
19 'magenta': CSI + '1;35m',
20 'cyan': CSI + '1;36m',
21 'white': CSI + '1;37m',
22 'default': CSI + '1;39m',