Content Creator & Digital Artist

High Friends! I am a Queer Content creator and Artist! I stream weekly, you can find that schedule on my twitch! I take a variety of art commissions over on my vgen!

Candy - Robbie Williams
0:00
const audio = document.getElementById("audio"); const playBtn = document.getElementById("playBtn"); const progress = document.getElementById("progress"); const time = document.getElementById("time"); function togglePlay() { if (audio.paused) { audio.play(); playBtn.innerHTML = "⏸"; } else { audio.pause(); playBtn.innerHTML = "⏵"; } } function prev() { audio.currentTime = 0; } function next() { audio.currentTime = audio.duration; } audio.addEventListener("timeupdate", () => { const percent = (audio.currentTime / audio.duration) * 100; progress.style.width = percent + "%"; let mins = Math.floor(audio.currentTime / 60); let secs = Math.floor(audio.currentTime % 60); if (secs < 10) secs = "0" + secs; time.innerText = mins + ":" + secs; }); function seek(e) { const width = e.currentTarget.clientWidth; const clickX = e.offsetX; audio.currentTime = (clickX / width) * audio.duration; }

Journal
01/2026 feeling xxx
02/2026 feeling xxx
03/2026 feeling xxx
💬 faq.exe
FAQ (3 comments)
Leave a message...
skyisblue
How do I commission you?
All my commissions currently go through Vgen, please check there for any commission info! You can find my commission form bellow or through trello!
♡ 12 likes
pixelkitty
Where can I see the commission queue?
You can see progress and wait queue on my Trello!
♡ 8 likes
iloveclouds
How should I contact you?
For general conversation, please message me on Bluesky. For Business and sponsorships email: [email protected]
♡ 5 likes
showcase.exe
showcase.exe
YCH
Banners
Emotes
Illustrations
Loading...
Ready • Image 1 / 5
const images = [ 'https://www.dropbox.com/scl/fo/7ij301vi8nk71fav89th1/AAMTqBLlZDCgIObkM7UEKaU/Crash%20New%20Banner.png?rlkey=odqhh2kvrajloba2bcyhs0ji9&raw=1', 'https://www.dropbox.com/scl/fo/7ij301vi8nk71fav89th1/ACuKttBqWt8NSb5EyXcIBOA/KirbyThisPlaceSucks.png?rlkey=odqhh2kvrajloba2bcyhs0ji9&raw=1', 'https://www.dropbox.com/scl/fo/7ij301vi8nk71fav89th1/ADdptcekJNAjK1oo3QxeULc/CotL.png?rlkey=odqhh2kvrajloba2bcyhs0ji9&raw=1', 'https://www.dropbox.com/scl/fo/7ij301vi8nk71fav89th1/AAdbll1-IwAS841zdaeCI3M/Custom%20Banner%20(Starrabee).png?rlkey=odqhh2kvrajloba2bcyhs0ji9&raw=1', 'https://www.dropbox.com/scl/fo/7ij301vi8nk71fav89th1/AExsmEgySYRf9F5A9qLdK3M/Cutesi%26Crash.png?rlkey=odqhh2kvrajloba2bcyhs0ji9&raw=1' ]; let current = 0; const img = document.getElementById('showcaseImage'); const status = document.getElementById('status'); const loading = document.getElementById('loading'); function updateImage(){ loading.classList.add('active'); setTimeout(()=>{ img.src = images[current]; status.innerHTML = 'Ready • Image ' + (current+1) + ' / ' + images.length; loading.classList.remove('active'); }, 300); } function nextImage(){ current = (current+1) % images.length; updateImage(); } function prevImage(){ current = (current-1+images.length) % images.length; updateImage(); } function randomImage(){ current = Math.floor(Math.random()*images.length); updateImage(); } updateImage();

This is my portfolio, where you can see some of the illustrations that I create! You can support my art journey by commissioning me and following my socials!


Please give lots of love to everyone who has contributed to my growth! <3

🎀 koneko.exe

konekomyau

Panels

● online
☕ sammy.exe

SammyPanda_

Emote Artist

● online
✨ starrabee.exe

Starrabee

Emote Artist

● online
🌹 marzyks.exe

Marzyks

Emote Artist

● online
💜 nemuneko.exe

NemunekoStudio

Emote Artist

● online

ShoYukia

Sub Badge Flair

● online
📺 ohkawa.exe

OhkawaFreak

Ending Screen + Alerts

● online
🖤 jommehs.exe

Jommehs

BRB/Raid Video

● online
💜 yioh.exe

YiohDesign

Transition

● online
⭐ ninix.exe

ninix_qt

Crash Chibi Model

● online
🎨 anj.exe

Art4Anj

Emote Artist

● online
🪐 atomicuwu.exe

AtomicUwU

Emote Artist

● online
🍵 matchalatte.exe

MatchaLattePNG

Emote Artist

● online
🔮 mystic.exe

MysticStreamShop

Emote Artist

● online
🐾 nekorumi.exe

NekorumiCafe

Channel Point Icon

● online
💙 kuriie.exe

Kuriie

Bit Badges

● online
🪐 atomicuwu.exe

AtomicUwU

Sub Badges

● online

Here you can find everything you're looking for!

✦ showcase.exe
art

Showcase Title Here

June 2026

event

Showcase Title Here

July 2026

art

Showcase Title Here

June 2026

announcement

Showcase Title Here

June 2026

wip

Showcase Title Here

TBA

event

Showcase Title Here

TBA

art

Showcase Title Here

TBA

announcement

Showcase Title Here

TBA

wip

Showcase Title Here

TBA

event

Showcase Title Here

TBA

function hwsFilter(type, btn) { document.querySelectorAll('.hws-tab').forEach(function(t){ t.classList.remove('on'); }); btn.classList.add('on'); document.querySelectorAll('.hws-card').forEach(function(c){ c.classList.toggle('hidden', type !== 'all' && c.getAttribute('data-type') !== type); }); }