Skip to content

Commit 6774680

Browse files
committed
blue nova seconday color
1 parent ed7ffe3 commit 6774680

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/css/custom.css

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,7 @@
2222
:root {
2323
--doc-sidebar-width: 350px !important;
2424
--ifm-color-primary: var(--replicated-red);
25-
/* 10% darker */
26-
--ifm-color-primary-dark: #e6414d;
27-
/* 20% darker */
28-
--ifm-color-primary-darker: #cc3a45;
29-
/* 30% darker */
30-
--ifm-color-primary-darkest: #b3323c;
31-
/* 10% lighter */
32-
--ifm-color-primary-light: #ff5a67;
33-
/* 20% lighter */
34-
--ifm-color-primary-lighter: #ff6d78;
35-
/* 30% lighter */
36-
--ifm-color-primary-lightest: #ff7f89;
25+
--ifm-color-primary-dark: var(--replicated-red-dark);
3726
--ifm-code-font-size: 95%;
3827
--ifm-font-family-base: 'Open Sans';
3928
--ifm-heading-font-family: 'Poppins', sans-serif;
@@ -56,4 +45,7 @@
5645
--leaf-byte: #37cc97;
5746
--canary-beam: #ffed58;
5847
--solar-flare: #ff934e;
48+
/* shades */
49+
--replicated-red-dark: #e6414d;
50+
--blue-nova-dark: #2657b7;
5951
}

src/css/homepage.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
}
158158

159159
.whats-new-hero {
160-
background: var(--ifm-color-primary);
160+
background: var(--blue-nova);
161161
color: white;
162162
padding: 32px;
163163
border-radius: 12px;
@@ -191,9 +191,13 @@
191191
}
192192

193193
.did-you-know-badge {
194-
background: var(--ifm-color-primary);
194+
background: var(--blue-nova);
195195
color: white;
196196
}
197+
198+
.did-you-know-card a {
199+
color: var(--blue-nova);
200+
}
197201

198202
/* Browse documentation section styles */
199203

@@ -253,7 +257,11 @@
253257

254258
/* Dark mode styles for landing page */
255259
html[data-theme='dark'] {
256-
.whats-new-hero, .did-you-know-badge, .hero-button {
260+
.whats-new-hero, .did-you-know-badge {
261+
background: var(--blue-nova-dark);
262+
}
263+
264+
.hero-button {
257265
background: var(--ifm-color-primary-dark);
258266
}
259267

0 commit comments

Comments
 (0)