feat: add theme manager

awesome!
This commit is contained in:
Sonny
2024-05-12 00:46:48 +02:00
committed by Sonny
parent b5cda75790
commit 3531038321
19 changed files with 271 additions and 203 deletions

View File

@@ -2,7 +2,7 @@ import styled from '@emotion/styled';
import { ItemLink } from '~/components/dashboard/side_nav/nav_item';
const FavoriteItem = styled(ItemLink)(({ theme }) => ({
backgroundColor: theme.colors.white,
backgroundColor: theme.colors.secondary,
}));
export default FavoriteItem;