Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/theme-colors.css')
-rw-r--r--layouts/partials/theme-colors.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/layouts/partials/theme-colors.css b/layouts/partials/theme-colors.css
new file mode 100644
index 0000000..d1f03d0
--- /dev/null
+++ b/layouts/partials/theme-colors.css
@@ -0,0 +1,62 @@
+body {
+ background-color: {{ .Param "colors.background" }};
+ color: {{ .Param "colors.text" }};
+}
+
+a { color: {{ .Param "colors.text" }}; }
+
+pre {
+ background: {{ .Param "colors.code-back" }};
+ border: 1px solid {{ .Param "colors.text" }};
+ border-radius: 5px;
+}
+
+code {
+ background: {{ .Param "colors.code-back" }};
+}
+
+blockquote {
+ background: {{ .Param "colors.code-back" }};
+ border-left: 3px solid {{ .Param "colors.text" }};
+}
+
+table {
+ margin: 1em auto;
+ border-collapse: collapse;
+}
+
+table, th, td {
+ border: 1px solid {{ .Param "colors.text" }};
+}
+
+th {
+ background: {{ .Param "colors.text" }};
+ color: {{ .Param "colors.background" }};
+}
+
+.siteTitle a { color: {{ .Param "colors.main" }}; }
+
+.post .content h1{ color: {{ .Param "colors.main" }}; }
+.post .content h2{ color: {{ .Param "colors.main" }}; }
+.post .content h3{ color: {{ .Param "colors.main" }}; }
+.post .content h4{ color: {{ .Param "colors.main" }}; }
+.post .content h5{ color: {{ .Param "colors.main" }}; }
+.post .content h6{ color: {{ .Param "colors.main" }}; }
+.post .content a:hover { color: {{ .Param "colors.main" }}; }
+.social-link:hover { color: {{ .Param "colors.main" }}; }
+.nav-item-title:hover { color: {{ .Param "colors.main" }}; }
+.tag a:hover { color: {{ .Param "colors.main" }}; }
+.copyright { color: {{ .Param "colors.copyright" }} }
+.poweredby { color: {{ .Param "colors.copyright" }} }
+.poweredby a { color: {{ .Param "colors.copyright" }}; }
+.post-preview .title a{ color: {{ .Param "colors.main" }}; }
+.content-item a:hover{
+ text-decoration: underline;
+ color: {{ .Param "colors.main" }};
+}
+.post-list .title { color: {{ .Param "colors.main" }}; }
+.rmore { color: {{ .Param "colors.main" }}; }
+.terms .term a:hover {
+ text-decoration: underline;
+ color: {{ .Param "colors.main" }};
+}