You can change the pen color value outside the text function. THIS IS MY FIRST PEN-BASED TEXT ENGINE!!!! WOOOO!!! See inside to use the code. Please remember to give credit if you use it. How this works is it takes a decimal number, like 15, and converts that into a binary number(1111), and plots that out. So you could take the number 150215 and that would be 1111 0100 1111. If you were to take the first digit from the set of 4 numbers(1) and plot it based on if its a one or zero(1 = plot, 0 = nothing), and plot every digit in that set lower until you end the set of 4, you would have a vertical line. The number 5 -> 0101 would get you a text colon(:) kind of thing. This method allowed me to store data more efficiently. It was also a lot more fun than manually typing binary.