summaryrefslogtreecommitdiff
path: root/layouts/partials/theme-color.html
blob: 0f624af5a47693869821ebe6637ea7b76c1e0256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ with $.Site.Params.themeColor }}
<style type="text/css">
  .sidebar {
    background-color: {{ . }};
  }

  .read-more-link a {
    border-color: {{ . }};
  }

  footer a,
  .content a,
  .related-posts li a:hover {
    color: {{ . }};
  }
</style>
{{ end }}