- Eclipse Pygments Style
- Lexers
- Drools Pygments Lexer
- Crocopat Pygments Lexer
- OCL Pygments Lexer
- LTL Pygments Lexer
- Jess Pygments Lexer
- Jena Pygments Lexer
- Checks Pygments Style
- Xtend Pygments Style
- Alloy Pygments Style
- IDL Pygments Style
- OWL Functional Pygments Style
Pygments is a Python-based colour syntax highlighter, which can also be connected via Minted to perform colour syntax highlighting for Latex. I wanted a style similar to the Eclipse style:

This was done in Latex with the following:
\usepackage{minted}
...
\begin{document}
\usemintedstyle{eclipse}
\begin{minted}[fontsize=\small]{java}
... [java code here] ...
\end{minted}
I achieved this by creating a new eclipse.py style.
Yes, it is very messy