Ouroboros Color Tee

  • Sale
  • Regular price $29.99
Shipping calculated at checkout.


Made 100% with incredibly soft, ring-spun cotton, each tee is soft-washed and garment-dyed. Its relaxed fit makes it the perfect daily choice for any casual occasion.

.: 100% ringspun cotton
.: Medium fabric (6.1 oz/yd² (206.8 g/m²))
.: Garment-dyed color blast fabric
.: Relaxed fit
.: Sewn-in twill label
.: Color Blast is a pigment dye technique that yields a unique color and Color Blast effect on every garment. We do not guarantee consistency amongst individual garments

 

  S M L XL 2XL 3XL
Width, in 18.25 20.25 22.00 24.00 26.00 27.75
Length, in 26.62 28.00 29.37 30.75 31.62 32.50
Sleeve length from center back, in 16.25 17.75 19.00 20.50 21.75 23.25

 


/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);