Background Color
Class | Support |
---|---|
bg-{n} | โ Full Support |
bg-[n] | โ Full Support |
bg-inherit | ๐ Web only |
bg-current | ๐ Web only |
Legend
backgrondOpacity (native only)
For performance reasons, NativeWind renders with the corePlugin
backgroundOpacity
disabled. This plugin allows text to dynamically change it's opacity via the --tw-background-opacity
variable. Instead, the opacity is set as a static value in the color
property.
If you need to use this feature, you can enable it by adding the following to your tailwind.config.js
file:
module.exports = {
/* ... */
corePlugin: {
backgroundOpacity: true,
},
};