joomla / 40-backend-template

Joomla 4.0 Backend Template Repository
GNU General Public License v2.0
14 stars 6 forks source link

[a11y] color contrast #443

Closed brianteeman closed 6 years ago

brianteeman commented 6 years ago

The gray color used in the breadcrumbs for inactive fails the contrast checks

.breadcrumb-item.active {
    color: #868e96;
}

An alternative that does pass is

.breadcrumb-item.active {
    color: #656b72;
}

Or we could use $gray-700: #495057 but that might be too dark

I havent submitted a pr as I am not sure of the knock on consequences of changing the colour in the scss files etc

chrome_2018-06-13_23-08-35
brianteeman commented 6 years ago

No idea why I submitted this here as its a front end issue