Changing text color on your SpaceHey page is actually really simple! All it takes is this little block of code to change most of the text color on the page.
<style>
main {
background: white;
color: darkviolet;
padding: 9px 2px;
font-size: 85%;
}
</style>
This may look a bit confusing, so let me break down what this does
main {
This is the identifier for everything in the profile container, which is that little white box in the middle of your page! This holds all your profile stuff, from your username to your friends list! This is the MOST IMPORTANT part of the code.
background:
This seems to do nothing on the page (I certainly don't see a text background) but just to be safe don't change it. If you know what it does let me know!
- The header
- The footer
- Links
- Some headers
Paste this anywhere in the "About Me" section of your profile. Hope this helps!