hi ive been working on my profile css for a bit and ive been trying to change the color of this but i can't figure out how... can anyone help me on this?
« Web, HTML, Tech Forum
how to change the color of these?
7 Replies
![](https://static.spacehey.net/icons/feed.png)
Reply by Turboblack
posted
Reply by kirbzz
posted
Reply by Gluma
posted
Gonna be honest: I’ve been scavenging through SpaceHey posts to find a code specifically for that LMAO so far, I’ve never found one u_u
HOWEVER, there’s this:
.profile .table-section td {
background-color: *insert color here*;
color: *insert color here*;
}
While this code changes all blue parts of the interest table (and text color but you can just delete that if you want), I think if you place the code you have right now that only changes the right interests side below the one I posted (since CSS is read top to bottom), it might make it where both sides are different...? I haven’t actually tested that out lol, but that’s my theory. But if it doesn’t work, I’m all outta luck unfortunately u_u if I ever find a way, I’ll get back to this thread
Reply by kirbzz
posted
Reply by Turboblack
posted
because how can i help you to change a color in script when you show me a picture
Reply by soleil ⚜️
posted
did u end up figuring out how to change it ?? I'm having the same problem trying to change my profile myself lol
Reply by MIssSc4re
posted
You have to use this code:
:root{
--logo-blue: (choose color, either rgb, hex, or straight up just a color (green, blue, etc.)) ; (this is the logo of the webstite like the big blue block on top.)
--darker-blue:(choose color); (this is all the main links on your profile)
--lighter-blue:(choose color); (this is the navigation bar under the logo)
--even-lighter-blue:(choose color); (this creates a colored box around you're categories like general, music, movies)
--lightest-blue:(choose color) ; (this creates a colored box around the text next to your categories)
--dark-orange:(choose color); (this changes the text color in the aboute me and who id like to meet part)
--light-orange:(choose color) ; (this creates a color box to the left of the comments on your profile)
--even-lighter-orange: (choose color) ; (this creates a colored box to the right of the comments on your profile)
}
---------------------------------------------------------------------------------------------------------------
heres the code without any text so you can just copy:
:root{
--logo-blue: ;
--darker-blue: ;
--lighter-blue: ;
--even-lighter-blue: ;
--lightest-blue: ;
--dark-orange: ;
--light-orange: ;
--even-lighter-orange: ;
}
---------------------------------------------------------------------------------------------------------------
ofc dont forget to add <style> at the top of your whole code to be able to save and also heres a link to all the html color names: https://www.w3schools.com/colors/colors_names.asp
hope this helps!: )