Last active
January 17, 2019 06:53
-
-
Save aamnah/6311552aad2af72b8fcd591bdd1bcafc to your computer and use it in GitHub Desktop.
CSS Root variables
This file contains 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
/* | |
from https://docs.sentry.io/ | |
*/ | |
:root { | |
--blue: #5d91c9; | |
--indigo: #6610f2; | |
--purple: #6c5fc7; | |
--pink: #e83e8c; | |
--red: #e03e2f; | |
--orange: #f36e4f; | |
--yellow: #f9a66d; | |
--green: #57be8c; | |
--teal: #20c997; | |
--cyan: #2e7d6f; | |
--white: #ffffff; | |
--gray: #888099; | |
--gray-dark: #463e52; | |
--primary: #6c5fc7; | |
--secondary: #888099; | |
--success: #57be8c; | |
--info: #2e7d6f; | |
--warning: #f9a66d; | |
--danger: #e03e2f; | |
--light: #faf8ff; | |
--dark: #342c3e; | |
--breakpoint-xs: 0; | |
--breakpoint-sm: 576px; | |
--breakpoint-md: 768px; | |
--breakpoint-lg: 992px; | |
--breakpoint-xl: 1200px; | |
--font-family-sans-serif: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment