Power Apps is an impressive platform, but let's be honest, it's not easy to make a good-looking application using ootb controls. This Component Library contains a set of components to help you, making nice applications, in no time.
Build a tailored Color Palette from a single Hex Color Code.
The Component generates a set of 4 standard colors:
- Main: Main (accent) color for your app; path:
Component.Colors.main
, - Alternate: (light) Subtle color, less bold than the Main color; path:
Component.Colors.alt
, - Tertiary: (dark) Strong and darker version of the Main color; path:
Component.Colors.ter
, - Background: (very light) Very faded version of the Main color, to use as backgrounds; path:
Component.Colors.back
.
Once you have called the Component's Create()
Action, you can refer the color palette in two ways:
- For smaller apps, directly refer to the component:
Component.Colors.main.Color
, - For bigger apps, you might want to store the palette in a static variable
Set( Palette, Component.Colors );
and call that variable instead of calling the component itself.