When running the following code, the output is:
import logging
import coloredlogs
logger = logging.getLogger(__name__)
coloredlogs.install(level='DEBUG')
logger.debug("debug")
logger.info("info")
With coloredlogs v12.0:

With coloredlogs v14.0:

I simply did a python -m pip install coloredlogs==14.0 between the two screenshots. Any idea why I lost the different colors?