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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pengoose/theme

v1.0.7

Published

@goose/theme is a theme library for styled-components and emotion. This library provides themes to easily manage the design and styling of web applications.

Downloads

11

Readme

@pengoose/theme

@pengoose/theme is a module that provides a theme (color palette) that can be used in React and Next.js projects. This module can be used in conjunction with CSS-in-JS libraries like styled-components and emotion.

Installation

npm install @pengoose/theme
yarn add @pengoose/theme

darkTheme

Color

| name | color | | ----------- | ------------------------------------------------------------------------------------------------------------- | | primary | #30B198 #30B198 | | secondary | #FFC857 #FFC857 | | accentColor | #EF476F #EF476F | | default | #E2E2E2 #E2E2E2 | | light | #A4A5B2 #A4A5B2 | | transparent | #F5F6F7 #F5F6F7 (RGBA: rgba(245, 246, 247, 0.65)) | | border | #2C2D3C #2C2D3C |

Background

| name | color | | ----------- | ------------------------------------------------------------------------- | | default | #191A23 #191A23 | | primary | #14141C #14141C | | secondary | #181821 #181821 | | tertiary | #393A49 #393A49 | | quaternary | #82838F #82838F | | quinary | #4F5060 #4F5060 | | transparent | #21232E #21232E | | hover | #1C1D2A #1C1D2A |


lightTheme

Color

| name | color | | ----------- | ---------------------------------------------------------------------------------------------------------- | | primary | #30B198 #30B198 | | secondary | #FFC857 #FFC857 | | accentColor | #EF476F #EF476F | | default | #191A23 #191A23 | | light | #E0E0E0 #E0E0E0 | | transparent | #191A23 #191A23 (RGBA: rgba(25, 26, 35, 0.65)) | | border | #C9D5DB #C9D5DB |

Background

| name | color | | ----------- | ------------------------------------------------------------------------------------------------------------- | | default | #F8FAFB #F8FAFB | | primary | #F0F1F5 #F0F1F5 | | secondary | #E2E2E2 #E2E2E2 | | tertiary | #C9D5DB #C9D5DB | | quaternary | #B0BEC5 #B0BEC5 | | quinary | #90A4AE #90A4AE | | transparent | #F5F6F7 #F5F6F7 (RGBA: rgba(245, 246, 247, 0.65)) | | hover | #F0F1F5 #F0F1F5 |


Usage

import React, { useState } from 'react';
import { ThemeProvider } from 'styled-components';
import { lightTheme, darkTheme } from '@pengoose/theme';
import { Components } from './yourComponents';

function App() {
  const [isDark, setIsDark] = useState(true);

  const toggleTheme = () => {
    setIsDark((prev) => !prev);
  };

  return (
    <ThemeProvider theme={isDark ? darkTheme : lightTheme}>
      <button onClick={toggleTheme}>Toggle theme</button>
      <Components />
    </ThemeProvider>
  );
}

export default App;

You can use the theme by passing the theme object to the theme props of the ThemeProvider provided by styled-components or emotion. :)

import styled from 'styled-components';

const Component = styled.div`
  background: ${({ theme }) => theme.background.default};
`;