Created
August 26, 2017 00:31
-
-
Save angellromero/802eff36910a8aef9d685f9a48aae4b1 to your computer and use it in GitHub Desktop.
Colors & Font Sizes
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
// Colors | |
// ---------------------------------- | |
.text-color-black { | |
color: #000; | |
} | |
.text-color-dark-gray { | |
color: #616161; | |
} | |
.text-color-medium-gray { | |
color: #999; | |
} | |
.text-color-medium-light-gray { | |
color: #d3d1ce; | |
} | |
.text-color-gray { | |
color: #777; | |
} | |
.text-color-light-gray { | |
color: #b6b6b6; | |
} | |
.text-color-white { | |
color: #fff; | |
} | |
.text-color-dark-linen { | |
color: #e2dcd1; | |
} | |
.text-color-dark-bronze { | |
color: #98542d; | |
} | |
.text-color-bronze { | |
color: #c67546; | |
} | |
.text-color-inactive { | |
color: #ccc; | |
} | |
.text-color-orange { | |
color: #bf360c; | |
} | |
.text-color-light-orange { | |
color: #c67445; | |
} | |
.text-color-red { | |
color: #b60000; | |
} | |
.text-color-light-red { | |
color: #d9534f; | |
} | |
.text-color-green { | |
color: #b60000; | |
} | |
// Font Sizes | |
// ---------------------------------- | |
.font-size-extra-tiny { | |
font-size: 8px; | |
} | |
.font-size-small-tiny { | |
font-size: 10px; | |
} | |
.font-size-medium { | |
font-size: 13px; | |
} | |
.font-size-large { | |
font-size: 14px; | |
} | |
.font-size-medium-large { | |
font-size: 16px; | |
} | |
.font-size-mid-large { | |
font-size: 18px; | |
} | |
.font-size-extra-large { | |
font-size: 24px; | |
} | |
.font-size-small-jumbo { | |
font-size: 28px; | |
} | |
.font-size-jumbo { | |
font-size: 36px; | |
} | |
.font-size-extra-jumbo { | |
font-size: 45px; | |
} | |
.font-size-large-jumbo { | |
font-size: 60px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment