From 8fc558370f0c68facc4e96c5f236aa51f9e092fb Mon Sep 17 00:00:00 2001 From: Raphael Goetter Date: Mon, 16 Oct 2017 16:15:03 +0200 Subject: [PATCH] font weights variables --- sass/_config/_variables.scss | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/sass/_config/_variables.scss b/sass/_config/_variables.scss index c00df21..5d100ce 100644 --- a/sass/_config/_variables.scss +++ b/sass/_config/_variables.scss @@ -27,15 +27,24 @@ $h4-size-l : 2.0rem; // equiv "20px" $h5-size-l : 1.8rem; // equiv "18px" $h6-size-l : 1.6rem; // equiv "16px" -$line-height-s : 1.1; -$line-height : 1.3; -$line-height-l : 1.5; - // font stacks $font-stack-common : -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; // system font stack $font-stack-headings : sans-serif; // font for h1, h2.. h6 $font-stack-monospace : consolas, courier, monospace; // font for code and samples +// line heights +$line-height-s : 1.1; +$line-height : 1.3; +$line-height-l : 1.5; + +// font weights +$weight-light : 200; +$weight-book : 300; +$weight-regular : 400; // default +$weight-medium : 500; +$weight-bold : 700; + + // grid gutters (for .has-gutter-* classes) $grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );