Skip to content

Instantly share code, notes, and snippets.

@macrozone
Created September 8, 2017 09:10
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 macrozone/b3bec7acf570fa6cdebbcf3b16bf520b to your computer and use it in GitHub Desktop.
Save macrozone/b3bec7acf570fa6cdebbcf3b16bf520b to your computer and use it in GitHub Desktop.
// @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