We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Re: change page colour scheme

Solved

How can I modify the color scheme of my webpage?

nondualreality
Excursionist
29 3 8

Screenshot 2024-01-28 at 8.51.45 PM.png

Wondering since there is no option to change the colour scheme on the side, how can I change the colour scheme of this page to another scheme of mine? Or is it easier to just code it in? I just want the text to be teal and the background to be white.
Thank you!

Accepted Solution (1)

nondualreality
Excursionist
29 3 8

This is an accepted solution.

I ended up writing some simple code with the help of GPT and it worked out

{
background-color: #ffffff;
color: #4cb2ba;
margin-left: 5%;
margin-right: 5%;
}
h3 {
color: #4cb2ba;
}
h1 {
color: #4cb2ba;
font-size:35px;
}

View solution in original post

Reply 1 (1)

nondualreality
Excursionist
29 3 8

This is an accepted solution.

I ended up writing some simple code with the help of GPT and it worked out

{
background-color: #ffffff;
color: #4cb2ba;
margin-left: 5%;
margin-right: 5%;
}
h3 {
color: #4cb2ba;
}
h1 {
color: #4cb2ba;
font-size:35px;
}