
Creator II
2017-12-05
03:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ColorMix1 with hex color?
Is it possible? Something like this:
ColorMix1($(some_variable), white(), '#4477aa')
I don't know what the correct syntax is, but the above does not work.
1,601 Views
2 Replies

Partner - Champion III
2017-12-05
04:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can do this:
ColorMix1( $(some_variable) , white() , Num#( '4477aa' , '(HEX)' ) )
1,446 Views

Creator II
2017-12-06
12:17 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That sort of works, but the result looks glitched out as shown in the screenshot below.
The left column's background color formula is:
ColorMix1(Expression3, white() , rgb(68, 119, 170))
The right's color formula is:
ColorMix1(Expression3, white() , Num#('4477aa', '(HEX)'))
