iftechfoundation / ifdb-suggestion-tracker

Bugs and feature requests for a future IFDB update
10 stars 0 forks source link

Unreadable game title while on the review page #381

Open manonamora opened 1 year ago

manonamora commented 1 year ago

The dark blue on the black is essentially unreadable :/ image

dfabulich commented 1 year ago

On what page are you seeing this? https://ifdb.org/viewgame?id=8soieoos34rbdm3v looks fine to me in Midnight style.

image
manonamora commented 1 year ago

On the page after you click Write a review (where you can write the review)

manonamora commented 6 months ago

Oh...so I think I found where this comes from: it's because the title in the review page is wrapped in a div instead of a header, like on the actual game page:

<div class="title">Game Name</div>

And in the CSS you get on line 477:

div.title {
    font-size: 125%;
    color: #000080;
    font-weight: bold;
}

That colour on black has a colour contrast rating of 1.31. I'd recommend using the colour : #d0d0ff (same as the title on the main page), as it has a rating of 14.15.

(Not using any stylesheet or anything, it's the base stylesheet IFDB page... I just opened the Inspect Tool).