portfolio/src/styles/globals.css

21 lines
429 B
CSS
Raw Normal View History

2022-07-05 22:06:40 +02:00
@import '@treejs/styles/global.css';
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');
body {
@apply bg-white text-black text-sm;
font-family: 'Quicksand', sans-serif;
font-size: 16px;
}
:root {
--color-primary: #28527a;
--color-focus: theme('colors.gray.100');
--color-active: #70a7db;
--color-timeline: #F4E06D;
}
a {
color: var(--color-active)
}