Wish Custom colors in layouts designer

Serge Bertet

Active Member
Licensed User
Longtime User
I received my app color chart from a graphic designer and I have to apply to all my layouts ... it's painfull ...

It would be great to have custom colors with custom name in the designer's palette.
It could be defined in an .ini, .txt, .xml file in C:\Program Files\Anywhere Software\B4A for example.
Or directly in the designer as is :
wish.png

B4X:
    Public COLOR_BACK As Int = Colors.RGB(3, 125, 154)        ' #037D9A    #FF037D9A
    Public COLOR_FRONT As Int = Colors.RGB(110, 179, 197)     ' #6EB3C5    #FF6EB3C5
    Public COLOR_ACCENT As Int = Colors.RGB(255, 191, 0)      ' #FFBF00    #FFFFBF00
    Public COLOR_TEXT As Int = Colors.White
For now I have to copy / paste constant colors defined in starter service into designer.
 

Cableguy

Expert
Licensed User
Longtime User
I may be wrong but the new DSE feature allows exactly that! You define you colors in code and "tell" the designer script were to use them
 
Top