You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: set toolbar icon accent color to mauve (#72)
Introduced in Notepad++ v8.8. Latte will use mono-color icons, for
contrast reasons. We are abusing Npp "Dark Mode" feature for a light
mode color scheme.
docs: more detailed UI settings description
Add information about new UI options that Users might optionally want to
enable.
docs: clarify behaviour on older versions
When testing, I didn't get any errors, but Notepad++ did overwrite the
config file (like it does everytime) with only the recognized options.
Copy file name to clipboardExpand all lines: templates/ui.tera
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,25 @@ whiskers:
11
11
Notepad++ has limited support for customizing the UI elements.
12
12
Some elements are controlled by the Windows theme (menu dropdowns, scrollbars, etc.) and can't be changed.
13
13
14
-
You can theme the supported elements by modifying a line in the file `%AppData%/Notepad++/config.xml`.
15
-
Replace the line beginning with `<GUIConfig name="DarkMode">` with the desired flavor.
14
+
Some aspects of the color theme can optionally be enabled in the UI settings dialog:
15
+
- Preferences > Editing 1
16
+
- Apply custom color to selected text foreground
17
+
- Preferences > Editing 2
18
+
- EOL (CRLF) > Custom Color
19
+
- Non-Printing Characters > Appearance > Custom Color
20
+
- Non-Printing Characters > Apply Appearance to C0, C1, EOL
21
+
- Preferences > Toolbar > Pick an icon theme
22
+
- Pick "Complete" or "Partial" Colorization
23
+
- Color choice > Custom
24
+
- Preferences > Margins/Border/Edge > Pick what you like
16
25
17
-
> [!NOTE]
26
+
You can theme the UI elements by modifying a line in the config file (Default: `%AppData%/Notepad++/config.xml`)
27
+
28
+
Replace the line beginning with `<GUIConfig name="DarkMode" ...>` with the desired flavor.
29
+
30
+
Some options may not be available in older versions of Notepad++. If you recently updated, add this line to the config again, as older versions will delete unused properties.
31
+
32
+
> [!WARNING]
18
33
> You cannot use Notepad++ to make this change, as it will overwrite any changes to `config.xml` when closing.
19
34
20
35
{% for id, flavor in flavors -%}
@@ -23,7 +38,7 @@ Replace the line beginning with `<GUIConfig name="DarkMode">` with the desired f
0 commit comments