[Tex/LaTex] Background color box with xcolor

color

What is the best way to achieve this? Could I define a solution environment that will start with a \med skip and then color the box until I end the solution?

Example

Best Answer

![enter image description here

\documentclass{article}
%\usepackage{geometry}

\usepackage{enumitem}
\usepackage{tcolorbox}
\newtcolorbox{solutionbox}{
        colframe=cyan!20!white,
        colback =cyan!20!white,
        top=0mm, bottom=0mm, left=0mm, right=0mm,
        arc=0mm,
%
        fontupper=\color{blue!70!black},
        fonttitle=\bfseries\color{blue!70!black},
        title=Solution:
                        }
\begin{document}
\begin{solutionbox}
    \begin{enumerate}[leftmargin=*, nosep, label=(\alph*)]
\item $A\cup B=\{0,1,2,3,4,5,6,7,8\}$
\item $A\smallsetminus C = \{0,6 \} $
\item $B\smallsetminus A = B $
\item $B\cap C = \varnothing$
\item $C\smallsetminus B = C$
    \end{enumerate}
\end{solutionbox}
\end{document}