the color must be specified somewhere in the boot scripts
the command will look something like
^[H^[J^[32;1m
or like
\\033[1;32m
^[ = \033
that's green
\033[0m is back to white
the colors basics are
30 black foreground
31 red foreground
32 green foreground
33 brown foreground
34 blue foreground
35 magenta (purple) foreground
36 cyan (light blue) foreground
37 gray foreground
40 black background
41 red background
42 green background
43 brown background
44 blue background
45 magenta background
46 cyan background
47 white background
; combines cammands
bold which is really just lighter is 1
try from the command line
echo -e "\033[45;37;1mGrey on purple.\033[0m"
to see what i mean
there are most likely also ways to make text on the terminal larger using framebuffer or
SVGATextMode i'm not sure
http://lfs.osuosl.org/hints/download...gatextmode.txt
http://www.linuxforums.org/tutorials...rial-3523.html
more often than not these tutorials are about making the text smaller but there might be room in the other direction
it's worth a try