From c221186127c47b10a43e2d0bcf30b75970090479 Mon Sep 17 00:00:00 2001 From: chbk Date: Mon, 1 Feb 2021 15:04:46 +0100 Subject: [PATCH] Update template theme paths in "Creating a Theme" --- content/hacking-atom/sections/creating-a-theme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hacking-atom/sections/creating-a-theme.md b/content/hacking-atom/sections/creating-a-theme.md index a5dd9fa865..40f871b332 100644 --- a/content/hacking-atom/sections/creating-a-theme.md +++ b/content/hacking-atom/sections/creating-a-theme.md @@ -36,7 +36,7 @@ Atom will display a new window, showing the motif-syntax theme, with a default s Open up `styles/colors.less` to change the various color variables which have already been defined. For example, turn `@red` into `#f4c2c1`. -Then open `styles/base.less` and modify the various selectors that have already been defined. These selectors style different parts of code in the editor such as comments, strings and the line numbers in the gutter. +Then open `styles/editor.less` and `styles/syntax.less` and modify the various selectors that have already been defined. These selectors style different parts of code in the editor such as keywords, strings, and the line numbers in the gutter. As an example, let's make the `.gutter` `background-color` into `@red`.