Skip to content

Instantly share code, notes, and snippets.

@scottcorgan
Last active May 11, 2017 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottcorgan/7a9da4c50ea768c00e55928bc8b5e1d6 to your computer and use it in GitHub Desktop.
Save scottcorgan/7a9da4c50ea768c00e55928bc8b5e1d6 to your computer and use it in GitHub Desktop.
-- 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