summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordigitalcraftsman <Unknown>2015-06-02 19:14:54 +0200
committerdigitalcraftsman <Unknown>2015-06-02 19:14:54 +0200
commit00eb7169f6062b041e4aa8402b96fce39ce0aa16 (patch)
tree795857a93985dae64909e7a087863fb80e966a58 /README.md
parent1a7140a4d7fd4b5834178c721fdb636e96db2dd6 (diff)
Added an option change the theme globally in the configs
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 14 insertions, 5 deletions
diff --git a/README.md b/README.md
index 2502796..3233a15 100644
--- a/README.md
+++ b/README.md
@@ -60,12 +60,21 @@ There are eight themes available at this time.
![Hyde theme classes](https://f.cloud.github.com/assets/98681/1817044/e5b0ec06-6f68-11e3-83d7-acd1942797a1.png)
-To use a theme, add anyone of the available theme classes to the `<body>` element in the `default.html` layout, like so:
+To use a theme, add the `themeColor` variable under `params``, like so:
-```html
-<body class="theme-base-08">
- ...
-</body>
+**TOML**
+```toml
+theme = "hyde"
+
+[params]
+ themeColor = "theme-base-09"
+```
+
+**YAML**
+```
+theme: "hyde"
+params:
+ themeColor: "theme-base-09"
```
To create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/hyde/blob/master/public/css/hyde.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.