@@ -41,6 +41,7 @@ data RenderedPalette = RenderedPalette {
4141 , p'parentheses :: {-# UNPACK #-} ! Text
4242 , p'ignore :: {-# UNPACK #-} ! Text
4343 , p'commitMain :: {-# UNPACK #-} ! Text
44+ , p'commitMerge :: {-# UNPACK #-} ! Text
4445 , p'commitOther :: {-# UNPACK #-} ! Text
4546 , p'commitMsgByLines :: {-# UNPACK #-} ! Text
4647 , p'diffMain :: {-# UNPACK #-} ! Text
@@ -72,6 +73,8 @@ renderPalette brightness p = RenderedPalette
7273 , p'parentheses = front D. p'parentheses
7374 , p'ignore = front D. p'ignore
7475 , p'commitMain = wrap $ back D. p'commitMain
76+ , p'commitMerge = wrap $ T. concat [back D. p'commitMain,
77+ front D. p'commitMergeFG]
7578 , p'commitOther = wrap $ back D. p'commitOther
7679 , p'commitMsgByLines = front D. p'commitMsgByLines
7780 , p'diffMain = wrap $ back D. p'diffMain
@@ -170,6 +173,7 @@ ansiFormatting = root
170173 repr _ _ _ DiffNothing = Nothing
171174 repr _ _ _ CommitMsgByLines = Just $ p'commitMsgByLines pal
172175 repr _ _ _ CommitMain = Just $ p'commitMain pal
176+ repr _ _ _ CommitMerge = Just $ p'commitMerge pal
173177 repr _ _ _ CommitOther = Just $ p'commitOther pal
174178
175179 repr _ _ r (Style Ignore ) = r
0 commit comments