Edit /etc/default/grub with your favorite text editor, ie
sudo nano /etc/default/grub
Look for these lines
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
Un-comment the last line and set the resolution you would like your TTYs to be.
After run editing the line with the desired resolution run
Finally found it! As it turns out, I was searching for the wrong term. Apparently the TTYs run on a framebuffer, which is what the colors get changed in.
Best Answer
The way I recommend would be:
Run:
sudoedit /etc/default/console-setup
Find the line that says: ACTIVE_CONSOLES="/dev/tty[1-6]"Change it to the amount of tty you want. For 3 you do: ACTIVE_CONSOLES="/dev/tty[1-3]"
Save the file and go to /etc/init/:
cd /etc/init/
then typels
to see the tty files.They should look like tty1.conf, tty2.conf, tty3.conf....
Rename all the tty that you do not want. In your case you would rename the last 3 tty:
sudo mv tty4.conf tty4.conf.bck
sudo mv tty5.conf tty5.conf.bck
sudo mv tty6.conf tty6.conf.bck
Reboot and test