Skip to content

manishrc/tailwindcss-typography-js

Repository files navigation

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: {},
};

About

Tailwind CSS plugin to inject Typography.js styles

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages