fix: ๐Ÿ› menu color

This commit is contained in:
Anthony Potdevin 2020-08-20 20:57:09 +02:00
parent 7b5014770f
commit 9de0c31316
No known key found for this signature in database
GPG Key ID: 4403F1DFBE779457
2 changed files with 9 additions and 3 deletions

View File

@ -23,8 +23,8 @@ import {
navBackgroundColor, navBackgroundColor,
navTextColor, navTextColor,
subCardColor, subCardColor,
cardBorderColor,
mediaWidths, mediaWidths,
burgerRowColor,
} from '../../styles/Themes'; } from '../../styles/Themes';
import { useConfigState } from '../../context/ConfigContext'; import { useConfigState } from '../../context/ConfigContext';
import { Link } from '../../components/link/Link'; import { Link } from '../../components/link/Link';
@ -95,7 +95,7 @@ const BurgerRow = styled.div`
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
overflow: scroll; overflow: scroll;
background: ${cardBorderColor}; background: ${burgerRowColor};
margin: 0 -16px; margin: 0 -16px;
padding: 16px; padding: 16px;
`; `;

View File

@ -78,7 +78,13 @@ export const inverseTextColor = theme('mode', {
export const burgerColor = theme('mode', { export const burgerColor = theme('mode', {
light: themeColors.white, light: themeColors.white,
dark: themeColors.blue6, dark: themeColors.blue6,
night: themeColors.blue6, night: 'black',
});
export const burgerRowColor = theme('mode', {
light: themeColors.grey2,
dark: themeColors.blue4,
night: '#0a0a0a',
}); });
export const linkHighlight = theme('mode', { export const linkHighlight = theme('mode', {