How I change the PHP Code color? The default is blue (#0000BB).
MyBB 1.8.22 (localhost)
![[Image: qan15UM.png]](https://camo.mybb.com/a3c1a2d6ab87662ebbcab7780e40a782e3af57f6/68747470733a2f2f692e696d6775722e636f6d2f71616e3135554d2e706e67)
I need to edit the file.
However, I am not finding the code # 0000BB to add another color.
PHP MyCode colors bases on a PHP internal function for highlighting with pre-defined definitions.
Check the PHP function:
https://www.php.net/manual/de/function.h...string.php
You just can't change the colors within MyBB!
It needs to be changed by PHP itself, so the pre-processor has to be setup with other color definitions.
This can be done by...
- fixing new values in configuration file php.ini
- at runtime using PHP method "ini_set(highlight...)".
[ExiTuS]
Now I understood why I wasn't finding the color code. Thank you all very much for the clarifications.