estoy haciendo el ejercicio y revise paso por paso y no encuentro que de distinto tiene mi codigo del de harland pero me cambia todo menos el texto a blanco en el tema de fondooscuro. por ejemplo en el styled element Box tengo estas dos propiedades asi, y el fondo sirve perfecto pero el color del texto no? ayudaaa
export const Box = styled.div`
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: ${ ({theme}) => theme.inside};
color: ${({theme}) => theme.text};
border-radius: 5px;
box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.04);
padding: 20px;
width: 48%;
@media (max-width: 800px) {
width: 95%;
margin: 5px;
}
`;