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

github.com/bake/solar-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbake <bake@192k.pw>2019-05-26 00:58:56 +0300
committerbake <bake@192k.pw>2019-05-26 00:58:56 +0300
commit67fb222ddfd0bb65cffa00e5239b15a24aaf19aa (patch)
tree031cfe8bd1a6d55c8719760dc13778cb8c36166a
parent1c1537d9cef8efa7848b6fbb8f36690a8bdf99f4 (diff)
Change default color scheme to "dark"
-rw-r--r--README.md6
-rw-r--r--exampleSite/config.toml2
-rw-r--r--images/screenshot.pngbin168515 -> 119900 bytes
-rw-r--r--images/tn.pngbin72419 -> 60565 bytes
-rw-r--r--layouts/partials/header.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 8b98a12..07d6faa 100644
--- a/README.md
+++ b/README.md
@@ -3,9 +3,9 @@
A minimalistic theme for [Hugo](https://gohugo.io/) blogs, fork of
[Solar Theme for Ghost](https://github.com/mattvh/solar-theme-ghost).
-It offers three color schemes: (Monokai) `light`, (Monokai) `dark` and `gray`
-(default). Additional HTML can be injected just before `</head>` and `</body>`
-by creating a `head.html` or `foot.html` inside `layouts/partials/`. The default
+It offers three color schemes: (Monokai) `light`, (Monokai) `dark` (default) and
+`gray`. Additional HTML can be injected just before `</head>` and `</body>` by
+creating a `head.html` or `foot.html` inside `layouts/partials/`. The default
(empty) logo can be overwritten by creating a `logo.svg` in `static/img/`.
## Screenshot
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 42ba24b..ee82245 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -3,7 +3,7 @@ theme = "solar-theme-hugo"
paginate = 5
[params]
- scheme = "gray"
+ scheme = "dark" # light, dark or gray
description = "A wizard is never late"
[menu]
diff --git a/images/screenshot.png b/images/screenshot.png
index 4911b31..d891d4f 100644
--- a/images/screenshot.png
+++ b/images/screenshot.png
Binary files differ
diff --git a/images/tn.png b/images/tn.png
index 82748d2..db7c3ad 100644
--- a/images/tn.png
+++ b/images/tn.png
Binary files differ
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index b249167..4766d1b 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -11,7 +11,7 @@
{{ end }}
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/hybrid.css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
- <link rel="stylesheet" href="{{ .Site.BaseURL }}css/colors-{{ .Site.Params.scheme | default "gray" }}.css">
+ <link rel="stylesheet" href="{{ .Site.BaseURL }}css/colors-{{ .Site.Params.scheme | default "dark" }}.css">
{{ partial "head.html" . }}
</head>