npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gatsby-theme-octahedroid

v1.0.2

Published

Gatsby theme styled with Tailwind and Theme-UI

Readme

GatsbyJS Theme Octahedroid

A marketing component library styled with Tailwind CSS and Theme UI

Get started

Install Gatsby CLI:

npm i --global gatsby-cli

Create new Gatsby project:

gatsby new my-new-website

Add this theme as a dependency for your site and the tailwindcss library:

cd my-new-website
npm install gatsby-theme-octahedroid tailwindcss
or
yarn add gatsby-theme-octahedroid tailwindcss

Then in your gatsby-config.js file use the theme as a plugin and in the options themePath add your theme file route like this:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-theme-octahedroid`,
      options: {
        root: __dirname,
        themePath: `${__dirname}/theme`
      }
    }
  ]
};

Theme requirements

In your site src/ create a folder called images/ and put the images you want to use in your site, this is for the theme to be able to create faster images.

Theme provider

In order for Theme UI to use you new theme settings you need to use the <ThemeProvider /> component and pass your theme file as the theme prop, we recommend the use of a Layout component for this, an example of a layout component is included in the src/components/layout-example.js.

Theme configuration

If you want to change the components color, fonts, sizes, etc you must create a theme.js file at the root of your project, you can extend the original theme by shadowing the original theme file like this:

const baseTheme = require('gatsby-theme-octahedroid/theme');

const myTheme = {
  ...baseTheme,
  colors: {
    ...baseTheme.colors,
    primary: '#0CBFC7',
    secondary: '#542c85',
    accent: '#E8DA8B',
    darkShade: '#37375B',
    lightShade: '#F7F7F7'
  },
  height:{
    ...baseTheme.height,
    hero: '700px'
  },
  styles: {
    ...baseTheme.styles,
    h1: {
      ...baseTheme.heading,
      fontSize: "4rem",
    },
    h2: {
      ...baseTheme.heading,
      fontSize: "2.5rem",
    },
    h3: {
      ...baseTheme.heading,
      fontSize: "2rem",
    },
    h4: {
      ...baseTheme.heading,
      fontSize: "1.5rem",
    },
    h5: {
      ...baseTheme.heading,
      fontSize: "1.25rem",
      fontWeight: 'body',
    },
    h6: {
      ...baseTheme.heading,
      fontSize: "1rem",
    },
  }
}
// console.log(myTheme);
module.exports = myTheme;

Deploy

Deploy to Netlify

Resources

Credits

Support

For issues and features request, use Github or access the support page provided by Octahedorid

Upcoming featured

@TODO post install scripts for initial setup