Socket
Socket
Sign inDemoInstall

@slipmatio/tailwind-config

Package Overview
Dependencies
126
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @slipmatio/tailwind-config

Common TailwindCSS configuration for Slipmat projects


Version published
Weekly downloads
40
increased by73.91%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Common TailwindCSS configuration for Slipmat.io projects. The project versioning follows Tailwind major versions (ie. v3.x of this package use Tailwind 3.x).

This configuration adds:

  • Slipmat colors:
    • slipmat for Slipmat red (slipmat-500 is the logo color)
  • Play font to default sans fonts

Usage

First install the package:

pnpm add -D @slipmatio/tailwind-config

then add require('@slipmatio/tailwind-config') to presets array in tailwind.config.js.

You can then extend the config if you want. Extended properties override the defaults:

// tailwind.config.js

module.exports = {
  presets: [require('@slipmatio/tailwind-config')],
  theme: {
    extend: {
      fontFamily: {
        source: ['Source Sans Pro', 'sans-serif'],
      },
    },
  },
}

Install the Play font by adding following tags to the <head> of the main template:

<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
  href="https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap"
  rel="stylesheet"
/>

More from Tailwind documentation.

Follow @Uninen on Twitter.

Keywords

FAQs

Last updated on 09 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc