Comments on Buzzly Codes All Comments

sorry for the random questions, I'm not sure if you'll know the answer to the second but I figured I'd ask anyway!

- for the gradient backgrounds on Introduction and Art Status, what part of the code do you use to lower the opacity? I've tried fooling around with it myself and I just can't figure it out. :'D

- when I try to change the color of the background, certain colors on tailwind aren't working. I wasn't sure if you knew a workaround or if they were just flat-out defunct. (ie. I was trying to use stone-900 and it instead completely removes the bg box/color, I can only use ones with color names (red, green, orange, etc.))

The gradient was a fun one I discovered, so bg-gradient-to-b shows you the direction of the gradient, the from-gray-900 shows the starting colour of the gradient. Tailwind automatically will make your gradient fade to 0% opacity.

If you don't want colour at all then remove bg-gradient-to-b from-gray-900

If you want a solid colour change bg-gradient-to-b from-gray-900 to bg-gray-900 or whatever colour you want

If you want the gradient from one colour to another then after bg-gradient-to-b from-gray-900 add to-pink-900 or whatever colour

For your second question, the issue is that you are using colours from version 3.0, buzzly is still on version 2.4 or something. There's nothing you can do about that until they update (although i hear it will be soon!)

thank you so much!!