Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 746 Bytes

File metadata and controls

35 lines (25 loc) · 746 Bytes

Theming

Table of Contents

Be sure to check out these related topics:

TODO: Add links to these other folders in this repo: /Colors, /Color Palettes, /Color Resources, /Color Functions

Pass in a color value and get the hex value back.

fxGetHexFromColor(ColorValue:Color):Text = Left(
    Substitute(
        JSON(ColorValue, JSONFormat.Compact), 
        """",
        ""
    ), 
    7
);

History

Date Author Changes
2026-01-27 Migration Initial TOC and history section added