Skip to content

Commit ff80f48

Browse files
danribesclaude
andcommitted
fix: Lighten all text colors site-wide for dark background visibility
Brighten --text-secondary (#b8c1ec -> #e0e6f6) and --text-light (#8892b8 -> #cdd4ea) CSS variables. Also lighten default link color from --primary-color to --primary-light for better contrast. Bump CSS cache to v5. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5f29e0d commit ff80f48

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

css/style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
--accent-color: #43e97b;
1313
--accent-dark: #38f9d7;
1414
--text-primary: #ffffff;
15-
--text-secondary: #b8c1ec;
16-
--text-light: #8892b8;
15+
--text-secondary: #e0e6f6;
16+
--text-light: #cdd4ea;
1717
--bg-primary: #0f1419;
1818
--bg-secondary: #1a1d29;
1919
--bg-tertiary: #252a3a;
@@ -169,12 +169,12 @@ p {
169169

170170
a {
171171
text-decoration: none;
172-
color: var(--primary-color);
172+
color: var(--primary-light);
173173
transition: all var(--transition-fast);
174174
}
175175

176176
a:hover {
177-
color: var(--primary-dark);
177+
color: #a8b8ff;
178178
}
179179

180180
ul {

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="keywords" content="health economist, HEOR, HTA, market access, economic modeling, health technology assessment">
88
<meta name="author" content="Daniel Ribes">
99
<title>Daniel Ribes - Senior Health Economist | HEOR & Market Access Expert</title>
10-
<link rel="stylesheet" href="css/style.css?v=4">
10+
<link rel="stylesheet" href="css/style.css?v=5">
1111
<link rel="preconnect" href="https://fonts.googleapis.com">
1212
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1313
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700&display=swap" rel="stylesheet">

0 commit comments

Comments
 (0)