mirror of
				https://github.com/Investigamer/cardconjurer.git
				synced 2025-10-30 23:00:43 -05:00 
			
		
		
		
	Update colors.js
This commit is contained in:
		| @@ -3,18 +3,20 @@ setInterval(changeColor, 100) | ||||
| var colorShiftingClock = 0 | ||||
| var colorFrequency = 2 * Math.PI / 600 | ||||
| var numberOfColors = 1 | ||||
| var lightness = 120 | ||||
| var lightAdjust = 120 | ||||
| function changeColor() { | ||||
| 	for (var i = 1; i <= numberOfColors; i ++) { | ||||
| 		var rgbValues = indexToColor(colorShiftingClock + ((i - 1) * 2 * Math.PI / numberOfColors / colorFrequency), colorFrequency) | ||||
| 		document.documentElement.style.setProperty("--shifting-color-" + i, "rgb(" + rgbValues[0] + "," + rgbValues[1] + "," + rgbValues[2] + ")") | ||||
| 	} | ||||
| 	var rgbLightValues = indexToColor(colorShiftingClock + ((i - 1) * 2 * Math.PI / numberOfColors / colorFrequency), colorFrequency) | ||||
| 	document.documentElement.style.setProperty("--shifting-color-1-light", "rgb(" + parseInt(rgbLightValues[0] + 150) + "," + parseInt(rgbLightValues[1] + 150) + "," + parseInt(rgbLightValues[2] + 150) + ")") | ||||
| 	document.documentElement.style.setProperty("--shifting-color-1-light", "rgb(" + parseInt(rgbLightValues[0] + lightAdjust) + "," + parseInt(rgbLightValues[1] + lightAdjust) + "," + parseInt(rgbLightValues[2] + lightAdjust) + ")") | ||||
| 	colorShiftingClock += 1 | ||||
| } | ||||
| function indexToColor(colorIndex, frequency) { | ||||
| 	var red = Math.sin(colorIndex * frequency + 0) * 127 + 128 | ||||
| 	var green = Math.sin(colorIndex * frequency + 2 * Math.PI / 3) * 127 + 128 | ||||
| 	var blue = Math.sin(colorIndex * frequency + 4 * Math.PI / 3) * 127 + 128 | ||||
| 	var red = Math.sin(colorIndex * frequency + 0) * (255 - lightness) + lightness | ||||
| 	var green = Math.sin(colorIndex * frequency + 2 * Math.PI / 3) * (255 - lightness) + lightness | ||||
| 	var blue = Math.sin(colorIndex * frequency + 4 * Math.PI / 3) * (255 - lightness) + lightness | ||||
| 	return [red, green, blue] | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Kyle
					Kyle