I want to make a dialogue between two people with the "commenting icon" in front of every sentence. I somewhat got what I want by using enumitem and fontawesome packages.

Here is my code so far.
\documentclass{article}
\usepackage{enumitem}
\usepackage{fontawesome}
\usepackage{xcolor}
\begin{document}
\begin{itemize}
\item[\color{blue!70!white}\faCommenting] First person
\item[\color{green!70!black}\faCommentingO] Second person
\item[\color{blue!70!white}\faCommenting] First person
\end{itemize}
\end{document}
Now I'd like to define it as a new environment to use this multiple times. I know there is a \labelitemi command but it makes change for all items, for this I am not sure how to do it.
I did look up for old questions and found this but couldn't understand the steps to have them fit my case.

