feat: make the background color of the page reflect the project view color

This commit is contained in:
Kieran Klukas 2024-08-23 16:47:11 -04:00
parent d41a26ce7a
commit fbf816c072
No known key found for this signature in database

View file

@ -112,12 +112,16 @@ const ProjectView = ({
>
<style>
{`
* {
--color: ${color};
--dark-color: ${darkColor};
--text-color: ${textColor};
}
`}
* {
--color: ${color};
--dark-color: ${darkColor};
--text-color: ${textColor};
}
body {
background-color: var(--color);
}
`}
</style>
<div
sx={{