21 lines
429 B
CSS
21 lines
429 B
CSS
![]() |
@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)
|
||
|
}
|