jothepro / doxygen-awesome-css

Custom CSS theme for doxygen html-documentation with lots of customization parameters.
https://jothepro.github.io/doxygen-awesome-css/
MIT License
956 stars 108 forks source link

Function parameters hard to read in dark mode (Doxygen 1.10) #139

Closed marktsuchida closed 2 months ago

marktsuchida commented 3 months ago

With Doxygen 1.10 and in dark mode, function parameters are dark red/brown and hard to read: image

I think doxygen.css added a .paramname em rule that is now winning over the color in doxygen-awesome.css's .paramname rule.

I'm currently working around this with the following custom css:

/* Make '.paramname em' identical to '.paramname'. */
.paramname em {
    font-weight: 600;
    color: var(--primary-dark-color);
}