For my final project on Dreamweaver, I decided to create a futuristic city that finally cares about light pollution and has switched to all-red bulbs to combat it. There is also a flying car that reflects the light in the same way the buildings do, and shows the grass/sky in its windows. Dreamweaver is very complicated but I am glad that I was able to understand everything that goes on when I draw a simple line in Illustrator. My Code: var bkgdgrd=context.createLinearGradient(0,0,0,600); bkgdgrd.addColorStop(0.1,"rgba(7,219,212,1.00)"); bkgdgrd.addColorStop(0.3,"rgba(7,194,219,1.00)"); bkgdgrd.addColorStop(0.4,"rgba(7,162,219,1.00)"); bkgdgrd.addColorStop(0.5,"rgba(7,132,222,1.00)"); bkgdgrd.addColorStop(0.8,"rgba(7,107,232,1.00)"); bkgdgrd.addColorStop(1,"rgba(0,152,17,1.00)"); var silvergrd=context.createLinearGradient(0,0,0,600) ; silvergrd.addColorStop(0, "rgba(222,226,248,1.00)"); ...