#newcolours
Explore tagged Tumblr posts
turbankingaustralia · 1 year ago
Text
New Turban Colours at Turban King Australia!!!
0 notes
aimeecoutures · 2 years ago
Photo
Tumblr media
ACRYL DREAM // NEW COLOURS IN MIND // OPENVIEW // SOLACE // AIMEE COUTURE //
0 notes
homedelightcanada · 2 years ago
Text
Professional painting service in Canada
HomeDelight Canada no: 1 source for finding professional, high-quality, commercial exterior painting service providers.
Visit Us: https://homedelightcanada.ca/Painting.aspx
Tumblr media
0 notes
watchoutzhk · 2 years ago
Photo
Tumblr media
SLA023J1 #watch #watchoutz #watchuseek #watchoutzhk #seiko #mm300 #newcolour #royalblue #bluedial #marinemaster #prospex #seikodiver #specialhands #madeinjapan #mij #vintagestyle #bluebezel #sunburstdial #newgeneration #seikoprofessional #tattoo #blue #professional (at Watch Outz 注目時計) https://www.instagram.com/p/CoenWJlr8qY/?igshid=NGJjMDIxMWI=
0 notes
vinnybox · 4 months ago
Note
Do you think you could paste the code you have for the sparkle cursor on your blog in an answer ( maybe to this )? The website you linked for it some time back has unfortunately been removed, and now everything's all messed up and it's hard to find :sad:
I did what I can :o !
Otherwise I found this other site with sparkle cursor code but you'd have to change the color yourself. Just change the Random in the script to the desired color code or color name
Code below cut
<script type="text/javascript">
// <![CDATA[
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
var sparkles=50;
/****************************
*  Tinkerbell Magic Sparkle *
*(c)2005-13 mf2fm web-design*
*  http://www.mf2fm.com/rv  *
* DON'T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
  var i, rats, rlef, rdow;
  for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
rats.style.zIndex="999";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
rats.style.zIndex="999";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
  }
  set_width();
  sparkle();
}}
function sparkle() {
  var c;
  if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
   star[c].style.left=(starx[c]=x)+"px";
   star[c].style.top=(stary[c]=y+1)+"px";
   star[c].style.clip="rect(0px, 5px, 5px, 0px)";
   star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
   star[c].style.visibility="visible";
   starv[c]=50;
   break;
}
  }
  for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
  }
  setTimeout("sparkle()", 40);
}
function update_star(i) {
  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  if (starv[i]) {
stary[i]+=1+Math.random()*3;
starx[i]+=(i%5-2)/5;
if (stary[i]<shigh+sdown) {
   star[i].style.top=stary[i]+"px";
   star[i].style.left=starx[i]+"px";
}
else {
   star[i].style.visibility="hidden";
   starv[i]=0;
   return;
}
  }
  else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
  }
}
function update_tiny(i) {
  if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
  }
  if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
tinyx[i]+=(i%5-2)/5;
if (tinyy[i]<shigh+sdown) {
   tiny[i].style.top=tinyy[i]+"px";
   tiny[i].style.left=tinyx[i]+"px";
}
else {
   tiny[i].style.visibility="hidden";
   tinyv[i]=0;
   return;
}
  }
  else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
  if (e) {
y=e.pageY;
x=e.pageX;
  }
  else {
set_scroll();
y=event.y+sdown;
x=event.x+sleft;
  }
}
window.onscroll=set_scroll;
function set_scroll() {
  if (typeof(self.pageYOffset)=='number') {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
  }
  else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
  }
  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
  }
  else {
sdown=0;
sleft=0;
  }
}
window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement && document.documentElement.clientWidth) {
if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)=='number' && self.innerWidth) {
if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  }
  if (document.body.clientWidth) {
if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  }
  if (sw_min==999999 || sh_min==999999) {
sw_min=800;
sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}
function createDiv(height, width) {
  var div=document.createElement("div");
  div.style.position="absolute";
  div.style.height=height+"px";
  div.style.width=width+"px";
  div.style.overflow="hidden";
  return (div);
}
function newColour() {
  var c=new Array();
  c[0]=255;
  c[1]=Math.floor(Math.random()*256);
  c[2]=Math.floor(Math.random()*(256-c[1]/2));
  c.sort(function(){return (0.5 - Math.random());});
  return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
}
// ]]>
</script>
6 notes · View notes
thinkmeatmarinades · 4 months ago
Text
okay but newcolour neptune looks like a pearl
"Pluto isn't a planet" Fine.
"Dinosaurs had feathers" Fine!
"Neptune isn't a beautiful oceanic blue, it's actually the same washed-out disappointing color as Uranus" I will kill you with my bare hands
Tumblr media
Look how they massacred my boy
43K notes · View notes
babycharlottecanada · 5 months ago
Text
Kyte Baby Mint now available at Baby Charlotte!
A pale ice green.
#babycharlotte #kytebaby #newcolours #newstock #supportlocal #belmontvillage
Tumblr media
0 notes
izatrini · 10 months ago
Text
GET READY!! My Carnival Boots opens for business on Saturday, January 13!! #NewColours #LegPouches #CarnivalBoots #MyCarniv...
GET READY!! My Carnival Boots opens for business on Saturday, January 13!! #NewColours #LegPouches #CarnivalBoots #MyCarnivalBoots #Carnival2024 (Feed generated with FetchRSS) http://dlvr.it/T17Z0X
0 notes
muggulurangolikolam · 1 year ago
Video
youtube
friendship day rangoli easy friendship day drawing newcolour friendship ...
0 notes
beautyincworld · 2 years ago
Photo
Tumblr media
Der grosse BEAUTYinc.world Luxus und Lifestyle Adventskalender, hier unser Türchen Nummer 21 https://beautyinc.world/adventskalender #beautyinc #adventskalender #tuerchen21 #grandprice #lifestyle #hierteilnehmen #luxus #xmas #gewinnspiel #fabercastell #graf #beautyincworld #betheone #office #beauty #paper #goldfaber #Laquarell #polychromos #111yearsofcolour #NeuimSortiment #NewColours #creativestudio #pen #stifte #art #1908 #jubilaeumsedition #stayhealthy #nurdasbeste (hier: Berlin, Germany) https://www.instagram.com/p/CmcvQYKDv1n/?igshid=NGJjMDIxMWI=
0 notes
theembroiderycart · 3 years ago
Text
Tumblr media
Starting the first few stitches of the Mandala…🪡🤍
9 notes · View notes
annekatharina · 4 years ago
Photo
Tumblr media
Frohe Ostern 🐰🌷 • [Werbung wegen Verlinkung] • #annekatharina #krabbeldecke #happyeaster #biobaumwolle #handmande #newcollection #comeingsoon #newcolours (hier: Ehningen) https://www.instagram.com/p/CNQKraYleSS/?igshid=xedjeg3tvnuy
2 notes · View notes
sansanna3l · 4 years ago
Text
Tumblr media
Trying a bit with new colours
12 notes · View notes
customconverseuk · 5 years ago
Photo
Tumblr media
😍 2020 New Season Colours are here and they’ve picked some gorgeous shades! - #converse #customshoes #customconverse #chucks #kicks #hightops #trainers #sneakers #customs #allstar #allstarconverse #chucktaylor #shoes #2020 #newcolours https://www.instagram.com/p/B7GWAq-HWnD/?igshid=em009my6cdfs
4 notes · View notes
airitab · 5 years ago
Photo
Tumblr media
10% off, Orange Colour Necklace with Orange Tassel: #accessoriesbyairita #sale #discount #jewelry #necklace #orange #etsy #bohohippie #women #newideas #newcolours #etsyclub #loveetsy https://etsy.me/2I0LNiU https://www.instagram.com/p/B9DFbRzh9B6/?igshid=cke3f5bqq2k1
1 note · View note
lilooolill · 5 years ago
Photo
Tumblr media
.omg.new.long time no collage. .mixed media.2020. #collage #artinprogress #newcolours #roomsituation #illustration #mixedmedia #situationunknown #being #creative #lately #art #artistsoninstagram https://www.instagram.com/p/B7-2scdJIwx/?igshid=uniltcr7n269
1 note · View note