'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

The Shades of Blue

The Shades of Blue were an American blue-eyed soul vocal group from Livonia, Michigan, a suburb of Detroit.

The band started in high school as The Domingos. By 1965 The Domingos signed a recording contract for the Detroit-based Golden World label. John Rhys, a sound engineer, suggested a name channge and The Shades of Blue was the result.

Their biggest hit was the 1966 song "Oh How Happy", written by Edwin Starr, which reached number 12 on the Billboard Hot 100 chart, number 16 on the US Billboard R&B chart, and the Top 10 in Canada. That same year, the song "Lonely Summer", again written by Starr, reached number 72, and then "Happiness" peaked at number 78 in the Hot 100.

Taste in popular music changed in the late 1960s, and the group's later single efforts failed to chart and they disbanded in 1970.

In 2003, 33 years after they disbanded, the group reformed and continue to tour with new lineups.

Original group members included Nick Marinelli, Ernie Dernai, Linda Allen, and Bob Kerr.

Shades of blue

Varieties of the color blue may differ in hue, chroma (also called saturation, intensity, or colorfulness), or lightness (or value, tone, or brightness), or in two or three of these qualities. Variations in value are also called tints and shades, a tint being a blue or other hue mixed with white, a shade being mixed with black. A large selection of these various colors is shown below.

Tints of blue

In this section, the term tint is used in its technical sense as used in color theory, meaning a blueish color mixed with white or light gray.

Periwinkle

Shown in the right is the color periwinkle, or periwinkle blue. Another name for this color is lavender blue. The color is a mixture of white and blue. It is named after the Periwinkle flower and is also commonly referred to as a tone of light blue.

Powder blue

The web color powder blue is shown on the right.

The first recorded use of powder blue as a color name in English was in 1774.

Light blue

The web color light blue is displayed in the color box at right. Variations of this color are known as sky blue, baby blue, or angel blue. Within the X11 color system, with a hue code of 194, this color is closer to cyan than to blue.

Shades of Blue (TV series)

Shades of Blue is an American police drama television series created by Adi Hasak. It is set in New York City and stars Jennifer Lopez as the main character Harlee Santos, a single-mother NYPD Detective, who is forced to work in the FBI's anti-corruption task force, while dealing with her own financial problems. NBC gave a 13-episode straight-to-series order in February 2014. The series premiered on January 7, 2016.

On February 5, 2016, NBC renewed Shades of Blue for a second season.

Premise

Harlee Santos (Jennifer Lopez) is an NYPD detective and single mother struggling with financial problems. When she is caught up in an FBI anti-corruption probe, she must choose between doing the right thing for her daughter or covering up for her corrupt police co-workers.

Cast and characters

