19 lines
461 B
CSS
19 lines
461 B
CSS
@import url('/fonts/firacode/FiraCode.css');
|
|
|
|
:root {
|
|
--bg-color: #0E1313;
|
|
--core-green: rgba(0, 214, 143, 1);
|
|
--core-blue: rgba(5, 40, 176, 1);
|
|
--core-light-blue: #007ec2;
|
|
--core-gradient: linear-gradient(90deg, rgba(0, 214, 143, 1) 0%, rgba(5, 40, 176, 1) 100%);
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth; /* smooth scroll anchors */
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
font-family: 'Fira Code', monospace;
|
|
color: white;
|
|
} |