Skip to content

Commit

Permalink
Add support for mix-blend-plus-darker utility
Browse files Browse the repository at this point in the history
  • Loading branch information
gjtorikian committed Apr 25, 2024
1 parent 5e658b1 commit 5300f88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/tailwind_merge/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ module Config
"saturation",
"color",
"luminosity",
"plus-lighter",
]
}
ALIGN = -> { ["start", "end", "center", "between", "around", "evenly", "stretch"] }
Expand Down Expand Up @@ -1230,7 +1229,7 @@ module Config
# Mix Blend Mode
# @see https://tailwindcss.com/docs/mix-blend-mode
##
"mix-blend" => [{ "mix-blend" => BLEND_MODES.call }],
"mix-blend" => [{ "mix-blend" => BLEND_MODES.call.push("plus-lighter", "plus-darker") }],
##
# Background Blend Mode
# @see https://tailwindcss.com/docs/background-blend-mode
Expand Down
2 changes: 1 addition & 1 deletion lib/tailwind_merge/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module TailwindMerge
VERSION = "0.11.0"
VERSION = "0.12.0"
end

0 comments on commit 5300f88

Please sign in to comment.