From c32c1b12d42f2c5143e340fdf260fe35203be33a Mon Sep 17 00:00:00 2001 From: n1474335 Date: Thu, 10 Aug 2017 11:57:24 +0100 Subject: [PATCH] Updated Creating a new theme (markdown) --- Creating-a-new-theme.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Creating-a-new-theme.md b/Creating-a-new-theme.md index cbab7ac..a674ea5 100644 --- a/Creating-a-new-theme.md +++ b/Creating-a-new-theme.md @@ -16,5 +16,11 @@ It's very easy to add a new theme, there are just a few simple steps: :root.mytheme { ``` - 5. Change the values of the CSS properties to modify the theme to your taste. - 6. [Submit a pull request!](https://github.com/gchq/CyberChef/wiki/Contributing) + 5. Add an import for your theme in `src/web/stylesheets/index.css`. + + ```css + @import "./themes/mytheme.css"; + ``` + + 6. Change the values of the CSS properties to modify the theme to your taste. + 7. [Submit a pull request!](https://github.com/gchq/CyberChef/wiki/Contributing)