feat: darkmode (sidebar, menubar and welcome page #23)

This commit is contained in:
Anoop M D
2022-10-21 04:20:23 +05:30
parent cbdfabb4db
commit 8e70e191e1
23 changed files with 252 additions and 86 deletions

View File

@@ -9,11 +9,11 @@ const Wrapper = styled.div`
.tippy-box {
min-width: 135px;
background-color: white;
font-size: 0.8125rem;
color: rgb(48 48 48);
background: #fff;
box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px;
color: ${(props) => props.theme.dropdown.color};
background-color: ${(props) => props.theme.dropdown.bg};
box-shadow: ${(props) => props.theme.dropdown.shadow};
border-radius: 3px;
.tippy-content {
padding-left: 0;
@@ -34,7 +34,7 @@ const Wrapper = styled.div`
cursor: pointer;
&:hover {
background-color: #e9e9e9;
background-color: ${(props) => props.theme.dropdown.hoverBg};
}
}
}