GUI Themes (Preferences | Coloring)

You need some new stunning features ? Tell us here.
Giorgio
New User
New User
Posts: 3
Joined: Mon Aug 07, 2023 10:05 am

GUI Themes (Preferences | Coloring)

Post by Giorgio »

I like to use dark themes, but all the dark themes available have some problem, like text becoming unreadable in debug mode on breakpoint lines or similar.
Tried to import some coloring theme but couldn't get them to work (did something change in the past and I got old stuff?).
I managed to improve the situation choosing a coloring scheme and changing a few things but it would be better to have a proper "standard" dark coloring theme like I have in vscode.
Any suggestions?
Did I miss something?
Fred
Administrator
Administrator
Posts: 18207
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: GUI Themes (Preferences | Coloring)

Post by Fred »

Unfortunately MS decided to not ship a standard dark mode for all apps, like it's done on MacOS. So every app has to tackle it on their own and it's quite a mess. You can find some dark mode for PB like this one: viewtopic.php?t=78988&hilit=dark+mode
Jeromyal
Enthusiast
Enthusiast
Posts: 216
Joined: Wed Jul 17, 2013 8:49 am

Re: GUI Themes (Preferences | Coloring)

Post by Jeromyal »

I started using solarized-dark a while ago and have never wanted to use anything else ever since.

Code: Select all

; Solarized-Dark
;   Color Theme for PureBasic IDE
;
;   Theme by Ethan Schoonover
;     http://ethanschoonover.com/solarized/
;   Adapted for PB by kenmo-pb
 
[Sections]
IncludeColors = 1
 
[Colors]
ASMKeywordColor = RGB(108, 113, 196)
ASMKeywordColor_Used = 1
BackgroundColor = RGB(0, 43, 54)
BackgroundColor_Used = 1
BasicKeywordColor = RGB(181, 137, 0)
BasicKeywordColor_Used = 1
CommentColor = RGB(88, 110, 117)
CommentColor_Used = 1
ConstantColor = RGB(203, 75, 22)
ConstantColor_Used = 1
LabelColor = RGB(211, 54, 130)
LabelColor_Used = 1
NormalTextColor = RGB(131, 148, 150)
NormalTextColor_Used = 1
NumberColor = RGB(42, 161, 152)
NumberColor_Used = 1
OperatorColor = RGB(131, 148, 150)
OperatorColor_Used = 1
PointerColor = RGB(147, 161, 161)
PointerColor_Used = 1
PureKeywordColor = RGB(38, 139, 210)
PureKeywordColor_Used = 1
SeparatorColor = RGB(131, 148, 150)
SeparatorColor_Used = 1
StringColor = RGB(42, 161, 152)
StringColor_Used = 1
StructureColor = RGB(131, 148, 150)
StructureColor_Used = 1
LineNumberColor = RGB(131, 148, 150)
LineNumberColor_Used = 1
LineNumberBackColor = RGB(7, 54, 66)
LineNumberBackColor_Used = 1
MarkerColor = RGB(131, 148, 150)
MarkerColor_Used = 1
CurrentLineColor = RGB(7, 54, 66)
CurrentLineColor_Used = 1
SelectionColor = RGB(253, 246, 227)
SelectionColor_Used = 1
SelectionFrontColor = RGB(88, 110, 117)
SelectionFrontColor_Used = 1
CursorColor = RGB(131, 148, 150)
CursorColor_Used = 1
Debugger_LineColor = RGB(7, 54, 66)
Debugger_LineColor_Used = 1
Debugger_LineSymbolColor = RGB(211, 54, 130)
Debugger_LineSymbolColor_Used = 1
Debugger_ErrorColor = RGB(7, 54, 66)
Debugger_ErrorColor_Used = 1
Debugger_ErrorSymbolColor = RGB(220, 50, 47)
Debugger_ErrorSymbolColor_Used = 1
Debugger_BreakPointColor = RGB(7, 54, 66)
Debugger_BreakPointColor_Used = 1
Debugger_BreakpoinSymbolColor = RGB(38, 139, 210)
Debugger_BreakpoinSymbolColor_Used = 1
DisabledBackColor = RGB(0, 43, 54)
DisabledBackColor_Used = 1
GoodBraceColor = RGB(147, 161, 161)
GoodBraceColor_Used = 1
BadBraceColor = RGB(220, 50, 47)
BadBraceColor_Used = 1
ProcedureBackColor = RGB(0, 43, 54)
ProcedureBackColor_Used = 1
CustomKeywordColor = RGB(131, 148, 150)
CustomKeywordColor_Used = 1
Debugger_WarningColor = RGB(7, 54, 66)
Debugger_WarningColor_Used = 1
Debugger_WarningSymbolColor = RGB(181, 137, 0)
Debugger_WarningSymbolColor_Used = 1
IndentColor = RGB(220, 50, 47)
IndentColor_Used = 1
ModuleColor = RGB(203, 75, 22)
ModuleColor_Used = 1
SelectionRepeatColor = RGB(7, 54, 66)
SelectionRepeatColor_Used = 1
PlainBackground = RGB(0, 43, 54)
PlainBackground_Used = 1
ToolsPanel_FrontColor = RGB(131, 148, 150)
ToolsPanel_BackColor = RGB(0, 43, 54)
AZJIO
Addict
Addict
Posts: 2187
Joined: Sun May 14, 2017 1:48 am

Re: GUI Themes (Preferences | Coloring)

Post by AZJIO »

Jeromyal wrote: Mon Oct 09, 2023 5:21 pm I started using solarized-dark
viewtopic.php?p=532987#p532987
Giorgio
New User
New User
Posts: 3
Joined: Mon Aug 07, 2023 10:05 am

Re: GUI Themes (Preferences | Coloring)

Post by Giorgio »

Fred wrote: Mon Oct 09, 2023 9:12 am Unfortunately MS decided to not ship a standard dark mode for all apps, like it's done on MacOS. So every app has to tackle it on their own and it's quite a mess. You can find some dark mode for PB like this one: viewtopic.php?t=78988&hilit=dark+mode
Thanks, I'll give a look at it.
Post Reply