SciTE4AutoHotkey Themes

The popular SciTE-based AutoHotkey Script Editor
LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

Re: SciTE4AutoHotkey Themes

Post by LAPIII » 05 Jan 2022, 18:48

I can't find it either:

C:\Users\LPIII\Documents\AutoHotkey\SciTE

Image

C:\Program Files\AutoHotkey\SciTE

Image

User avatar
joedf
Posts: 8949
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: SciTE4AutoHotkey Themes

Post by joedf » 05 Jan 2022, 22:52

I see them... :ugeek:

Code: Select all

C:\Users\LPIII\Documents\AutoHotkey\SciTE\SciTEUser.properties
C:\Program Files\AutoHotkey\SciTE\SciTEGlobal.properties
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

Re: SciTE4AutoHotkey Themes

Post by LAPIII » 06 Jan 2022, 13:23

I just edited User properties in SciTE4AutoHotkey. The files and folders they weren't read only and I don't know why I couldn't edit them. Anyway, what does this do:

Code: Select all

line.margin.visible=1
It didn't do anything. In your themes, Darchon and Monokai, how did you get the line number column color different? I think I want to make a theme, how do I get started?

User avatar
joedf
Posts: 8949
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: SciTE4AutoHotkey Themes

Post by joedf » 06 Jan 2022, 16:56

LAPIII wrote:
04 Jan 2022, 17:15
Can the line number panel be turned black?
Oh my bad! :shock: I read your original question as "Can the line number panel be turned back on?"
WHOOPS!

It show/hides the line numbers, but since they are already enabled by default... it appears as nothing happens... Anyway! let us focus on the colors! :mrgreen:
My theme file for Monokai is fully commented. It has the following:

Code: Select all

# Line Number Margin
style.*.33=$(font.normal),fore:#EEEEEC,back:#34352D
line.margin.width=4
You can change the back:#****** to back:#000000 and it should turn to black.
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
zabbn
Posts: 48
Joined: 30 Apr 2020, 03:34
Location: Germany

Re: SciTE4AutoHotkey Themes

Post by zabbn » 16 May 2022, 04:16

Hi and sorry for unburying this...
Since the last update of ScitTE, something is broken with the Darchon style and I can't seem to understand how to change this. After the update, the highlighted line's background is white (other then dark grey. before).
Spoiler
Is there a single parameter that can change this?

User avatar
joedf
Posts: 8949
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: SciTE4AutoHotkey Themes

Post by joedf » 16 May 2022, 09:49

I am not sure if its the caret.line.back.alpha is broken... @fincs or different now ?
@zabbn but for now you can change this in theme file to this caret.line.back=#363D44
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
fincs
Posts: 527
Joined: 30 Sep 2013, 14:17
Location: Seville, Spain
Contact:

Re: SciTE4AutoHotkey Themes

Post by fincs » 16 May 2022, 10:43

It does not look like caret.line.back.alpha is a property that exists, according to SciTEDoc. On the other hand, caret.line.back accepts an alpha component (i.e. after rgb). The default value for it in S4AHK is caret.line.back=#00FF0020. This seems to work well for both Light and Dark themes. In general, setting properties outside those used in the default styles that come with S4AHK is considered "undefined behaviour" and might be broken in future releases of S4AHK.
fincs
Windows 11 Pro (Version 22H2) | AMD Ryzen 7 3700X with 32 GB of RAM | AutoHotkey v2.0.0 + v1.1.36.02
Get SciTE4AutoHotkey v3.1.0 - [My project list]

User avatar
joedf
Posts: 8949
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: SciTE4AutoHotkey Themes

Post by joedf » 16 May 2022, 13:42

Great, thanks for clearing that up fincs!

@zabbn In that case,

You can simply replace this:

Code: Select all

caret.line.back=#FFFFFF
caret.line.back.alpha=20
with

Code: Select all

caret.line.back=#FFFFFF14
I've submitted a pull request for this: https://github.com/ahkon/Darchon/pull/1
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
zabbn
Posts: 48
Joined: 30 Apr 2020, 03:34
Location: Germany

Re: SciTE4AutoHotkey Themes

Post by zabbn » 17 May 2022, 05:44

Wow that's great thank you both fincs and joedf!
It worked flawlessly, I used an alpha of 30 in the end.

phazei
Posts: 3
Joined: 15 Nov 2022, 19:40

Re: SciTE4AutoHotkey Themes

Post by phazei » 16 Nov 2022, 01:51

Is there a way to change the tab color? I ask because I can't visually see the difference between the selected tab and the unselected tab, so I keep losing my place.

phazei
Posts: 3
Joined: 15 Nov 2022, 19:40

Re: SciTE4AutoHotkey Themes

Post by phazei » 16 Nov 2022, 02:05

Maybe I missed it, but these themes all only change the editor portion, right?

Is there any way to change the toolbar and tab background/text colors?

Really just the "active" tab color. I'm having an accessibility issue where I can't tell which tab is active because the color is so similar so I keep losing my place. Thanks

User avatar
joedf
Posts: 8949
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: SciTE4AutoHotkey Themes

Post by joedf » 16 Nov 2022, 08:14

I'm not sure you can change the ui colours unless you change the windows themes...
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

raymm3852
Posts: 1
Joined: 22 May 2019, 12:57

Make active tab red, bold, larger text

Post by raymm3852 » 04 Apr 2024, 18:42

I am looking to looking to change the visual style of the tabs (such as color, font, or size) within SciTE4AutoHotkey.

The current display of tabs shows text that is too small.

I'd like to make it larger and bold when the tab is active.

Also, I'd like to make the currently activated tab red.

My eyes are dim, I cannot see.
I have not brought my specs with me.

Post Reply

Return to “SciTE4AutoHotkey”