Adjust titlebar / window controls styling

This commit is contained in:
jeffvli 2023-01-06 23:51:26 -08:00
parent 5889b8976c
commit 838c6a8b6a
5 changed files with 9 additions and 8 deletions

View file

@ -51,7 +51,7 @@ const BackgroundImageOverlay = styled.div<{ theme: 'light' | 'dark' }>`
height: 100%;
background: ${(props) =>
props.theme === 'light'
? 'linear-gradient(rgba(0, 0, 0, 20%), rgba(0, 0, 0, 20%))'
? 'linear-gradient(rgba(255, 255, 255, 25%), rgba(255, 255, 255, 25%))'
: 'linear-gradient(rgba(0, 0, 0, 50%), rgba(0, 0, 0, 50%))'};
`;