[Tex/LaTex] How to just place a background colour throughout an entire line with text

backgrounds

I think the title says it all, just look at this image in which is a common thing lawyers are doing around here.

The easiest way. No tables. No packages.
If there is need for some, I can't complain though.
It's just because I haven't seen a question quite like this one for TEX.
The image is from Word and what the person basically did was to select the entire line and fill with a background colour fill.

Thank you.

Best Answer

Pretty easy with tcolorbox and same special settings, although this is a package and at least one package must be loaded to support colours.

\documentclass{article}

\usepackage{blindtext}
\usepackage[most]{tcolorbox}

\begin{document}
\blindtext
\begin{tcolorbox}[colback=gray!50,enhanced,sharp corners,frame hidden,halign=center]
HOW CAN I DO THIS IN \LaTeX{} THE SIMPLER WAY?
\end{tcolorbox}
\blindtext
\end{document}

enter image description here