Features/dark mode (#37)

* Added use local storage hook
* Added theme
* Added theme support
* Added theme provider
* Added dark theme for sidebar
* Added dark theme for main content area
* Added theme
* Added theme support
* Added theme provider
* Added dark theme for sidebar
* Added dark theme for main content area
This commit is contained in:
Sean
2022-10-21 03:14:09 +08:00
committed by GitHub
parent 3c3c9a6026
commit cbdfabb4db
16 changed files with 248 additions and 50 deletions

View File

@@ -1,6 +1,8 @@
import styled from 'styled-components';
const StyledWrapper = styled.div`
color: ${(props) => props.theme.theme['primary-text']};
.create-request {
color: #737373;
font-size: 0.75rem;
@@ -21,4 +23,8 @@ const StyledWrapper = styled.div`
}
`;
export const SiteTitle = styled.div`
color: ${(props) => props.theme.theme['primary-text']};
`;
export default StyledWrapper;