$utilities: map-merge(
  $utilities,
  (
    "place-content": (
      property: place-content,
      class: place-content,
      variants: place-content,
      values: (
        "center": center,
        "start": start,
        "end": end,
        "between": space-between,
        "around": space-around,
        "evenly": space-evenly,
        "stretch": stretch,
      ),
    ),
  )
);
