Last active
May 11, 2017 22:42
-
-
Save scottcorgan/7a9da4c50ea768c00e55928bc8b5e1d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- HELP me make a type for this please! | |
-- The values should be able to be Css.rem, Css.px, etc., according to elm-css's types | |
defaultStyleGuide = | |
{ fontSize1 = (Css.rem 3) | |
, fontSize2 = (Css.rem 2.25) | |
, fontSize3 = (Css.rem 1.5) | |
, fontSize4 = (Css.rem 1.25) | |
, fontSize5 = (Css.rem 1) | |
, fontSize6 = (Css.rem 0.875) | |
, fontSize7 = (Css.rem 0.75) | |
, letterSpacingTight = (Css.em (-0.05)) | |
, letterSpacing1 = (Css.em 0.1) | |
, letterSpacing2 = (Css.em 0.25) | |
, lineHeightSolid = (Css.num 1) | |
, lineHeightTitle = (Css.num 1.25) | |
, lineHeightCopy = (Css.num 1.5) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment