You have not provided your CSS code. This will help to better understand the problem. But one of the possible problems is probably the styling of CSS properties.
#wrapper { background: rgb(174,188,191); background: linear-gradient(to bottom, rgba(174,188,191,1) 0%,rgba(110,119,116,1) 50%,rgba(10,14,10,1) 51%,rgba(10,8,9,1) 100%); }
Expected example
#wrapper { background: rgb(174,188,191); background: linear-gradient(to bottom, rgba(174,188,191,1) 0%,rgba(110,119,116,1) 50%,rgba(10,14,10,1) 51%,rgba(10,8,9,1) 100%); background: #111; }
You migrated the first with a different background property, perhaps somewhere in your CSS with a higher priority, making your transparency too high:
Overstatement example