Skip to content

Commit 5be50a4

Browse files
Use pst-color-text-muted (not colorSecodaryDark) (#360)
1 parent 17032db commit 5be50a4

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

assets/theme-css/dark-mode.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
exception is the background: it seems to look better as #111
55
than as --colorPrimaryDark. */
66
--colorBackgroundAlt: var(--colorPrimaryDark);
7-
--colorBackgroundAlt2: var(--colorSecondaryDark);
8-
9-
--colorTextAlt: var(--colorSecondaryLight);
107

118
--colorContentLink: var(--colorPrimaryLight);
129

assets/theme-css/light-mode.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
:root {
33
/* Now we assign those named colors to various purposes. */
44
--colorBackgroundAlt: var(--colorPrimaryDark);
5-
--colorBackgroundAlt2: var(--colorSecondaryDark);
6-
7-
--colorTextAlt: var(--colorSecondaryDark);
85

96
--colorContentLink: var(--colorBrightBlue);
107
--colorHeading: var(--colorPrimaryDark);

assets/theme-css/posts.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ div.post-list {
88
}
99

1010
.post-meta {
11-
color: var(--colorSecondaryDark);
11+
color: var(--pst-color-text-muted);
1212
}
1313

1414
.post-list article {

assets/theme-css/styles.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ body {
77
}
88

99
hr {
10-
background-color: var(--colorSecondaryDark);
10+
background-color: var(--pst-color-text-muted);
1111
}
1212

1313
table th {
14-
color: var(--colorTextAlt);
14+
color: var(--pst-color-text-muted);
1515
}
1616

1717
/**
@@ -306,16 +306,16 @@ nav,
306306
color: var(--pst-color-text-base);
307307
}
308308
.navbar-burger {
309-
color: var(--colorTextAlt);
309+
color: var(--pst-color-text-muted);
310310
}
311311
.navbar-burger:hover {
312312
color: var(--colorPrimaryLight);
313313
}
314314
.navbar-item {
315-
color: var(--colorTextAlt);
315+
color: var(--pst-color-text-muted);
316316
}
317317
.navbar-menu.is-active {
318-
background: var(--colorBackgroundAlt2);
318+
background: var(--pst-color-text-muted);
319319
}
320320

321321
a.navbar-item,

0 commit comments

Comments
 (0)