improve contrast ratio in debugger-ui dark mode (#20559)
Summary: The font colors in the debugger-ui dark mode are not accessible. This PR ensures [Level AAA Conformance to Web Content Accessibility Guidelines 2.0](https://www.w3.org/WAI/WCAG2AAA-Conformance) which makes it better to read for everyone. Pull Request resolved: https://github.com/facebook/react-native/pull/20559 Differential Revision: D9495584 Pulled By: hramos fbshipit-source-id: 1a9bdd015935fb27e2d74d2399e687787282a987
This commit is contained in:
parent
a700044e2e
commit
8dc209a523
|
@ -247,10 +247,10 @@
|
|||
}
|
||||
body.dark {
|
||||
background-color: #242424;
|
||||
color: #666;
|
||||
color: #afafaf;
|
||||
}
|
||||
.dark .shortcut {
|
||||
color: #777;
|
||||
color: #c1c1c1;
|
||||
}
|
||||
.dark a {
|
||||
color: #3b99fc;
|
||||
|
|
Loading…
Reference in New Issue