Created
September 8, 2017 09:10
-
-
Save macrozone/b3bec7acf570fa6cdebbcf3b16bf520b 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
// @flow | |
import { css } from 'styled-components' | |
export default { | |
colors: { | |
greyDark: '#515151', | |
greySemiDark: '#7D7D7D', | |
grey: '#A4A4A4', | |
greySemiLight: '#C6C6C6', | |
greyLight: '#D8D8D8', | |
greyVeryLight: '#ECECEC', | |
floorPlanBackground: '#ffffff', | |
white: '#ffffff', | |
cleaned: '#79ABFF', | |
primary: '#79ABFF', | |
}, | |
fonts: { | |
default: css` | |
font-family: sourceSansSemiBold; | |
color: ${p => p.theme.colors.greyDark} | |
`, | |
italic: css` | |
font-family: sourceSansItalic; | |
color: ${p => p.theme.colors.greyDark} | |
`, | |
heading: css` | |
font-family: sourceSansBold; | |
color: ${p => p.theme.colors.greyDark} | |
`, | |
}, | |
borders: { | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment