This commit is contained in:
Ken
2019-08-16 06:47:09 -07:00
commit ae34d3aa28
12 changed files with 13390 additions and 0 deletions
@@ -0,0 +1,16 @@
import React, { Fragment } from "react"
import { Styled } from "theme-ui"
/**
* Change the content to add your own bio
*/
export default () => (
<Fragment>
This is where <Styled.a href="http://example.com/">your name</Styled.a>
{` `}
goes.
<br />
Or whatever, you make the rules.
</Fragment>
)
@@ -0,0 +1,25 @@
import merge from "deepmerge"
import defaultThemeColors from "gatsby-theme-blog/src/gatsby-plugin-theme-ui/colors"
/*
* Want to change your theme colors?
* Try uncommenting the color overrides below
* to go from default purple to a blue theme
*/
// const darkBlue = `#007acc`
// const lightBlue = `#66E0FF`
// const blueGray = `#282c35`
export default merge(defaultThemeColors, {
// text: blueGray,
// primary: darkBlue,
// heading: blueGray,
// modes: {
// dark: {
// background: blueGray,
// primary: lightBlue,
// highlight: lightBlue,
// },
// },
})