Why does the interface use echo -ne before ANSI color and cursor-position sequences?
echo -ne
-e interprets escape sequences, and -n avoids adding a newline.
-e
-n
-e reads user input, and -n accepts only numbers.
They print escape sequences literally so colors are disabled.
Both options clear the entire terminal before printing.