0.1.2 • Published 2 years ago

@proxima-b/theme v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@proxima-b/theme

Central Tailwind theme for Proxima b. Theoretically this package shouldn't update that much, it manages very few things currently.

Installation

Simply run the following...

npm install @proxima-b/theme

...and to upgrade:

npm install @proxima-b/theme@latest

Usage

Once you've installed the package, you will need to require it in your projects tailwind.config.js, like so:

let theme = require('@proxima-b/theme');

module.exports = {
  content: [
    './src/**/*.{js,ts,jsx,tsx}',
    './src/components/**/*.{js,ts,jsx,tsx}',
  ],
  darkMode: 'media',
  theme,
  plugins: [],
};