gatsby-theme-mono

0.1.2 • Public • Published

gatsby-theme-mono

A Theme UI preset theme for Gatsby

npm i gatsby-theme-mono

Usage

This theme is built with composition in mind and can be used as the basis for a custom theme or to adjust the styles in other themes.

Composed with other themes

// gatsby-config.js
module.exports = {
  plugins: [
    'gatsby-theme-blog',
    'gatsby-theme-mono',
  ]
}
// gatsby-config.js
module.exports = {
  plugins: [
    'gatsby-theme-notes',
    'gatsby-theme-mono',
  ]
}

As a base theme

The styles in this theme can be used as a starting point for custom themes.

// gatsby-config.js
module.exports = {
  plugins: [
    'gatsby-theme-mono',
    'gatsby-plugin-theme-ui',
  ]
}
// src/gatsby-plugin-theme-ui/index.js
import baseTheme from 'gatsby-theme-mono'

export default {
  ...baseTheme,
  // add custom styles to override the base theme
}

See the Theme UI docs for more info on how to use the styles in your custom theme.

MIT License

Package Sidebar

Install

npm i gatsby-theme-mono

Weekly Downloads

2

Version

0.1.2

License

MIT

Unpacked Size

4.02 kB

Total Files

4

Last publish

Collaborators

  • jxnblk