Skip to content

Commit

Permalink
Fix the grayness of the content list
Browse files Browse the repository at this point in the history
  • Loading branch information
ktnlvr committed Nov 24, 2024
1 parent cddaadc commit fd4dcce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layouts/partials/content-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{if not .Params.Unlisted}}
<li class="{{if .Draft}}unlisted{{end}}">
<a href="{{.RelPermalink}}" class="article-title">{{.Title}}</a>{{if .Draft}} (draft){{end}} -
{{printf "%s." (strings.Trim .Params.Brief " \t\n")}} <span style="color: var(--gray-color); white-space: nowrap;">
{{printf "%s." (strings.Trim .Params.Brief " \t\n")}} <span style="color: var(--text-faded-color); white-space: nowrap;">
{{.Params.Date.Format "January 2, 2006"}}</span>
</li>
{{end}}
Expand Down
2 changes: 1 addition & 1 deletion static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--text-color-dark: #EEE;
--text-color-light: #0B0C0D;

--text-faded-color-dark: #b3b3b3;
--text-faded-color-dark: #a2a2a2;
--text-faded-color-light: #ababab;

--text-accent-color-dark: #7cc1e6;
Expand Down

0 comments on commit fd4dcce

Please sign in to comment.