Skip to content

tuffstuff9/tailwindcss-bg-breakpoint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Tailwind CSS Background Colors By Breakpoint 🖌️

tailwind-bg-breakpoint

🌟 Introduction

This plugin allows you to dynamically change the background color of your elements based on Tailwind's screen breakpoints. This solves the need for a more responsive and visually differentiated design across various screen sizes. This is also useful for debugging and designing responsive layouts.

🛠 Installation

To install the plugin, you can simply run the following command:

npm install tailwindcss-bg-breakpoint
# OR
yarn add tailwindcss-bg-breakpoint

🚀 Basic Usage

After installing the plugin, include it in your tailwind.config.js:

// tailwind.config.js
module.exports = {
  //...
  plugins: [require('tailwindcss-bg-breakpoint')],
};

Use bg-breakpoint in your class name to automatically set the background color based on screen size. If you don't do any customization, the plugin will use the default colors specified below for each breakpoint.

<div className='bg-breakpoint'>responsive background</div>

🎨 Customization

This plugin is designed for flexibility and can be customized according to your needs. You can specify background colors using Tailwind's predefined color classes (e.g., red-500) or custom HEX codes (e.g., #f56565).

Default Colors

Here are the default colors applied for each breakpoint (note: DEFAULT is for anything less than sm. You should not see it for the most part):

  • DEFAULT black
  • sm: lime-400
  • md: amber-500
  • lg: orange-600
  • xl: red-800
  • 2xl: rose-900
tailwind background breakpoint colors

Setting Up Customization in tailwind.config.js

To customize the background colors for different breakpoints, you need to define them under the theme key in your tailwind.config.js.

Tailwind Color Classes

To set background colors using Tailwind color classes:

// tailwind.config.js
module.exports = {
  theme: {
    backgroundColorsByBreakpoint: {
      sm: 'green-400',
      md: 'yellow-400',
    },
  },
};

Custom Hex Colors

To set background colors using custom HEX codes:

// tailwind.config.js
module.exports = {
  theme: {
    backgroundColorsByBreakpoint: {
      sm: '#00FF00',
      md: '#FFFF00',
    },
  },
};

Mixed Customization

You can mix Tailwind classes and HEX codes:

// tailwind.config.js
module.exports = {
  theme: {
    backgroundColorsByBreakpoint: {
      sm: 'green-400',
      md: '#FFFF00',
    },
  },
};

Partial Customization

If you only want to specify colors for certain breakpoints, and use default for the rest:

// tailwind.config.js
module.exports = {
  theme: {
    backgroundColorsByBreakpoint: {
      DEFAULT: 'neutral-900'
      md: 'yellow-400',
      lg: 'bg-transparent',
    },
  },
}

Fallback and Error Handling

If an invalid color is provided, the plugin will simply fall back to the default color for that breakpoint.

📜 License

This project is licensed under the MIT License.

About

Tailwind CSS plugin to dynamically change background colors based on screen breakpoints. Customize with Tailwind colors or hex values for a responsive, themed UI

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published