<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Change colour of highlight in picklist]]></title><description><![CDATA[<p dir="auto">Hey, does anyone know how to change the colour of the highlighted line in a picklist? In the image below, “lil” is highlighted but it’s so close to the background colour, it’s not visible. I’ve been through the style config multiple times but can’t see which setting it might be. If I change the theme, the background and highlight change so it must be configurable? 🤷‍♂️</p>
<p dir="auto"><img src="/assets/uploads/files/1675770007744-zpsel4q.png" alt="ZPSeL4Q.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/topic/24107/change-colour-of-highlight-in-picklist</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Jul 2026 19:51:53 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/24107.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Feb 2023 11:39:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Change colour of highlight in picklist on Thu, 16 Feb 2023 13:44:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dinkumoil" aria-label="Profile: dinkumoil">@<bdi>dinkumoil</bdi></a> said in <a href="/post/84186">Change colour of highlight in picklist</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michael-vincent" aria-label="Profile: Michael-Vincent">@<bdi>Michael-Vincent</bdi></a><br />
Do you know the version of Scintilla (or rather the version of Notepad++) that introduced this feature?</p>
</blockquote>
<p dir="auto">Looking at <a href="https://www.scintilla.org/ScintillaHistory.html" rel="nofollow ugc">https://www.scintilla.org/ScintillaHistory.html</a>, it seems version 5.0.1:</p>
<blockquote>
<p dir="auto">Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements. Implement SC_ELEMENT_LIST* to change colours of autocompletion lists.</p>
</blockquote>
<p dir="auto">which methinks corresponds to Notepad++ 8.4:</p>
<p dir="auto"><a href="https://notepad-plus-plus.org/downloads/v8.4/" rel="nofollow ugc">https://notepad-plus-plus.org/downloads/v8.4/</a></p>
<blockquote>
<p dir="auto">Update Scintilla from v4.4.6 to v5.2.1 and add Lexilla v5.1.5. (Fix #10504)</p>
</blockquote>
<p dir="auto">Cheers.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84190</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84190</guid><dc:creator><![CDATA[Michael Vincent]]></dc:creator><pubDate>Thu, 16 Feb 2023 13:44:38 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Thu, 16 Feb 2023 08:01:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> said in <a href="/post/84111">Change colour of highlight in picklist</a>:</p>
<blockquote>
<p dir="auto">can that be added to your ExtSettings plugin?</p>
</blockquote>
<p dir="auto">I have put it on my todo list.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michael-vincent" aria-label="Profile: Michael-Vincent">@<bdi>Michael-Vincent</bdi></a></p>
<p dir="auto">Do you know the version of <em>Scintilla</em> (or rather the version of <em>Notepad++</em>) that introduced this feature?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84186</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84186</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Thu, 16 Feb 2023 08:01:45 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Mon, 13 Feb 2023 18:36:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michael-vincent" aria-label="Profile: Michael-Vincent">@<bdi>Michael-Vincent</bdi></a> said in <a href="/post/84110">Change colour of highlight in picklist</a>:</p>
<blockquote>
<p dir="auto">but it can be changed with a plugin</p>
</blockquote>
<p dir="auto">I didn’t know that.  Cool.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dinkumoil" aria-label="Profile: dinkumoil">@<bdi>dinkumoil</bdi></a> , can that be added to your ExtSettings plugin?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84111</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84111</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Mon, 13 Feb 2023 18:36:22 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Mon, 13 Feb 2023 18:31:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> said in <a href="/post/84109">Change colour of highlight in picklist</a>:</p>
<blockquote>
<p dir="auto">The calculation is not user-configurable, as far as I know.</p>
</blockquote>
<p dir="auto">Correct, but it can be changed with a plugin (e.g., PythonScript):</p>
<pre><code>from Npp import editor, ELEMENT

editor.setElementColour(ELEMENT.LIST_SELECTED_BACK, (0  , 64 , 255, 255))
</code></pre>
<p dir="auto">That is a blue color with alpha opaque - need the latest PS3 for the alpha bit, otherwise, just drop the last <code>255</code> from the tuple.</p>
<p dir="auto">Cheers.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84110</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84110</guid><dc:creator><![CDATA[Michael Vincent]]></dc:creator><pubDate>Mon, 13 Feb 2023 18:31:20 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Mon, 13 Feb 2023 18:13:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dave-hope" aria-label="Profile: Dave-Hope">@<bdi>Dave-Hope</bdi></a> said in <a href="/post/84108">Change colour of highlight in picklist</a>:</p>
<blockquote>
<p dir="auto">Hey, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a> 👋 Select theme says “Default (stylers.xml)” but I’m sure I used to be using Deep Black. If I switch to that, it looks (almost) identical but the font size is different.</p>
</blockquote>
<p dir="auto">You are <em>not</em> using <code>Default (stylers.xml)</code> in that screenshot, unless you very much modified the default theme yourself.  Are you sure that screenshot wasn’t from Deep Black or the DarkModeDefault?</p>
<blockquote>
<p dir="auto">I’m just looking for the setting to change the style of the highlight if you happen to know which one it is? 😊</p>
</blockquote>
<p dir="auto">It’s not as simple as that.  Experimentally: If the main theme’s background is white, then the “picklist highlighted/active” is blue.  If the main theme has a different color, then the “picklist hightlighted/active” matches the main background, and the inactive picklist items have a background that is a little darker or a little lighter than the theme background (“little” means it changes R,G, and B values by ~20 each, if possible, without going below 0 or above 255).  The calculation is not user-configurable, as far as I know.</p>
<p dir="auto">I could have sworn there were issues reported about such things, but I couldn’t find them when I searched last week – maybe it was the panel background contrast, rather than the auto-completion picklist.  But yes, I agree, with a dark background, the picklist contrast isn’t very helpful.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84109</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84109</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Mon, 13 Feb 2023 18:13:28 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Mon, 13 Feb 2023 16:24:45 GMT]]></title><description><![CDATA[<p dir="auto">Hey, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a> 👋 Select theme says “Default (stylers.xml)” but I’m sure I used to be using Deep Black. If I switch to that, it looks (almost) identical but the font size is different.</p>
<p dir="auto">I’m just looking for the setting to change the style of the highlight if you happen to know which one it is? 😊</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84108</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84108</guid><dc:creator><![CDATA[Dave Hope]]></dc:creator><pubDate>Mon, 13 Feb 2023 16:24:45 GMT</pubDate></item><item><title><![CDATA[Reply to Change colour of highlight in picklist on Tue, 07 Feb 2023 12:28:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dave-hope" aria-label="Profile: Dave-Hope">@<bdi>Dave-Hope</bdi></a></p>
<p dir="auto">It might be helpful to know which theme you are using.  And, BTW, unfortunately, themes aren’t well-maintained.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/83946</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/83946</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 07 Feb 2023 12:28:23 GMT</pubDate></item></channel></rss>