Personal_Website/resources/scss/_variables.scss
2021-09-01 21:34:49 +02:00

33 lines
546 B
SCSS
Vendored

// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
// Base colors
$white: #ffffff;
$black: #000000;
$blue: #3490dc;
$indigo: #6574cd;
$purple: #9561e2;
$pink: #f66d9b;
$red: #e3342f;
$orange: #f6993f;
$yellow: #ffed4a;
$green: #38c172;
$teal: #4dc0b5;
$cyan: #6cb2eb;
// Theme colors
$background: #162028;
$background-lighter: #1c2d35;
$background-darker: #0f171d;
$primary: #a1fab3;
$text-color: #ecf8ff;
// Breakpoints
$sm: 576px;
$md: 768px;
$lg: 992px;
$xl: 1200px;
$xxl: 1400px;