Adjust placeholder defaults

This commit is contained in:
jeffvli
2022-11-04 18:37:42 -07:00
parent 096a7713da
commit d88e99e38c
4 changed files with 61 additions and 28 deletions
@@ -95,9 +95,12 @@ export const LeftControls = () => {
) : (
<>
<Center
sx={{ background: 'rgb(53, 53, 53)', height: '100%' }}
sx={{
background: 'var(--placeholder-bg)',
height: '100%',
}}
>
<RiDiscLine color="rgb(126, 126, 126)" size={50} />
<RiDiscLine color="var(--placeholder-fg)" size={50} />
</Center>
</>
)}
@@ -189,8 +189,10 @@ export const Sidebar = () => {
{imageUrl ? (
<SidebarImage src={imageUrl} />
) : (
<Center sx={{ background: 'rgb(53, 53, 53)', height: '100%' }}>
<RiDiscLine color="rgb(126, 126, 126)" size={50} />
<Center
sx={{ background: 'var(--placeholder-bg)', height: '100%' }}
>
<RiDiscLine color="var(--placeholder-fg)" size={50} />
</Center>
)}
<Group