Skip to content

Commit

Permalink
Add mix-blend-plus-darker utility (#12923)
Browse files Browse the repository at this point in the history
* feat: add plus-darker support for mix-blend-mode

* Fix failing test

* Update changelog

* Formatting

---------

Co-authored-by: Jonathan Reinink <jonathan@reinink.ca>
  • Loading branch information
2 people authored and KrisBraun committed Feb 21, 2024
1 parent 9b789fa commit ce74a3c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -9,10 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Ensure max specificity of `0,0,1` for button and input Preflight rules ([#12735](https://github.com/tailwindlabs/tailwindcss/pull/12735))
- Ensure max specificity of `0,0,1` for button and input Preflight rules ([#12735](https://github.com/tailwindlabs/tailwindcss/pull/12735))
- Improve glob handling for folders with `(`, `)`, `[` or `]` in the file path ([#12715](https://github.com/tailwindlabs/tailwindcss/pull/12715))
- Split `:has` rules when using `experimental.optimizeUniversalDefaults` ([#12736](https://github.com/tailwindlabs/tailwindcss/pull/12736))
- Sort arbitrary properties alphabetically across multiple class lists ([#12911](https://github.com/tailwindlabs/tailwindcss/pull/12911))
- Add `mix-blend-plus-darker` utility ([#12923](https://github.com/tailwindlabs/tailwindcss/pull/12923))

### Added

Expand Down
1 change: 1 addition & 0 deletions src/corePlugins.js
Expand Up @@ -2378,6 +2378,7 @@ export let corePlugins = {
'.mix-blend-saturation': { 'mix-blend-mode': 'saturation' },
'.mix-blend-color': { 'mix-blend-mode': 'color' },
'.mix-blend-luminosity': { 'mix-blend-mode': 'luminosity' },
'.mix-blend-plus-darker': { 'mix-blend-mode': 'plus-darker' },
'.mix-blend-plus-lighter': { 'mix-blend-mode': 'plus-lighter' },
})
},
Expand Down
4 changes: 4 additions & 0 deletions tests/plugins/__snapshots__/mixBlendMode.test.js.snap
Expand Up @@ -66,6 +66,10 @@ exports[`should test the 'mixBlendMode' plugin 1`] = `
mix-blend-mode: luminosity;
}
.mix-blend-plus-darker {
mix-blend-mode: plus-darker;
}
.mix-blend-plus-lighter {
mix-blend-mode: plus-lighter;
}
Expand Down

0 comments on commit ce74a3c

Please sign in to comment.