I have a algorithm below, I want "if" to be "IF". See code:
\documentclass{article}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\RestyleAlgo{boxruled}
\begin{document}
\begin{algorithm}[H]
\SetAlgoLined
\textbf{Input} : A graph $G$\;
\textbf{Find} : Graph and its color\\
\uIf{Complement o}{
Do nothng \\~\\
}
Do different things here
\caption{ \textsc{ Algorithm Graph }}
\label{algo8}
\end{algorithm}
\end{document}
Question : How to change "if" to "IF" in the algorithm given below?

