HomeSort by relevance Sort by last modified time
    Searched full:hsl (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium/chrome/browser/resources/shared/css/
list.css 42 border-color: hsl(214, 91%, 65%);
53 border-color: hsl(214, 91%, 85%);
55 background-color: hsl(214, 91%, 97%);
60 border-color: hsl(0, 0%, 85%);
61 background-color: hsl(0,0%,90%);
69 background-color: hsl(214,91%,89%);
70 border-color: hsl(214, 91%, 65%);
77 background-color: hsl(214, 91%, 87%);
78 border-color: hsl(214, 91%, 65%);
table.css 6 border-color: hsl(214, 91%, 65%);
11 background-color: hsl(214,91%,89%);
12 border-color: hsl(214, 91%, 65%);
17 background-color: hsl(214, 91%, 87%);
18 border-color: hsl(214, 91%, 65%);
tree.css 59 border-color: hsl(214, 91%, 85%);
61 background-color: hsl(214, 91%, 97%);
77 border-color: hsl(0,0%,85%);
78 background-color: hsl(0, 0%, 90%);
84 background-color: hsl(214, 91%, 89%);
  /external/chromium-trace/src/shared/css/
list.css 45 border-color: hsl(214, 91%, 65%);
56 background-color: hsl(214, 91%, 97%);
57 border-color: hsl(214, 91%, 85%);
63 background-color: hsl(0, 0%, 90%);
66 border-color: hsl(0, 0%, 85%);
72 background-color: hsl(214, 91%, 89%);
73 border-color: hsl(214, 91%, 65%);
80 background-color: hsl(214, 91%, 87%);
81 border-color: hsl(214, 91%, 65%);
table.css 12 border-color: hsl(214, 91%, 65%);
17 background-color: hsl(214,91%,89%);
18 border-color: hsl(214, 91%, 65%);
23 background-color: hsl(214, 91%, 87%);
24 border-color: hsl(214, 91%, 65%);
tree.css 62 background-color: hsl(214, 91%, 97%);
63 border-color: hsl(214, 91%, 85%);
80 background-color: hsl(0, 0%, 90%);
81 border-color: hsl(0, 0%, 85%);
87 background-color: hsl(214, 91%, 89%);
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 52 border-color: hsl(214, 91%, 85%);
53 background-color: hsl(214, 91%, 97%);
59 background-color: hsl(214,91%,89%);
60 border-color: hsl(214, 91%, 65%);
64 background-color: hsl(214, 91%, 87%);
65 border-color: hsl(214, 91%, 65%);
69 background-color: hsl(214, 91%, 97%);
70 border-color: hsl(214, 91%, 85%);
accounts_options_page.css 59 border-color: hsl(0, 0%, 85%);
64 background-color: hsl(0,0%,90%);
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 11 color: hsl(213, 90%, 24%);
61 border: 3px solid hsl(213, 60%, 92%);
68 background-color: hsl(213, 60%, 92%);
81 background: hsl(213, 54%, 95%);
102 background-color: hsl(213, 66%, 57%);
103 background-image: -webkit-linear-gradient(hsl(213, 87%, 67%),
104 hsl(213, 66%, 57%));
175 border: 3px solid hsl(213, 63%, 93%);
195 border-color: hsl(213, 66%, 57%);
210 background-color: hsl(213, 66%, 57%)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Color.js 87 get hsl()
96 set hsl(x)
152 case "hsl":
153 var hsl = this.hsl;
154 return "hsl(" + hsl[0] + ", " + hsl[1] + "%, " + hsl[2] + "%)";
230 _hslToRGB: function(hsl)
    [all...]
  /external/chromium/chrome/browser/themes/
theme_service.cc 55 color_utils::HSL result;
109 const color_utils::HSL kDefaultTintButtons = { -1, -1, -1 };
110 const color_utils::HSL kDefaultTintFrame = { -1, -1, -1 };
111 const color_utils::HSL kDefaultTintFrameInactive = { -1, -1, 0.75f };
112 const color_utils::HSL kDefaultTintFrameIncognito = { -1, 0.2f, 0.35f };
113 const color_utils::HSL kDefaultTintFrameIncognitoInactive = { -1, 0.3f, 0.6f };
114 const color_utils::HSL kDefaultTintBackgroundTab = { -1, 0.5, 0.75 };
432 color_utils::HSL ThemeService::GetDefaultTint(int id) {
447 color_utils::HSL result = {-1, -1, -1};
540 color_utils::HSL ThemeService::GetTint(int id) const
543 color_utils::HSL hsl; local
    [all...]
browser_theme_pack.cc 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 }; local
622 if (ValidDoubleValue(tint_list, 0, &hsl.h) &&
623 ValidDoubleValue(tint_list, 1, &hsl.s) &
1040 color_utils::HSL hsl; local
    [all...]
browser_theme_pack.h 68 bool GetTint(int id, color_utils::HSL* hsl) const;
147 void GenerateTintedButtons(const color_utils::HSL& button_tint,
170 color_utils::HSL GetTintInternal(int id) const;
theme_service_mac.mm 20 void HSLToHSB(const color_utils::HSL& hsl, CGFloat* h, CGFloat* s, CGFloat* b) {
21 SkColor color = color_utils::HSLToSkColor(hsl, 255); // alpha doesn't matter
148 color_utils::HSL tint;
theme_service.h 27 struct HSL;
205 static color_utils::HSL GetDefaultTint(int id);
225 color_utils::HSL GetTint(int id) const;
browser_theme_pack_unittest.cc 159 color_utils::HSL expected = { 0.6, 0.553, 0.5 };
160 color_utils::HSL actual;
269 color_utils::HSL expected = { 0.5, 0.5, 0.5 };
270 color_utils::HSL actual = { -1, -1, -1 };
337 color_utils::HSL actual = { -1, -1, -1 };
  /external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.h 147 typedef std::map<int, color_utils::HSL> TintMap;
189 const color_utils::HSL& tint,
217 const color_utils::HSL& tint) const;
221 void GetNormalButtonTintHSL(color_utils::HSL* tint) const;
224 void GetNormalEntryForegroundHSL(color_utils::HSL* tint) const;
228 void GetSelectedEntryForegroundHSL(color_utils::HSL* tint) const;
270 color_utils::HSL button_tint_;
271 color_utils::HSL entry_tint_;
272 color_utils::HSL selected_entry_tint_;
gtk_theme_service.cc 53 const color_utils::HSL kGtkFrameShift = { -1, -1, 0.58 };
57 const color_utils::HSL kDefaultFrameShift = { -1, -1, 0.4 };
143 color_utils::HSL* tint) {
145 color_utils::HSL accent_tint;
148 color_utils::HSL text_tint;
151 color_utils::HSL background_tint;
154 // If the accent color is gray, then our normal HSL tomfoolery will bring out
234 // Applies an HSL shift to a GdkColor (instead of an SkColor)
235 void GdkColorHSLShift(const color_utils::HSL& shift, GdkColor* frame_color) {
720 color_utils::HSL inactive_tab_text_hsl = tints_[TINT_BACKGROUND_TAB]
876 color_utils::HSL hsl; local
877 color_utils::SkColorToHSL(GdkToSkColor(color), &hsl); local
    [all...]
browser_titlebar.cc 109 // Converts a GdkColor to a color_utils::HSL.
110 color_utils::HSL GdkColorToHSL(const GdkColor* color) {
111 color_utils::HSL hsl; local
114 color->blue >> 8), &hsl);
115 return hsl;
124 color_utils::HSL baseHSL = GdkColorToHSL(base);
125 color_utils::HSL oneHSL = GdkColorToHSL(one);
126 color_utils::HSL twoHSL = GdkColorToHSL(two);
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
recently_closed.css 50 color: hsl(213, 90%, 24%) !important;
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 21 color: hsl(0, 0%, 70%);
74 border: 1px solid hsl(214, 91%, 85%);
88 border-color: hsl(214, 91%, 65%);
255 border: 1px solid hsl(214, 91%, 85%);;
  /external/chromium/chrome/browser/resources/
new_new_tab.css 67 color: hsl(213, 90%, 24%);
86 background-color: hsl(52, 100%, 80%);
103 border: 2px solid hsl(213, 55%, 75%);
104 background-color: hsl(213, 63%, 93%);
111 border: 1px solid hsl(0, 0%, 80%);
112 background-color: hsl(120, 93%, 93%);
194 color: hsl(213, 90%, 24%);
  /external/chromium/chrome/browser/ui/views/
profile_tag_view.cc 18 color_utils::HSL hsl_active_shift = { 0.594, 0.5, 0.5 };
  /external/chromium/chrome/common/extensions/docs/static/
themes.html 113 Tints are in Hue-Saturation-Lightness (HSL) format,
136 You can alternatively use <code>-1.0</code> for any of the HSL values
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk.cc 123 color_utils::HSL fg_hsl;
126 color_utils::HSL hue_hsl;
141 color_utils::HSL output = { hue_hsl.h, s, l };
151 color_utils::HSL fg_hsl;
154 color_utils::HSL bg_hsl;
157 color_utils::HSL hue_hsl;
171 color_utils::HSL output = { hue_hsl.h, s, l };

Completed in 545 milliseconds

1 2 3