Skip to content

Commit 5089a35

Browse files
committed
Improved readability
1 parent 8dcc61f commit 5089a35

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/pages/home/banners/OBBBAHouseholdExplorerBanner.jsx

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function OBBBAHouseholdBanner() {
99
const title = "Explore PolicyEngine's coverage of OBBBA";
1010
const subtitle =
1111
"Use our new dashboard to estimate the " +
12-
"household-level impacts of each party's policy proposals, suggestions, and ideas";
12+
"household-level impacts of the One Big Beautiful Bill Act";
1313
const ctaText = "Explore OBBBA household impacts";
1414
const ctaLink = "/us/obbba-household-explorer";
1515
const ariaLabel =
@@ -43,6 +43,7 @@ export default function OBBBAHouseholdBanner() {
4343
width: "100%",
4444
display: "flex",
4545
backgroundImage: `url(${finalReconciliationImg})`,
46+
backgroundBlendMode: "multiply",
4647
backgroundColor: style.colors.BLUE_LIGHT,
4748
backgroundSize: "cover",
4849
minHeight: "fit-content",
@@ -62,8 +63,10 @@ export default function OBBBAHouseholdBanner() {
6263
margin: "24px",
6364
}}
6465
>
65-
<h3 style={{ color: style.colors.WHITE }}>{title}</h3>
66-
<p style={{ color: style.colors.WHITE }}>{subtitle}</p>
66+
<h3 style={{ color: style.colors.DARK_BLUE_HOVER }}>{title}</h3>
67+
<p style={{ color: style.colors.DARK_BLUE_HOVER, fontWeight: 500 }}>
68+
{subtitle}
69+
</p>
6770
<LinkButton
6871
type="primary"
6972
text={ctaText}
@@ -126,6 +129,7 @@ export default function OBBBAHouseholdBanner() {
126129
position: "relative",
127130
marginBottom: "24px",
128131
backgroundImage: `url(${finalReconciliationImg})`,
132+
backgroundBlendMode: "multiply",
129133
// Fallback
130134
backgroundColor: style.colors.BLUE_LIGHT,
131135
backgroundSize: "cover",
@@ -149,8 +153,10 @@ export default function OBBBAHouseholdBanner() {
149153
margin: "24px",
150154
}}
151155
>
152-
<h3 style={{ color: style.colors.WHITE }}>{title}</h3>
153-
<p style={{ color: style.colors.WHITE }}>{subtitle}</p>
156+
<h3 style={{ color: style.colors.DARK_BLUE_HOVER }}>{title}</h3>
157+
<p style={{ color: style.colors.DARK_BLUE_HOVER, fontWeight: 500 }}>
158+
{subtitle}
159+
</p>
154160
<LinkButton
155161
type="primary"
156162
text={ctaText}

0 commit comments

Comments
 (0)