@manishrc/tailwindcss-typography-js

0.1.7 • Public • Published

tailwindcss-typography-js Build Status

Tailwind CSS plugin to inject Typography.js styles

Install

$ npm install --save @manishrc/tailwindcss-typography-js

Usage

// tailwindcss.config.js
const typography = require("@manishrc/tailwindcss-typography-js");

// Option 1 - Using a configuration
const typographyTheme = typography({
  baseFontSize: "18px",
  baseLineHeight: 1.666,
  headerFontFamily: ["Helvetica Neue", "sans-serif"],
  bodyFontFamily: ["Georgia", "serif"],
});

// Option 2 - Using a theme
import funstonTheme from "typography-theme-funston";
const typographyTheme = typography(funstonTheme);

// Add to the plugin list.
module.exports = {
  theme: {
    extend: {},
  },
  variants: {},
  plugins: [typographyTheme],
  corePlugins: {},
};

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @manishrc/tailwindcss-typography-js

    Weekly Downloads

    0

    Version

    0.1.7

    License

    MIT

    Unpacked Size

    2.98 kB

    Total Files

    4

    Last publish

    Collaborators

    • manishrc