Main

  • Jennifer Lopez as Detective Harlee Santos, a corrupt officer with the NYPD 64th Precinct in Brooklyn. She is the single mother to 17-year-old Cristina; Cristina's father was abusive, and shortly after his release from prison in 2005, Harlee framed him for murder. She joined Lt. Wozniak's crew after he helped her cover up her frame job. After getting arrested by the FBI in an anti-corruption investigation, she becomes a reluctant informant against Wozniak in exchange for immunity.
  • 3 Shades of Blue

    3 Shades of Blue is the final album recorded by American jazz saxophonist Johnny Hodges featuring performances recorded in 1970 with vocalist Leon Thomas and composer/arranger Oliver Nelson and first released on the Flying Dutchman label. The album was rereleased in 1989 under Nelson's leadership as Black, Brown and Beautiful with additional tracks.

    Reception

    The Allmusic site awarded the album 3 stars.

    Track listing

  • "Empty Ballroom Blues" (Duke Ellington, Cootie Williams) - 4:54
  • "Duke's Place" (Ellington, Bob Thiele, Bill Katz, Ruth Roberts) - 2:35
  • "Echoes of Harlem" (Ellington) - 4:20
  • "Disillusion Blues" (Leon Thomas) - 3:56
  • "Yearning" (Oliver Nelson) - 5:20
  • "Welcome to New York" (Thomas) - 4:10
  • "Black, Brown and Beautiful" (Nelson) - 3:50
  • "Rockin' in Rhythm (Ellington, Harry Carney, Irving Mills) - 3:09
  • "Creole Love Call" (Ellington) - 4:56
  • "It´s Glory" (Ellington) - 2:55
  • Personnel

  • Johnny Hodges - alto saxophone
  • Leon Thomas - vocals (tracks 2, 4 & 6)
  • Oliver Nelson - arranger, conductor
  • Podcasts:

    • Féa - Shades of Blue (Official Video)

      🔔 Subscribe to our channel: https://goo.gl/achc8N 🎧Stream & Download: https://bfan.link/-shades-of-blue ► All the Thrace vibes : https://spoti.fi/3oeorKN Licensing : office@thrace-music.com Follow us https://www.instagram.com/thracemusic/ Follow our Spotify Playlists: 🚗NoSkip Tunes: https://spoti.fi/3yhgQjt 🔥 Fit Tunes: https://spoti.fi/3eGmXpB 🎶 Oriental Tunes: https://spoti.fi/3yhgLMH 💕Slumber Tunes: https://spoti.fi/3fuYbIn 💎Thrace Music : https://spoti.fi/3oeorKN Written by Alexandra Fota, Cristian Tarcea Produced by Cristian Tarcea Video shot by Cristian Tarcea Directed & edited by Cristian Tarcea Photos by Ștefan-Radu Pădureanu Artwork by Loredvn Location: By The Lake Villas https://www.instagram.com/a_bythelake/ ► Connect with Féa https://www.instagram.com/fea.artist/ LYRICS ...

      published: 03 Nov 2023
    • 25 different shades of blue colour and their names.

      published: 21 Jul 2023
    • Shades of Blue Season 3 Trailer (HD) Final Season

      Jennifer Lopez and Ray Liotta return for the explosive final season of the NBC drama Shades of Blue, premiering Sunday, June 17th at 10/9c on NBC. Subscribe to tvpromosdb on Youtube for more Shades of Blue season 3 promos in HD! Shades of Blue official website: https://www.nbc.com/shades-of-blue Like Shades of Blue on Facebook: https://www.facebook.com/NBCShadesofBlue Follow Shades of Blue on Twitter: https://twitter.com/nbcshadesofblue Follow Shades of Blue on Instagram: https://www.instagram.com/NBCShadesofBlue » Watch Shades of Blue Sundays at 10:00pm/9c on NBC » Starring: Jennifer Lopez, Ray Liotta, Drea de Matteo, Warren Kole Contribute subtitle translations for this video: https://www.youtube.com/timedtext_video?v=vRNkB2TCAhc

      published: 10 Jun 2018
    • Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)

      Official audio for Shades of Blue by Jeremiah Kahuakai Kaholoaa 🌴 Enjoy more music from Jeremiah Kahuakai Kaholoaa https://www.youtube.com/playlist?list=PL57agAcGzmRY5gSq50AdPUAqSbOs8dTWI 🔔 Subscribe and hit the notification bell to never miss an update! https://www.youtube.com/@JeremiahKahuakaiKaholoaa 📲 Connect and follow Jeremiah Kahuakai Kaholoaa ⬇️ https://www.instagram.com/miahmusicmolokai https://music.apple.com/us/artist/jeremiah-kahuakai-kaholoaa/1576981614 https://soundcloud.com/jeremiahkahuakaikaholoaa https://miahmusicmolokai.com/ © Miah Music Molokai LLC #JeremiahKahuakaiKaholoaa #Reggae #hawaiianreggae

      published: 22 Jul 2024
    • All Shades of Blue

      Provided to YouTube by CDBaby All Shades of Blue · Gregory Alan Isakov The Weatherman ℗ 2013 Suitcase Town Music Released on: 2013-07-09 Auto-generated by YouTube.

      published: 28 Aug 2015
    • Kado & Promoting Sounds - Shades of Blue

      Stream Kado & Promoting Sounds - Shades of Blue here: https://open.spotify.com/album/3L6G79cVaIUoPlTmnM5ydp?si=jiNi3CqxToayQNvyhD2_Kw Artist Social Networks: https://www.instagram.com/kado.wav/ https://open.spotify.com/artist/3hBvETCf1HBhhZSv9kc1Tb?si=cOBo1_X3R7ejGo7f_zIN3g Promoting Sounds: https://open.spotify.com/artist/5b0j3TTNSKCByBq4rHYKvG?si=GvWAqqYuTPeoB8owkh51DA https://soundcloud.com/promotedsounds http://instagram.com/promotingsounds/ https://twitter.com/PromotingSounds

      published: 10 Feb 2023
    • Kado - Shades Of Blue (Lyric Video)

      🎧 Follow our Spotify playlists - https://tinyurl.com/auxonspotify 🌍 Help us reach 50 000 subscribers! ✅ Support Aux Sauce by hitting the subscribe button! 🔔 Turn on notifications to stay updated with new uploads! 👨🏻‍💼| Follow Aux Sauce on Social Media Soundcloud - https://soundcloud.com/aux-sauce Instagram - https://instagram.com/auxsauce Twitter - https://twitter.com/AuxSauce_ 📸| Background Picture by Ashley Baxter https://www.instagram.com/ashleybobaxter https://linktr.ee/Ashleybobaxter 🎙| Follow Kado on Social Media Soundcloud - https://soundcloud.com/kadowav Instagram - https://www.instagram.com/kado.wav/ There is no copyright infringement intended for the song or picture. If you have an issue with me posting this song or picture please contact me. 📋 Tags: #AuxSauce #Kado...

      published: 11 Feb 2023
    • Kelsey Lu - Shades of Blue (Official Video)

      Kelsey Lu's "Shades Of Blue" is out now: http://smarturl.it/ShadesOfBlue?IQid=ytofficial Upcoming Live Dates: http://kelsey.lu Production Co: Park Pictures Director: Vincent Haycock Executive Producers: Jackie Kelman Bisbee, Alex Fisch Line Producer: Abigail Flint DP: Evan Prosofsky Wardrobe: Mindy LeBrock, Liberty Padre Production Supervisor: Evan Parsons Steadicam: Jay Clennan 1st AC: Jered Boyce 2nd AC: Chris Merrell Loader: Alex Calder Key Grip: Grace Loeppky Gaffer: Bray Jorstad Production Designers: Jo Carkner Props: Joel Hannsen Hair / Make Up: Tanya Melendez, Megan Crouse Location Manager: Tammy Shinko PAs: Dan Holtendorp, Braeden Klassen Lyrics: [Verse 1] I knew I was a chess piece in your game Moving me every which way Thought I'd hold out for your love someday But I cou...

      published: 26 Apr 2018
    • Speed Coloring: Adding Blue And Purple Shades #coloringbook #halloween #artvlog

      published: 31 Oct 2024
    • Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blue

      Blue is a beautiful color. Below are a variety of shades of Blue color with names. Shades of Orange Color https://youtu.be/44jFPiMvqyU Shades of White Color https://youtu.be/-h8kwHbj6Z4 Shades of Green Color https://youtu.be/KfDCx4-5Xjs 140 Colors https://youtu.be/AqCAN8hpv1c Unique Colors Name https://youtu.be/DYy1xLA3oLk Colors name in Hindi and English https://youtu.be/mRfqTP5nq3U color mixing https://youtu.be/EKosV2-lWXk Shapes Name ,आकार के नाम https://youtu.be/qP5Bii2ZpSk 1 se 100 tak hindi aur english me ginti https://youtu.be/6krTVIMVmA0 Animals and their Young Ones Name https://youtu.be/0sxqYfzd93M Flower Names , फूलों के नाम https://youtu.be/25AP4d8uDoE Root Vegetables https://youtu.be/rM5jmyk185c Parts of the Day https://youtu.be/YLS7t77iD7Q National Symbols of Indi...

      published: 24 Jul 2023
    Féa - Shades of Blue (Official Video)
    3:11

    Féa - Shades of Blue (Official Video)

    • Order:
    • Duration: 3:11
    • Uploaded Date: 03 Nov 2023
    • views: 967933
    🔔 Subscribe to our channel: https://goo.gl/achc8N 🎧Stream & Download: https://bfan.link/-shades-of-blue ► All the Thrace vibes : https://spoti.fi/3oeorKN Licensing : office@thrace-music.com Follow us https://www.instagram.com/thracemusic/ Follow our Spotify Playlists: 🚗NoSkip Tunes: https://spoti.fi/3yhgQjt 🔥 Fit Tunes: https://spoti.fi/3eGmXpB 🎶 Oriental Tunes: https://spoti.fi/3yhgLMH 💕Slumber Tunes: https://spoti.fi/3fuYbIn 💎Thrace Music : https://spoti.fi/3oeorKN Written by Alexandra Fota, Cristian Tarcea Produced by Cristian Tarcea Video shot by Cristian Tarcea Directed & edited by Cristian Tarcea Photos by Ștefan-Radu Pădureanu Artwork by Loredvn Location: By The Lake Villas https://www.instagram.com/a_bythelake/ ► Connect with Féa https://www.instagram.com/fea.artist/ LYRICS I wake up in the night, And I don't feel you. Have you lost your mind In those shades of blue? You've drown your love In the ocean's waves, And you still hope that I will miss you back. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. I wonder if I was The reason for your loss. We can't turn back the time. The clock is stuck for us. I lost all my trust. Take your pack of lies. Our days are gone. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. Oh, baby, I'm moving on. No more tears, no more pain. Ooo baby, ooo. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. All rights reserved. ©&Ⓟ 2023 Thrace Music http://thrace-music.com https://www.facebook.com/thracemusic #thracemusic #thraceonthesound
    https://wn.com/Féa_Shades_Of_Blue_(Official_Video)
    25 different shades of blue colour and their names.
    0:27

    25 different shades of blue colour and their names.

    • Order:
    • Duration: 0:27
    • Uploaded Date: 21 Jul 2023
    • views: 192268
    https://wn.com/25_Different_Shades_Of_Blue_Colour_And_Their_Names.
    Shades of Blue Season 3 Trailer (HD) Final Season
    1:31

    Shades of Blue Season 3 Trailer (HD) Final Season

    • Order:
    • Duration: 1:31
    • Uploaded Date: 10 Jun 2018
    • views: 125951
    Jennifer Lopez and Ray Liotta return for the explosive final season of the NBC drama Shades of Blue, premiering Sunday, June 17th at 10/9c on NBC. Subscribe to tvpromosdb on Youtube for more Shades of Blue season 3 promos in HD! Shades of Blue official website: https://www.nbc.com/shades-of-blue Like Shades of Blue on Facebook: https://www.facebook.com/NBCShadesofBlue Follow Shades of Blue on Twitter: https://twitter.com/nbcshadesofblue Follow Shades of Blue on Instagram: https://www.instagram.com/NBCShadesofBlue » Watch Shades of Blue Sundays at 10:00pm/9c on NBC » Starring: Jennifer Lopez, Ray Liotta, Drea de Matteo, Warren Kole Contribute subtitle translations for this video: https://www.youtube.com/timedtext_video?v=vRNkB2TCAhc
    https://wn.com/Shades_Of_Blue_Season_3_Trailer_(Hd)_Final_Season
    Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)
    4:20

    Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)

    • Order:
    • Duration: 4:20
    • Uploaded Date: 22 Jul 2024
    • views: 18806
    Official audio for Shades of Blue by Jeremiah Kahuakai Kaholoaa 🌴 Enjoy more music from Jeremiah Kahuakai Kaholoaa https://www.youtube.com/playlist?list=PL57agAcGzmRY5gSq50AdPUAqSbOs8dTWI 🔔 Subscribe and hit the notification bell to never miss an update! https://www.youtube.com/@JeremiahKahuakaiKaholoaa 📲 Connect and follow Jeremiah Kahuakai Kaholoaa ⬇️ https://www.instagram.com/miahmusicmolokai https://music.apple.com/us/artist/jeremiah-kahuakai-kaholoaa/1576981614 https://soundcloud.com/jeremiahkahuakaikaholoaa https://miahmusicmolokai.com/ © Miah Music Molokai LLC #JeremiahKahuakaiKaholoaa #Reggae #hawaiianreggae
    https://wn.com/Jeremiah_Kahuakai_Kaholoaa_Shades_Of_Blue_(Audio)
    All Shades of Blue
    3:34

    All Shades of Blue

    • Order:
    • Duration: 3:34
    • Uploaded Date: 28 Aug 2015
    • views: 1007806
    Provided to YouTube by CDBaby All Shades of Blue · Gregory Alan Isakov The Weatherman ℗ 2013 Suitcase Town Music Released on: 2013-07-09 Auto-generated by YouTube.
    https://wn.com/All_Shades_Of_Blue
    Kado & Promoting Sounds - Shades of Blue
    2:22

    Kado & Promoting Sounds - Shades of Blue

    • Order:
    • Duration: 2:22
    • Uploaded Date: 10 Feb 2023
    • views: 277075
    Stream Kado & Promoting Sounds - Shades of Blue here: https://open.spotify.com/album/3L6G79cVaIUoPlTmnM5ydp?si=jiNi3CqxToayQNvyhD2_Kw Artist Social Networks: https://www.instagram.com/kado.wav/ https://open.spotify.com/artist/3hBvETCf1HBhhZSv9kc1Tb?si=cOBo1_X3R7ejGo7f_zIN3g Promoting Sounds: https://open.spotify.com/artist/5b0j3TTNSKCByBq4rHYKvG?si=GvWAqqYuTPeoB8owkh51DA https://soundcloud.com/promotedsounds http://instagram.com/promotingsounds/ https://twitter.com/PromotingSounds
    https://wn.com/Kado_Promoting_Sounds_Shades_Of_Blue
    Kado - Shades Of Blue (Lyric Video)
    2:21

    Kado - Shades Of Blue (Lyric Video)

    • Order:
    • Duration: 2:21
    • Uploaded Date: 11 Feb 2023
    • views: 14659
    🎧 Follow our Spotify playlists - https://tinyurl.com/auxonspotify 🌍 Help us reach 50 000 subscribers! ✅ Support Aux Sauce by hitting the subscribe button! 🔔 Turn on notifications to stay updated with new uploads! 👨🏻‍💼| Follow Aux Sauce on Social Media Soundcloud - https://soundcloud.com/aux-sauce Instagram - https://instagram.com/auxsauce Twitter - https://twitter.com/AuxSauce_ 📸| Background Picture by Ashley Baxter https://www.instagram.com/ashleybobaxter https://linktr.ee/Ashleybobaxter 🎙| Follow Kado on Social Media Soundcloud - https://soundcloud.com/kadowav Instagram - https://www.instagram.com/kado.wav/ There is no copyright infringement intended for the song or picture. If you have an issue with me posting this song or picture please contact me. 📋 Tags: #AuxSauce #Kado #shadesofblue
    https://wn.com/Kado_Shades_Of_Blue_(Lyric_Video)
    Kelsey Lu - Shades of Blue (Official Video)
    9:09

    Kelsey Lu - Shades of Blue (Official Video)

    • Order:
    • Duration: 9:09
    • Uploaded Date: 26 Apr 2018
    • views: 1009110
    Kelsey Lu's "Shades Of Blue" is out now: http://smarturl.it/ShadesOfBlue?IQid=ytofficial Upcoming Live Dates: http://kelsey.lu Production Co: Park Pictures Director: Vincent Haycock Executive Producers: Jackie Kelman Bisbee, Alex Fisch Line Producer: Abigail Flint DP: Evan Prosofsky Wardrobe: Mindy LeBrock, Liberty Padre Production Supervisor: Evan Parsons Steadicam: Jay Clennan 1st AC: Jered Boyce 2nd AC: Chris Merrell Loader: Alex Calder Key Grip: Grace Loeppky Gaffer: Bray Jorstad Production Designers: Jo Carkner Props: Joel Hannsen Hair / Make Up: Tanya Melendez, Megan Crouse Location Manager: Tammy Shinko PAs: Dan Holtendorp, Braeden Klassen Lyrics: [Verse 1] I knew I was a chess piece in your game Moving me every which way Thought I'd hold out for your love someday But I couldn't Cuz you wouldn't You're like a blazing fire In the Sahara On a wind filled night Movin' in all directions [Chorus] I'm not over you Not over you But I'm over feeling shades of blue I'm not over you not over you But I'm over feeling Shades of Blue Blue [Verse 2] Afraid I'm going mad Afraid I've lost my edge Afraid I made a big mistake But I knew it Yes I knew it Yes I knew it You're like a blazing fire In the Sahara On a wind filled night Movin' in all directions [Chorus] I'm not over you But I'm over feeling Shades of Blue I'm not over you But I'm over feeling shades of Blue Happiness is a state of mind And you almost stole mine [Chorus] I'm not over you Not over you But I'm over feeling Shades of Blue I'm not over you Ohhhh But I'm over feeling Shades of Blue Blue Blue Follow Kelsey Lu: http://kelsey.lu http://facebook.com/iamkelseylu http://twitter.com/iamkelseylu http://instagram.com/iamkelseylu #kelseylu #music
    https://wn.com/Kelsey_Lu_Shades_Of_Blue_(Official_Video)
    Speed Coloring: Adding Blue And Purple Shades #coloringbook #halloween #artvlog
    0:18

    Speed Coloring: Adding Blue And Purple Shades #coloringbook #halloween #artvlog

    • Order:
    • Duration: 0:18
    • Uploaded Date: 31 Oct 2024
    • views: 444
    https://wn.com/Speed_Coloring_Adding_Blue_And_Purple_Shades_Coloringbook_Halloween_Artvlog
    Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blue
    6:46

    Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blue

    • Order:
    • Duration: 6:46
    • Uploaded Date: 24 Jul 2023
    • views: 40295
    Blue is a beautiful color. Below are a variety of shades of Blue color with names. Shades of Orange Color https://youtu.be/44jFPiMvqyU Shades of White Color https://youtu.be/-h8kwHbj6Z4 Shades of Green Color https://youtu.be/KfDCx4-5Xjs 140 Colors https://youtu.be/AqCAN8hpv1c Unique Colors Name https://youtu.be/DYy1xLA3oLk Colors name in Hindi and English https://youtu.be/mRfqTP5nq3U color mixing https://youtu.be/EKosV2-lWXk Shapes Name ,आकार के नाम https://youtu.be/qP5Bii2ZpSk 1 se 100 tak hindi aur english me ginti https://youtu.be/6krTVIMVmA0 Animals and their Young Ones Name https://youtu.be/0sxqYfzd93M Flower Names , फूलों के नाम https://youtu.be/25AP4d8uDoE Root Vegetables https://youtu.be/rM5jmyk185c Parts of the Day https://youtu.be/YLS7t77iD7Q National Symbols of India https://youtu.be/ldvTKrpzceY Human Body Parts Name https://youtu.be/k0YSHcWdKZo Spices Name मसालों के नाम https://youtu.be/QzCVq2rAmjg #Color #ColorShades, #Blue #orange #Bluecolor #ShadesofColors 1 Indian Grocery Shopping List https://youtu.be/7mezCnN6RUg Learn Metals Name | धातुओं के नाम https://youtu.be/n9i-UesMSPU Thank you for watching our video: Please Do share like and subscribe https://www.youtube.com/@hellohappiness24 Images used here are from Pixabay Free Images Music used - YouTube audio Library Email Id : ********************************* contactus.mailid24@gmail.com ********************************* color shades generator, color shades names, color shades code, #hellohappiness Colors, Colors shades, color shades hex, color picker, color wheel, css color shades, orange colors, tricolor flag tiranga ke rang orange color shades, Shades of Colors in English, Shades of Colors in English!, color vocabulary, easy colors, Learn English, English lesson, colors, easy learning colors, learn english colors, रंग, #HelloHappiness
    https://wn.com/Shades_Of_Blue_Color_With_Names_|_Blue_Color_Shades_With_Their_Name_And_Image_Color_Blue
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Féa - Shades of Blue (Official Video)
      3:11
      Féa - Shades of Blue (Official Video)remove from playlist
    • Shades of Blue Season 3 Trailer (HD) Final Season
      1:31
      Shades of Blue Season 3 Trailer (HD) Final Seasonremove from playlist
    • Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)
      4:20
      Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)remove from playlist
    • All Shades of Blue
      3:34
      All Shades of Blueremove from playlist
    • Kado & Promoting Sounds - Shades of Blue
      2:22
      Kado & Promoting Sounds - Shades of Blueremove from playlist
    • Kado - Shades Of Blue (Lyric Video)
      2:21
      Kado - Shades Of Blue (Lyric Video)remove from playlist
    • Kelsey Lu - Shades of Blue (Official Video)
      9:09
      Kelsey Lu - Shades of Blue (Official Video)remove from playlist
    • Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blue
      6:46
      Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blueremove from playlist
    PLAYLIST TIME: 0:00 / 33:59

    Féa - Shades of Blue (Official Video)

    🔔 Subscribe to our channel: https://goo.gl/achc8N 🎧Stream & Download: https://bfan.link/-shades-of-blue ► All the Thrace vibes : https://spoti.fi/3oeorKN Licensing : office@thrace-music.com Follow us https://www.instagram.com/thracemusic/ Follow our Spotify Playlists: 🚗NoSkip Tunes: https://spoti.fi/3yhgQjt 🔥 Fit Tunes: https://spoti.fi/3eGmXpB 🎶 Oriental Tunes: https://spoti.fi/3yhgLMH 💕Slumber Tunes: https://spoti.fi/3fuYbIn 💎Thrace Music : https://spoti.fi/3oeorKN Written by Alexandra Fota, Cristian Tarcea Produced by Cristian Tarcea Video shot by Cristian Tarcea Directed & edited by Cristian Tarcea Photos by Ștefan-Radu Pădureanu Artwork by Loredvn Location: By The Lake Villas https://www.instagram.com/a_bythelake/ ► Connect with Féa https://www.instagram.com/fea.artist/ LYRICS I wake up in the night, And I don't feel you. Have you lost your mind In those shades of blue? You've drown your love In the ocean's waves, And you still hope that I will miss you back. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. I wonder if I was The reason for your loss. We can't turn back the time. The clock is stuck for us. I lost all my trust. Take your pack of lies. Our days are gone. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. Oh, baby, I'm moving on. No more tears, no more pain. Ooo baby, ooo. Another love, Another lie to me, Another fight with yourself, Another sleepless night, Another broken heart, Ooo baby, ooo baby. Lalalala, lalalalalala, lalalala, lalalalalalala, lalalalalalala, ooo. All rights reserved. ©&Ⓟ 2023 Thrace Music http://thrace-music.com https://www.facebook.com/thracemusic #thracemusic #thraceonthesound
    3:11
    Féa - Shades of Blue (Official Video)
    🔔 Subscribe to our channel: https://goo.gl/achc8N 🎧Stream & Download: https://bfan.link/-s...
    published: 03 Nov 2023
    Play in Full Screen
    0:27
    25 different shades of blue colour and their names.
    published: 21 Jul 2023
    Play in Full Screen
    1:31
    Shades of Blue Season 3 Trailer (HD) Final Season
    Jennifer Lopez and Ray Liotta return for the explosive final season of the NBC drama Shade...
    published: 10 Jun 2018
    Play in Full Screen
    4:20
    Jeremiah Kahuakai Kaholoaa - Shades of Blue (Audio)
    Official audio for Shades of Blue by Jeremiah Kahuakai Kaholoaa 🌴 Enjoy more music from J...
    published: 22 Jul 2024
    Play in Full Screen
    3:34
    All Shades of Blue
    Provided to YouTube by CDBaby All Shades of Blue · Gregory Alan Isakov The Weatherman ℗...
    published: 28 Aug 2015
    Play in Full Screen
    2:22
    Kado & Promoting Sounds - Shades of Blue
    Stream Kado & Promoting Sounds - Shades of Blue here: https://open.spotify.com/album/3L6G7...
    published: 10 Feb 2023
    Play in Full Screen
    2:21
    Kado - Shades Of Blue (Lyric Video)
    🎧 Follow our Spotify playlists - https://tinyurl.com/auxonspotify 🌍 Help us reach 50 000...
    published: 11 Feb 2023
    Play in Full Screen
    9:09
    Kelsey Lu - Shades of Blue (Official Video)
    Kelsey Lu's "Shades Of Blue" is out now: http://smarturl.it/ShadesOfBlue?IQid=ytofficial ...
    published: 26 Apr 2018
    Play in Full Screen
    0:18
    Speed Coloring: Adding Blue And Purple Shades #coloringbook #halloween #artvlog
    published: 31 Oct 2024
    Play in Full Screen
    6:46
    Shades of Blue Color With Names | Blue Color Shades with their name and image #color #blue
    Blue is a beautiful color. Below are a variety of shades of Blue color with names. Shades...
    published: 24 Jul 2023
    Play in Full Screen

    The Shades of Blue

    The Shades of Blue were an American blue-eyed soul vocal group from Livonia, Michigan, a suburb of Detroit.

    The band started in high school as The Domingos. By 1965 The Domingos signed a recording contract for the Detroit-based Golden World label. John Rhys, a sound engineer, suggested a name channge and The Shades of Blue was the result.

    Their biggest hit was the 1966 song "Oh How Happy", written by Edwin Starr, which reached number 12 on the Billboard Hot 100 chart, number 16 on the US Billboard R&B chart, and the Top 10 in Canada. That same year, the song "Lonely Summer", again written by Starr, reached number 72, and then "Happiness" peaked at number 78 in the Hot 100.

    Taste in popular music changed in the late 1960s, and the group's later single efforts failed to chart and they disbanded in 1970.

    In 2003, 33 years after they disbanded, the group reformed and continue to tour with new lineups.

    Original group members included Nick Marinelli, Ernie Dernai, Linda Allen, and Bob Kerr.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×