I´m new to latex and got the following problem. I defined a listing style for XML Syntax highlighting like this:

How can I get also the equals symbol in the attribute color (orange)? I want to do sth. like this
\lstdefinestyle{XML}{
morekeywords={xmlns=,attribute\equals}
}
is there some kind of escape sequence to achieve this, or is it not possible?
Here you go:
\documentclass[a4paper, 12pt]{article}
\usepackage{listings, color}
\definecolor{forestgreen}{RGB}{34,139,34}
\definecolor{orangered}{RGB}{239,134,64}
\definecolor{darkblue}{rgb}{0.0,0.0,0.6}
\definecolor{gray}{rgb}{0.4,0.4,0.4}
\lstdefinestyle{XML} {
language=XML,
extendedchars=true,
breaklines=true,
breakatwhitespace=true,
emph={},
emphstyle=\color{red},
basicstyle=\ttfamily,
columns=fullflexible,
commentstyle=\color{gray}\upshape,
morestring=[b]",
morecomment=[s]{<?}{?>},
morecomment=[s][\color{forestgreen}]{<!--}{-->},
keywordstyle=\color{orangered},
stringstyle=\ttfamily\color{black}\normalfont,
tagstyle=\color{darkblue}\bf,
morekeywords={attribute,xmlns,version,type,release},
}
\begin{document}
\begin{lstlisting}[style=XML]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<note attribute="main" xmlns="http://www.w3.org/1999/xhtml">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Dont forget me this weekend!</body>
</note>
\end{lstlisting}
\end{document}
