aboutsummaryrefslogtreecommitdiffhomepage
path: root/css/theme/README.md
diff options
context:
space:
mode:
authorHakim El Hattab2013-10-22 05:27:50 -0700
committerHakim El Hattab2013-10-22 05:27:50 -0700
commit1b0673d98e7872066a5bae0e45719e46b364c598 (patch)
treece8c07dbb5eb58b52210138ac01e8e5e44b8b22a /css/theme/README.md
parent9cf7de54b8fb6bdad1342d087adfeea94604a674 (diff)
parent3c2d39411249e51c47b9e9dfa72d66509281d5f7 (diff)
Merge pull request #664 from vertti/patch-1
add details to README on creating themes
Diffstat (limited to 'css/theme/README.md')
-rw-r--r--css/theme/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/css/theme/README.md b/css/theme/README.md
index 28ded29..8237586 100644
--- a/css/theme/README.md
+++ b/css/theme/README.md
@@ -2,7 +2,7 @@
Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup
-
+You also need to install Ruby and then Sass (with `gem install sass`).
## Creating a Theme
@@ -21,3 +21,5 @@ This is where you override the default theme. Either by specifying variables (se
4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
The template theme file which will generate final CSS output based on the currently defined variables.
+
+When you are done, run `grunt themes` to compile the Sass file to CSS and you are ready to use your new theme.