what's mature and what's kid?, i feel like a kid and i have 23 years old XD.
About the rainbow colors i'm writing is because i made a program to make these rainbow color. But it is a program made in 5 minutes, so it has a lot of problems right now. If you know C programming you will understand:
#include<stdio.h>
int main()
{
int i=0,number,fase=0; //general use variables
char caracter;
long length,sec=0;
FILE *salida,*entrada;
salida=fopen("rainbow.txt","w+");
entrada=fopen("text.txt","r");
if(salida==NULL)
{
printf("Error creating output file\n");
return 1;
}
if(entrada==NULL)
{
printf("Error opening file: text.txt\n");
return 1;
}
fseek(entrada, 0L, SEEK_END);
length = ftell(entrada);
fseek(entrada, 0L, SEEK_SET);
sec=length/255+1;
printf("%li ",length);
printf("%li ",sec);
while(feof(entrada)==0)
{
caracter=fgetc(entrada);
if(caracter>32 &&caracter<200)
{
fprintf(salida,"[color=#%.2X%.2X00]%c[/color]",i,255-i,caracter);
}
else
{
fprintf(salida,"%c",caracter);
}
fase++;
if(fase==sec)
{
//i++;
i=i+255/length;
fase=0;
}
}
if(fclose(salida)!=0)
{
printf("Error fail to close salida\n");
return 1;
}
printf("Ok, all is done <Roar>");
return 0;
}
I ban Dunstan for asking for my text colors.