hensei-web/styles/variables.scss
Justin Edmund 471b61b2c0 Clean up font-size
We'll have to change this to rems in the future, but at least we're just changing variables
2022-01-25 01:35:39 -08:00

29 lines
No EOL
450 B
SCSS

// @import 'include-media/dist/_include-media';
// Breakpoints
$breakpoints: (small: 320px, medium: 768px, large: 1024px);
// Sizing
$unit: 8px;
// Colors
$grey-00: #444;
$grey-10: #777;
$grey-50: #888;
$grey-80: #E9E9E9;
$grey-90: #F5F5F5;
$blue: #61B3FF;
$red: #FF6161;
$error: #D13A3A;
// Font weight
$normal: 400;
$medium: 500;
$bold: 600;
// Font size
$font-small: 12px;
$font-regular: 14px;
$font-large: 18px;
$font-xlarge: 21px;