Randy Walker wrote: Mon Jun 16, 2025 1:49 am
Is it built-into the IDE?
Now it makes sense for you to try it, since I did it with a black design style.
Download
If you are interested in how this is done, then unzip and open the file: win32\popup\css\Header.css
I made a text replacement using a regular expression:
1. Constants
Find: >([A-Z][A-Z_\d]+?_[A-Z_\d]++)</TD>
Replacement: ><font class="cons">\1</font></TD>
2. Subsections on the page
Find: <P><B>Parameters</B></P>
Replacement: <p class="section">Parameters</p>
Execute for: Parameters, Remarks, Errors, See Also, Return Values, Members
3. Table headers
Find: <B>Meaning</B></TD>
Replacement: <font class="fldth">Meaning</font></TD>
Execute for: Value, Meaning, Action
4. Comments
Find: (// [^\r\n<]++)
Replacement: <font class="comm">\1</font>
5. Links
Find: <A HREF="(.+?).htm"><B>(\w+)</B></A>
Replacement: <A HREF="\1.htm">\2</A>