﻿// Este script sirve para dar opcion al usuario de elegir un color de fondo en español

var body1 = document.getElementById('body1'), color = document.getElementById('color');
color.addEventListener('click', function(){
var colore = prompt('Escribe un color:');
if(colore.toLowerCase() == 'rojo'){
	body1.style.backgroundColor = 'red';
}
else if(colore.toLowerCase() == 'amarillo'){
	body1.style.backgroundColor = 'yellow';
}
else if(colore.toLowerCase() == 'rosa'){
	body1.style.backgroundColor = 'pink';
}
else if(colore.toLowerCase() == 'azul'){
	body1.style.backgroundColor = 'blue';
}
else if(colore.toLowerCase() == 'verde'){
	body1.style.backgroundColor = 'green';
}
else if(colore.toLowerCase() == 'cian'){
	body1.style.backgroundColor = 'aqua';
}
else if(colore.toLowerCase() == 'naranja'){
	body1.style.backgroundColor = 'orange';
}
else if(colore.toLowerCase() == 'gris'){
	body1.style.backgroundColor = 'gray';
}
else if(colore.toLowerCase() == 'plateado'){
	body1.style.backgroundColor = 'silver';
}
else if(colore.toLowerCase() == 'granate'){
	body1.style.backgroundColor = '#800000';
}
else if(colore.toLowerCase() == 'negro'){
	body1.style.backgroundColor = 'black';
}
else if(colore.toLowerCase() == 'blanco'){
	body1.style.backgroundColor = 'white';
}
else if(colore.toLowerCase() == 'beige'){
	body1.style.backgroundColor = '#F5F5DC';
}
else if(colore.toLowerCase() == 'magenta'){
	body1.style.backgroundColor = '#FF00FF';
}
else if(colore.toLowerCase() == 'fucsia'){
	body1.style.backgroundColor = '#F400A1';
}
else if(colore.toLowerCase() == 'morado'){
	body1.style.backgroundColor = '#C54b8C';
}
else if(colore.toLowerCase() == 'lila'){
	body1.style.backgroundColor = '#C8A2C8';
}
else if(colore.toLowerCase() == 'violeta'){
	body1.style.backgroundColor = '#8B00FF';
}
else if(colore.toLowerCase() == 'púrpura'){
	body1.style.backgroundColor = '#660099';
}
else if(colore.toLowerCase() == 'añil'){
	body1.style.backgroundColor = '#4B0082';
}
else if(colore.toLowerCase() == 'azul marino'){
	body1.style.backgroundColor = '#120A8F';
}
else if(colore.toLowerCase() == 'turquesa'){
	body1.style.backgroundColor = '#30D5C8';
}
else if(colore.toLowerCase() == 'celeste'){
	body1.style.backgroundColor = '#87CEFF';
}
else if(colore.toLowerCase() == 'kaki'){
	body1.style.backgroundColor = '#94812B';
}
else if(colore.toLowerCase() == 'verde lima'){
	body1.style.backgroundColor = '#7FFF00';
}
else if(colore.toLowerCase() == 'esmeralda'){
	body1.style.backgroundColor = '#50C878';
}
else if(colore.toLowerCase() == 'jade'){
	body1.style.backgroundColor = '#00A86B';
}
else if(colore.toLowerCase() == 'limón'){
	body1.style.backgroundColor = '#FDE910';
}
else if(colore.toLowerCase() == 'dorado'){
	body1.style.backgroundColor = '#FFD700';
}
else if(colore.toLowerCase() == 'ámbar'){
	body1.style.backgroundColor = '#FFBF00';
}
else if(colore.toLowerCase() == 'marrón'){
	body1.style.backgroundColor = '#964B00';
}
else if(colore.toLowerCase() == 'ocre'){
	body1.style.backgroundColor = '#CC7722';
}
else if(colore.toLowerCase() == 'salmón'){
	body1.style.backgroundColor = '#FEC3AC';
}
else if(colore.toLowerCase() == 'carmesí'){
	body1.style.backgroundColor = '#DC143C';
}
else if(colore.toLowerCase() == 'miau'){
	body1.style.backgroundImage = 'url(asdf.jpg)';
}
else if(colore.toLowerCase() == 'titi'){
	body1.style.backgroundImage = 'url(asdf.jpg)';
}
else if(colore.toLowerCase() == 'original'){
	body1.style.backgroundColor = '#3682DA';
}
else{
alert('Tu color no es válido');
}
},
false);

