Initial commit from gatsby: (https://github.com/gatsbyjs/gatsby-starter-blog-theme.git)
This commit is contained in:
@@ -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,
|
||||
// },
|
||||
// },
|
||||
})
|
||||
Reference in New Issue
Block a user