Help Removing Chat Background

Hi can somebody tell me where I would go to remove the chat blue background and what section. Would it be in the css file and where specifically could I remove the blue background but still have the writing

Nice release, 10/10 would use!

1 Like

Moved to #development:scripts

Please post in the correct category next time

You will have to go into the css and in the js config

Apologies I didn’t know.

1 Like

I agree :smile:


In this file : chat/html/config.default.js
Change this line

background: 'rgba(52, 73, 94, 0.0)
--background: 'rgba(red, green, blue, alpha)
--change alpha to "0.0"
2 Likes

Ok thank you that worked, how would I change the chat box background?

Try this
file: chat/html/index.css

textarea {  
background-color: rgba(44, 62, 80, 0.0);
}

44, 62, 80 is not needed as 0.0 is alpha when alpha is just 0 it will make it completely transparent.
SOOO, rgb(alpha)(0, 0, 0, 0); should be sufficient.

ah well person most likely won’t understand it anyways :stuck_out_tongue:

1 Like

There’s already multiple topics discussing this very thing out there. Use the search function next time.