Currently TailwindCSS only offers opacity at the element level, not the attribute level.
This plugin provides granular, or optionally basic control over RGBA/"opacity" at the attribute level to complement your TailwindCSS theme('colors')
.
The optional basic control uses theme('opacity')
values.
-
Simple option to generate RGBA attributes based solely on
theme('colors')
andtheme('opacity')
-
Granular control through config so that your generated file doesn't explode with unused classes
- Opacity Opt-In
pluginConfig.opacities: number[]
- Variant Opt-In
pluginConfig.variants: string[]
- Attribute Opt-Out
pluginConfig.excludedAttributes: string[]
- Opacity Opt-In
-
Handles
theme('colors')
recursively -
RGBA available on all color defining CSS attributes
- Property:
color
, Prefix:text
- Property:
backgroundColor
, Prefix:bg
- Property:
borderColor
, Prefix:border
- Property:
borderTopColor
, Prefix:border-t
- Property:
borderRightColor
, Prefix:border-r
- Property:
borderBottomColor
, Prefix:border-b
- Property:
borderLeftColor
, Prefix:border-l
- Property:
stroke
, Prefix:stroke
- Property:
fill
, Prefix:fill
- Property:
-
Unreleased 3.0.0 Color specific control for super granularity.
- (non-breaking)
excludedAttributes
property on config object is optional. View examples below to see potential usage. - (non-breaking)
deepControl
property on config object is optional. View examples below to see potential usage.
npm i --save tailwindcss-opacity
-
.text-blue-100
text
= color attributeblue
=theme('colors')
,{ colors: { blue: '#XXXXXX' } }
100
= 0.1 opacity
-
.border-blue-1-450
border
= border-color attribute1-blue
=theme('colors')
,{ colors: { blue: { 1: '#XXXXXX' } } }
450
= 0.45 opacity
-
.bg-light-blue-200
bg
= background-color attributelight-blue
=theme('colors')
,{ colors: { light: { blue: '#XXXXXX' } } }
200
= 0.2 opacity
.text-yellow-850 {
color: rgba(..., 0.85);
}
.border-r-yellow-200 {
background-color: rgba(..., 0.2);
}
.bg-yellow-400 {
background-color: rgba(..., 0.4);
}
.text-red-0-850 {
color: rgba(..., 0.85);
}
.text-red-3-850 {
color: rgba(..., 0.85);
}
.bg-red-4-400 {
background-color: rgba(..., 0.4);
}
.text-green-0-850 {
color: rgba(..., 0.85);
}
.bg-blue-4-650 {
background-color: rgba(..., 0.65);
}
config: {
...
colors: {
[colorKey: string | number]: string
},
opacity?: number[] // Optional for simple generation
...
}
pluginConfig?: { // Alternative config for granular control
opacities?: number[]
variants?: string[]
excludedAttributes?: string[]
}
/**
* Only use theme('colors') and theme('opacity')
*/
{
plugins: [require('tailwindcss-opacity')()]
}
/**
* Config for more granular control
*/
{
plugins: [
require('tailwindcss-opacity')({
opacities: [0.1, 0.2, 0.4, 0.65, 0.85], // Opacities applied to theme('colors')
variants: ['hover', 'active', 'disabled'], // Variants to apply opacities to
excludedAttributes: ['borderColor'], // Exclude borderColor from generation
}),
]
}
1.0.0
Npm Module, Open Source, published2.0.0
Integrate Typescript2.0.0
Add excludable attributes2.0.1
Example generated classNames added to readme2.0.1
Beginning unit testing with Jest and Typescript2.0.2
Completed unit tests for utils.ts2.1.1
Added simple generation based ontheme('opacity')
as an option
- Company: ©2019 The Launch
- Author: Daniel Griffiths
- Role: Founder and Engineer
- Project: ©2020 TailwindCSS Opacity (contribution to TailwindCSS community)