Skip to content

Commit 5060b3c

Browse files
Fix color contrast for WCAG 2 AA compliance
- Darken Open Repository button background (#e94560 -> #c7354a) - Lighten version text color (#666 -> #9a9a9a) - Both now meet 4.5:1 minimum contrast ratio Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 694b385 commit 5060b3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

electron/src/renderer/index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ body {
8787
margin-top: 24px;
8888
padding: 12px 32px;
8989
font-size: 16px;
90-
background: #e94560;
90+
background: #c7354a;
9191
color: #fff;
9292
border: none;
9393
border-radius: 6px;
@@ -96,13 +96,13 @@ body {
9696
}
9797

9898
#open-repo-btn:hover {
99-
background: #c73e54;
99+
background: #a62d3f;
100100
}
101101

102102
#app-version {
103103
margin-top: 24px;
104104
font-size: 13px;
105-
color: #666;
105+
color: #9a9a9a;
106106
}
107107

108108
/* App container */

0 commit comments

Comments
 (0)