17 lines
374 B
SCSS
17 lines
374 B
SCSS
// Colors
|
|
$darkGrey: #323232;
|
|
$white: #f8f8ff;
|
|
$black: #2f2f2f;
|
|
$blue: #0f52bf;
|
|
|
|
$backgroundDarker: #252627;
|
|
$backgroundDark: #292a2d;
|
|
|
|
//Fonts
|
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@500&family=Open+Sans&display=swap');
|
|
$fontHeader: 'Fira Mono', monospace;
|
|
$fontParagraph: 'Open Sans', sans-serif;
|
|
|
|
// Content
|
|
$breakLarge: 992px;
|
|
$width: 760px; |