Hi @aurel. Sorry for the delay. Here's the PureBasic code where I'm setting the Scintilla colors for Dav's Colors:
That probably isn't too helpful for you, but here are the default 'Dav's IDE' colors and 'Dav's Colors' scheme setting for the QB64 IDE.
Finally, here's the 'Dav's Colors' (R,G,B) colors for each item:
Normal text: (205,218,243)
Keywords: (86,165,236)
Numbers: (255,255,255)
Strings: (100,200,150)
Metacommand/custom keywords: (86,165,236)
Comments: (97,121,159)
Background: (33,50,69)
Current line background: (47,64,91)
Bracket/selection highlight: (51,153,255)
- Dav
Code: (Select All)
If colors_davstyle = 1
;Set individual styles for commands.
GOSCI_SetStyleFont(#EDIT1, #STYLES_COMMANDS, "", -1)
GOSCI_SetStyleColors(#EDIT1, #STYLES_COMMANDS, RGB(86,165,236))
;Set individual styles for comments.
GOSCI_SetStyleColors(#EDIT1, #STYLES_COMMENTS, RGB(97,121,159))
;Set individual styles for literal strings.
GOSCI_SetStyleColors(#EDIT1, #STYLES_LITERALSTRINGS, RGB(100,200,150))
;Set individual styles for numbers.
GOSCI_SetStyleColors(#EDIT1, #STYLES_NUMBERS, #White)
;Set individual styles for constants.
GOSCI_SetStyleColors(#EDIT1, #STYLES_CONSTANTS, RGB(205,218,243))
;Set individual styles for functions.
GOSCI_SetStyleColors(#EDIT1, #STYLES_FUNCTIONS, RGB(86,165,236))
;Set individual styles for separators.
GOSCI_SetStyleColors(#EDIT1, #STYLES_SEPARATORS, #White)
;Set individual styles for operators.
GOSCI_SetStyleColors(#EDIT1, #STYLES_OPERATORS, RGB(205,218,243))
EndIf
That probably isn't too helpful for you, but here are the default 'Dav's IDE' colors and 'Dav's Colors' scheme setting for the QB64 IDE.
Code: (Select All)
'[IDE COLOR SCHEMES]
Scheme2$ = "Davs Colors|205218243086165236255255255100200150086165236097121159033050069047064091051153255"
Scheme1$ = "Dav's IDE|255255255255255000255255128128255255255255000128255128000064064010074074128255128"
Finally, here's the 'Dav's Colors' (R,G,B) colors for each item:
Normal text: (205,218,243)
Keywords: (86,165,236)
Numbers: (255,255,255)
Strings: (100,200,150)
Metacommand/custom keywords: (86,165,236)
Comments: (97,121,159)
Background: (33,50,69)
Current line background: (47,64,91)
Bracket/selection highlight: (51,153,255)
- Dav