Hihi. I want to change background color to black, and typography to white. I have tried color schemes, but its not working. Does anyone know css for this change?
Hi @jakeom
Go to “Theme settings” > “Theme editor” > “Custom CSS” and add the following code:
body {
background-color: black !important;
color: white !important;
}
The !important rule ensures these styles override the theme’s defaults. If specific elements still aren’t changing, you might need more targeted CSS selectors. For most text elements like headings, try adding h1, h2, h3, h4, h5, p, span { color: white !important; } to catch everything
Hope this helps ![]()