Dav IDE
#6
Hi @aurel. Sorry for the delay.  Here's the PureBasic code where I'm setting the Scintilla colors for Dav's Colors:

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

Find my programs here in Dav's QB64 Corner
Reply


Messages In This Thread
Dav IDE - by aurel - 05-30-2022, 09:01 AM
RE: Dav IDE - by Dav - 05-30-2022, 11:55 PM
RE: Dav IDE - by aurel - 05-31-2022, 08:26 AM
RE: Dav IDE - by Dav - 05-31-2022, 12:06 PM
RE: Dav IDE - by aurel - 06-01-2022, 06:13 AM
RE: Dav IDE - by Dav - 06-02-2022, 12:26 AM
RE: Dav IDE - by aurel - 06-02-2022, 06:27 AM
RE: Dav IDE - by RNBW - 06-03-2022, 05:38 PM
RE: Dav IDE - by Dav - 06-03-2022, 09:44 PM
RE: Dav IDE - by RNBW - 06-04-2022, 11:18 AM
RE: Dav IDE - by Dav - 06-05-2022, 03:52 PM
RE: Dav IDE - by doppler - 06-05-2022, 08:05 PM
RE: Dav IDE - by RNBW - 06-05-2022, 05:22 PM
RE: Dav IDE - by Dav - 06-05-2022, 07:10 PM



Users browsing this thread: 4 Guest(s)