summaryrefslogtreecommitdiff
path: root/layouts/partials/theme-color.html
diff options
context:
space:
mode:
authorAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-02-10 19:38:11 +0100
committerAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-02-10 19:38:11 +0100
commit6283825517f49afa18b4bb6f1d820a08f8f6e290 (patch)
tree06337007eed707d40f0135b6d36c2f4d20d59d66 /layouts/partials/theme-color.html
parenta56b6f866fe0a9e6aaf3ecaebf43bf3b2a00a88b (diff)
Lanyon update
Diffstat (limited to 'layouts/partials/theme-color.html')
-rw-r--r--layouts/partials/theme-color.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/theme-color.html b/layouts/partials/theme-color.html
new file mode 100644
index 0000000..0f624af
--- /dev/null
+++ b/layouts/partials/theme-color.html
@@ -0,0 +1,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 }}