meals-made-easy-react-app/src/main.css

32 lines
623 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
--primary-white: #ffffff;
--primary-red: #91351d;
--primary-yellow: #ffb61d;
--primary-black: #252525;
--off-white-1: #eee;
--off-white-2: #ddd;
--off-white-3: #ccc;
--off-white-4: #bbb;
--off-white-5: #aaa;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
box-sizing: border-box;
}
a {
color: var(--primary-red);
}
a:visited {
color: var(--primary-red);
}
a:hover {
color: hsl(from var(--primary-red) h s l / 0.9);
}