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

@stnew/typography

v1.2.0

Published

Responsive type system for styled-components

Downloads

9

Readme

@stnew/typography

Responsive typography system for styled-components. Leverages styled-system under the hood.

Install

npm install @stnew/typography

Setup

@stnew/typography lets you define type styles in you styled-components theme.

Before anything, make sure you wrap your app or component in <ThemeProvider>.

Next, extend your theme object with a typeStyles prop.

const theme = {
  ...
  typeStyles: {
    heading: {
      fontSize: [32, 48, 64],
      lineHeight: 1.1,
    },
    subhead: {
      fontSize: [21, 24, 32],
      lineHeight: 1.1,
    },
    body: {
      fontSize: [16, 18, 21],
      lineHeight: 1.4,
    }
  }
}

Import the <Text> component from @stnew/typography and use the typeStyle prop to style your typography.

import React from "react";
import { Text } from "@stnew/typography";

export const MyComponent = props => (
  <article>
    <Text as="h1" typeStyle="heading">
      Aliens attack Earth!
    </Text>
    <Text as="h2" typeStyle="subhead">
      All hope is lost
    </Text>
    <Text typeStyle="body">{props.body}</Text>
  </article>
);

Props

| Prop | Type | Default | Description | | ----------- | -------- | ------- | ------------------------------------------------------------------- | | as | string | p | render as specified tag | | typeStyle | string | body | Mapped to the keys in the theme.typeStyles object. |

The only custom prop is typeStyle. The as polymorphic prop lets you render any tag you want using your defined styles.

All other props are passed through, so you can easily extend the component if you like. Since this leverages styled-components, you can wrap the <Text> component in styled() and use the passed props in a custom component.

<Text as="cite" typeStyle="small">
  Hello World
</Text>

typeStyles

The typeStyles property on the theme object will accept anything as a key. It's up to you how to define your typography styles. Any prop from typography, color, space, and layout in the styled-system API is valid.

const theme = {
  ...
  typeStyles: {
    hero: {
      fontFamily: 'Helvetica, sans-serif',
      fontSize: [55, 73, 81],
      fontWeight: 700,
      lineHeight: 1.1,
      letterSpacing: '-0.02em',
      color: ['black', 'grey', 'white']
    },
    highlight: {
      backgroundColor: 'yellow',
      paddingLeft: '0.5em',
      paddingRight: '0.5em',
    },
    code: {
      fontSize: [16, 18],
      fontFamily: 'monospace',
      lineHeight: 1.25
    }
  }
}

Responsive props

Every prop accepts an array of values that make it responsive.

    fontSize: [16, 24, 32],
    color: ['red', 'green', 'blue']

These are controlled by styled-system's breakpoints and can redefined in your theme object. Learn more about array props.

Why not Variants?

Variants in styled-system only accept CSS style objects, limiting the ability to use the responsive features. But, this is a super useful tool, and textStyles and colorStyles are passed to <Text> so they can be used in conjuction.

// theme.js
const theme = {
  textStyles: {
    caps: {
      textTransform: 'uppercase',
    }
  },
  typeStyles: {
    heading: {
      fontSize: [32, 48, 64],
      lineHeight: 1.1,
    }
  }
}

// Component.js
<Text typeStyle="heading" textStyle="caps">Hello World</Text>