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

styled-tools-core

v1.0.3

Published

Save time, avoid changing your theme.{js,ts} file in order to test a theme change in the browser.

Downloads

6

Readme

🚀 Comming Soon:

We are working to enable a floating button that will let Product Owners and Designers interact with your theme and change it in the browser. So stay tuned!

🔥 Styled Tools

Save time, avoid changing your theme.{js,ts} file in order to test a theme change in the browser. Styled Tools was created to let you change the theme properties in the browser!

This tool was created with the purpose to enable css-in-js theme debugging in the browser, so you will be able to change your themes property in the browser in order to speed-up your development process and will save you from looking for the name of the theme properties, change one by one and wait for your bundle to transpile all your files again and refresh the browser to see the changes.

How to use it?

It is pretty straight forward to use the library, you just need to first install it:

npm i styled-tools-core --save

then in your theme definition, you can decorate it with the StyledTools function, like:

    import StyledTools from "styled-tools-core";

    const { theme, globals } = StyledTools({
        colors: {
            background: "#000",
            primary: "hotpink",
        },
        base: {
            fontSize: "16px",
        },
    });

Then you can use your theme normally how your css-in-js library suggest, here I'll use emotion as an example, but any other css-in-js library will work as well.

In your theme provider, you can include your theme, and also, since the way how we enable the access to the themes variables in the browser is using css variables, you need to add the globals variables in a global css scope:

<ThemeProvider theme={theme}>
    <Global styles={css`${globals}`} />
      ...
</ThemeProvider>

And that is it! You are ready to start rocking and play around with your application theme in the browser!

If you still have doubts on how to use the library, please check the examples/index file, from our basic example app 🙂🙃.