| 634 | } |
| 635 | |
| 636 | double GetLum(const HighlightColorInfo &input) { |
| 637 | return sqrt(0.241 * input.r + 0.691 * input.g + 0.068 * input.b); |
| 638 | } |
| 639 | |
| 640 | idx_t FindColorGroup(const vector<vector<string>> &groups, const string &name) { |
| 641 | optional_idx group_idx; |