When the new classes came out Scrutinizer started throwing an in-game error and did not show info for either of the new classes. After a bit of looking around I found the fix.
Go to your addons folder\scrutinizer and find a file called colors.lua. In that file you will see all the classes with color codes after them. Put the following 2 lines at the end of that list right after The WARDEN line.
|
Source code
|
1
2
|
PSYRON = {0.47, 0.53, 0.6},
HARPSYN = {0.50, 0, 0.50},
|
This will give you a steel grey bar for the Champion and a deep purple bar for the Warlock.
For anyone interested, you can change any of the colors to anything you like. The values inside the {} are R,G,B values. You can look up color values
here. To get the correct values for the file divide the R,G,B values by 255 (ignore the H,S,B values). This will give you a decimal that you can plug in.
(thanks to Suprra.)