Deseamos regalarte la mejor solución que hallamos en internet. Deseamos que te sirva de ayuda y si puedes aportar algún detalle que nos pueda ayudar a crecer hazlo con libertad.
Ejemplo 1: color de texto del elemento js
element.style.color='#f0f';
Ejemplo 2: javascript cambia el color de la fuente según el valor
//This is in RGB since it's the one I'm most used tofunctionFontColor(r,g,b,textHolder)
textHolder.style.color="rgb("+r+","+g+","+b+")"//This will make the font color of the "text" box yellowconst text =document.getElementById("TextHolder")FontColor(255,255,0,text)
Ejemplo 3: cómo cambiar el color en js
document.getElementBiId("your id").style.color="your color";//it can also be used as:document.body.style.backgroundColor="your color";
Comentarios y valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)