A11y: Adjust placeholder text color to pass a11y tests (#84357)

This commit is contained in:
Laura Fernández 2024-05-23 16:55:57 +02:00 committed by GitHub
parent a85c1b69d5
commit 2aa67c7a47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -180,7 +180,7 @@ class LightColors implements ThemeColorsBase<Partial<ThemeRichColor>> {
text = { text = {
primary: `rgba(${this.blackBase}, 1)`, primary: `rgba(${this.blackBase}, 1)`,
secondary: `rgba(${this.blackBase}, 0.75)`, secondary: `rgba(${this.blackBase}, 0.75)`,
disabled: `rgba(${this.blackBase}, 0.50)`, disabled: `rgba(${this.blackBase}, 0.64)`,
link: this.primary.text, link: this.primary.text,
maxContrast: palette.black, maxContrast: palette.black,
}; };