OK, looks like the Excel formula to convert standard Hex RGB to PL/SQL Developer decimal is:

Code
=HEX2DEC(CONCATENATE(MID(G2,5,2), MID(G2,3,2), MID(G2,1,2)))
(where column G contains Hex RGB).

It's a pity PL/SQL Developer doesn't have more highlighting categories though. I've used 'Custom Keywords' for the PL/SQL named exceptions, but there's nothing for Types or Functions.