# Functions
ColorBuild creates the ANSI sequence to create the pen with the correct foreground/background color and attribute.
CursorMove is the CSI sequence to move the cursor n characters forward (positive numbers) or n characters backwards (negative numbers).
# Constants
ClearLine is the CSI sequence to clear the entire of the current line.
CursorBackwardOne is the CSI sequence to move the cursor backward (to the left for latin fonts) one character.
CursorForwardOne is the CSI sequence to move the cursor forward (to the right for latin fonts) one character.
CursorRestore if the CSI sequence to restore the cursor position to a previous store.
CursorStore if the CSI sequence to store the current cursor position.