Home | History | Annotate | Download | only in themes

Lines Matching defs:hsl

454 bool BrowserThemePack::GetTint(int id, color_utils::HSL* hsl) const {
458 hsl->h = tints_[i].h;
459 hsl->s = tints_[i].s;
460 hsl->l = tints_[i].l;
614 std::map<int, color_utils::HSL> temp_tints;
620 color_utils::HSL hsl = { -1, -1, -1 };
622 if (ValidDoubleValue(tint_list, 0, &hsl.h) &&
623 ValidDoubleValue(tint_list, 1, &hsl.s) &&
624 ValidDoubleValue(tint_list, 2, &hsl.l)) {
627 temp_tints[id] = hsl;
635 for (std::map<int, color_utils::HSL>::const_iterator it =
943 const color_utils::HSL& button_tint,
1036 color_utils::HSL BrowserThemePack::GetTintInternal(int id) const {
1040 color_utils::HSL hsl;
1041 hsl.h = tints_[i].h;
1042 hsl.s = tints_[i].s;
1043 hsl.l = tints_[i].l;
1044 return hsl;