#paint-discussions

1 messages · Page 27 of 1

modern agate
#

you do you, i am sure a lot of people would be happy if shadows were rendered better in chatterino

red elm
#

its not like there is much thought put into "are paints even readable" anymore
madashell

#

I care about that a lot

#

So, the way that chatterino is currently blurring shadows might not be the only option

#

what it's doing is probably faster than a full gaussian blur but I'd bet there are PROBABLY other ways to do blur

#

and switching that would make it look more like native

modern agate
#

i call BULLSHIT

stoic dawn
#

the main issue why the chatterino drop-shadows, even fixed, look odd, is because the "glow" cannot actually escape through the container of the username

#

there maybe would be a way to expand the container, but I doubt it honestly

#

without making actual changes to the base message structure

#

which I want to avoid

#

the main reason chatterino only mainly displays the drop-shadow thats meant to replicate your name to make it stand out more is because its offset dependant and not radius dependant

#

and because the "glow" actually is radius dependant, it doesnt render that well

#

and this is where my implementation isnt the best, and Im trying to look for a workaround - whenever I draw the shadows twice, this means that literally EVERY shadow gets duplicated

#

and then we increase the radius on EVERY shadow by 3x

#

this is why on the screenshots Im presenting the names may not appear as readable as they would've actually been

#

I am not sure whether I can look for the radius and then increase it based off that, to let the code know whether it should actually multiply the radius or not

red elm
modern agate
modern agate
#

"fixed"

red elm
red elm
stoic dawn
#

I've seen that some are like 0.1 or so

#

this is why I think a decent workaround could be to only increase the radius whenever the base radius is above 1

#

but Im not sure whether there are paints which have glow that have radius below 1

stoic dawn
#

neither do I

red elm
#

I would even say it's not a solution at all

#

I'm pretty sure there are plenty of glows between 0.1 and 1

#

you couldn't pick an arbitrary threshold

stoic dawn
#

exactly

#

I wanted to make a gql request to see all of the paints and what the radius is on them

red elm
#

but you could square the value

#

x + x^2

stoic dawn
#

hmm

#

maybe that could work actually

red elm
#

that's what I've been saying

#

it depends on how the blur algo actually works with different radius values

#

IDK if there's an easy way to test that out

#

now, squaring a radius less than 1 will actually make it smaller

#

obviously

stoic dawn
#

the thing is squaring will happen

#

yeah

#

so if the radius is like 1

#

the squaring wont really go into play

red elm
#

but we still want to increase it by a base amount

stoic dawn
#

2 might not be enough

#

1 + 1^2

#

that is

red elm
#

it might be

stoic dawn
#

currently I MULTIPLY the radius by 3, and it seems fine

#

but again, smaller radius is impacted to become slightly bigger

#

not ideal

red elm
#

do you know what the blur that chatterino uses is called?

stoic dawn
red elm
#

I think it might be the "QPixmapDropShadowFilter" you mentioned

#

this might be what you'd need to swap to

modern agate
# red elm is it not?

depends how you define fixed. i think its still unreadable and just looks bad but that might be taste

stoic dawn
#

not sure I'd be able to use that within chatterino

red elm
#

I think it's plenty readable now

#

is the purple too dark for you?

#

the purple is brighter than most other purple paints

red elm
stoic dawn
#

I know

#

thats where this comes from

modern agate
#

its just not my taste Alright

red elm
#

I wonder if there are others like you

modern agate
#

people care more about animated vs static than if it looks good

red elm
#

I've asked randoms in chat about it, and they like it

#

Lots of people don't have Domos, for sure

modern agate
#

i like
xslash
paris 23
san diego 22
rotterdam 25
blocky grass

red elm
#

well xslash is a mod paint, obviously, but it's just a gif

modern agate
red elm
#

I made the rest though

modern agate
#

you made rotterdam 25?

red elm
#

yep

modern agate
#

tbh i think a lot of the new animated paints just "try too hard"

#

thats where they fail sometimes

red elm
#

not everything CAN be the coolest paint ever, and not everything SHOULD be the coolest paint ever

modern agate
#

its a beautiful animation but just doesnt work as good once you put it on a name

red elm
#

there needs to be a gradient

red elm
#

lots of people want their paint to be the brightest, coolest, flashiest paint ever

#

but it's better if they have a distinct style

#

rather than just trying to be the brightest

modern agate
#

i really liked the pastel ones

#

not very flashy

red elm
#

so this kind of blur looks like a "manhattan distance" based effect

#

like minecraft lighting

#

you know how minecraft torches make that diamond pattern ?

#

clearly it's using that same kind of algorithm for the blur

#

so near the top and sides, you're getting more "radius" than you want, and on the diagonals, you're getting less

#

if you could switch it to a box blur, it would probably fit a bit better into the limits of the box

charred crag
modern agate
charred crag
#

You are being mean

red elm
modern agate
stoic dawn
#

I like how some paints have the classic shine effect LULE

stoic dawn
#

I mean yea I assumed

#

arent user specific paints whatever said person wants

red elm
#

basically

#

I don't make most of them

#

The "staff shine" is a staff only effect, and it's pretty cool because it overlays on whatever their actual username color is

#

but when everyone gets their own custom paint, there's almost no reason to use that

#

Vadikus still does because he's based

stoic dawn
#

yea I saw jozef using staff shine

red elm
#

I'm slightly worried that the effect could get overused

stoic dawn
#

it kinda already is

#

no?

red elm
#

it's not too many paints so far

modern agate
charred crag
stoic dawn
#

I've been recycling 3 chats

#

so...

red elm
#

EVER

charred crag
modern agate
stoic dawn
#

yeah as a matter of fact heres the whole list

stoic dawn
#

@red elm Imma keep it a stack I dont think you can make this any better

#

you either just multiply it by 3 at all times

#

or you multiply it based off the base radius

#

Im too experienced to be able to create a new seperated method for the shadows

#

I also doubt this would've been actually worthy for a PR or whatever

#

also because theres no actual way to be able to differ between a very small glow effect vs a shadow thats meant to represent your name, theres no way for me to skip double render on that

#

this means that the shadow under the name would also be affected by the 75%x2 opacity workaround I had for making shadows sharper

stoic dawn
#

I guess Im shit at typing too FeelsDankMan

thin meteor
#

@stoic dawn check dms

red elm
stoic dawn
#

nono like as in

#

I dont think theres a native function for a shadow

red elm
#

It's just a matter of figuring out the best function for size

stoic dawn
#

so I'd have to make a new one, I guess

#

for the blur

red elm
stoic dawn
#

I meant I dont think theres a native function for a specific blur that resembles the one from css (what 7tv ext uses)

#

the same thing you mentioned

#

with the blur pattern

red elm
#

Ohh

#

Yeah Gaussian vs this cheaper blur

#

Don't worry about that

stoic dawn
#

then I think the easiest way to do this is just literally to multiply by 3x only whenever the base radius exceeds 1

#

if we base off x + x^2 if we multiply by like 0.1*0.1 even after adding 1 we just get 0.11

#

so theres not really a bigger point in doing this sort of thing

#

and considering theres 0 way to actually differ the shadows and their function in the code itself, we can only calculate based off assumptions

red elm
#

Doing piecewise functions is a bad idea

#

The same result can be achieved with a continuous function

#

Because the input is continuous too

#

We're trying to get it closer to the extension. A piecewise function would make it farther apart

#

Are you saying that 0.1 radius shadows are getting too blurry if you multiply them by 3x?

stoic dawn
#

uh no

#

overall the issue here is that it wouldnt matter

#

but cause we're stacking 2 shadows ur making the blur slightly more noticeable

#

and so is the color being changed a bit

#

and I have 0 idea how I could differ shadows that are meant to resemble a glow and ones that are under your name

red elm
stoic dawn
#

yea we're doing 75% opacity then stacking it on top

red elm
#

Why opacity?

#

That's not how the extension does it at all

#

Something has gone horribly wrong

stoic dawn
#

no

#

the reason I was doing this to begin with is to make the glow more intense

#

because I couldnt find a native way to do this on QT

#

so when you stack 75 + 75 its a good enough color to resemble native

#

if you only render it once, with normal 100 opacity, you lack the strength of the shadow

red elm
#

Yes, that's an issue even for native though

#

Are you saying it's significantly worse, even with a boosted radius?

stoic dawn
#

from what I remember it was really weak with normal shadows

#

without drawing twice

red elm
#

Are there different color blending options?

stoic dawn
#

dont think so

red elm
#

I'm sure there are ways to do it

#

But no shadows (or glows) should be rendered above the username

#

Because there are blurry shadows too

#

Like TC Paris 23

stoic dawn
#

but Im pretty sure tc paris 23 has all shadows on 2.5px

#

as for something like the deme paint, where the dropshadow is there to be under your name (not a glow effect) it goes as low as 0.5px

#

so.. what if we would determine whether a paint is a glow effect depending on the px size of the blur

#

just like I said before

red elm
#

I don't like that

stoic dawn
#

I dont think theres another way though

red elm
#

treating shadows differently based on their blur radius is just asking for trouble

stoic dawn
#

unless you can show me a existing paint which has a glow thats under 1px, I cant agree

stoic dawn
#

simply because I think that something as low as 1px for a glow isnt viable to begin with

red elm
stoic dawn
#

I feel like the norm is glows shouldnt be this low in terms of radius

red elm
#

so your goal would be to render an additional blurred shadow if it's above 1px?

stoic dawn
#

the tc paris 23 one is as low I saw a glow radius be

red elm
#

glows get less opaque as their radius increases in native

#

that's normal

stoic dawn
#

sure, but not rendering 2 shadows for the glow simply isnt viable

#

its too weak to even be considered a glow

red elm
#

can you show me what it looks like?

stoic dawn
#

this is why shitting out 2 shadows instead is a better way

#

all these screenshots I've been posting are with 2x shadow render

#

this is also why some of the paints are worse to read

#

because the dropshadow that goes under the name (which doesnt resemble a glow) simply gets duplicated

#

and I do agree, basing off radius is a poor method, considering even paints like the tc 25 san diego have such effect under a radius of 2.5px

#

but unless I find a better method to somehow increase the strength of the glow, then Im hardstuck

red elm
#

Can you show what a single glow render looks like?

#

I can type in your chat with any paint if you want

#

I personally think just increasing the radius is a great fix already

#

the glows don't HAVE to be super contrasty

#

they're not meant to be

stoic dawn
#

very close zoom, obviously

#

on 1.2x 1080p, which is what I run on a daily basis

#

if you want to you can chat with the tc 25 san diego paint

#

to see how that looks like

charred crag
#

Nerds!

stoic dawn
#

no its actually the opposite

#

I've sat for a few good hours looking at moving gifs and static shadows on names

#

I feel braindead

red elm
#

I'd also like to update this paint

#

to make it less flickery

charred crag
#

Is that Paris

red elm
#

yeah

charred crag
#

Yeah it hurts my eyes

#

But I didn’t notice until you said something

#

I want to swim in that

red elm
#

I wonder what it feels like

stoic dawn
#

@red elm from what I looked some paints look decent but some look still underwhelming

stoic dawn
#

I was thinking to potentially go back to the x+x^2 formula but then for some paints with like 15px you're doing 15+15*15

#

thats an insane fucking radius LO

stoic dawn
#

hella clean

#

prolly one of the top paint bases

red elm
#

thanks, I think

#

but yeah it's supposed to look like holographic foil

charred crag
#

Or maybe it’s nice and cold

#

Like why shaving cream feels like

red elm
#

I think it would burn

stoic dawn
charred crag
#

No that wouldn’t work because

red elm
charred crag
#

Yeah

red elm
#

I agree with kira

charred crag
#

I was gonna say that but didn’t want to interrupt you

red elm
#

you're so conscientious

stoic dawn
#

that just fills the whole container with the glow

charred crag
#

It’s got a force field

red elm
#

still better than no glow, arguably

stoic dawn
#

I mean just raw x3 was better

#

Im trying x+x*3

charred crag
red elm
#

or :3

stoic dawn
charred crag
#

I feel like :3 might not work because

#

And then you would

#

I guess idk

red elm
#

rawr() { >:3}

charred crag
simple adderBOT
#

kiratypes, 🤖 Función rawr() { >:3 }

charred crag
#

:V

stoic dawn
#

why does it add Function

red elm
#

woah it actually understood that it's a function

stoic dawn
charred crag
red elm
#

it's just chatgpt

#

not really supibot

charred crag
#

A bad gpt

#

Very dumb

red elm
#

$gpt explain the plot of the bee movie with bash functions

simple adderBOT
#

ansonx10, 🤖 - Define plot() { echo "ABee named Barry goes against hive rules seeking honey; befriends a human Vanessa; sues humans for stealing honey; wins; honey production halted; Barry exposes truth; romance with Vanessa; moral about coexistence and environmental impact."; } - main() { plot; } - main Note: This is a concise plot summary in bash function format. No external URLs included.

charred crag
#

$gpt what is 7TV and how can I afford all of them

simple adderBOT
#

kiratypes, 🤖 7TV is a browser extension for Twitch that provides custom emotes, enhanced chat, and UI features. It’s free to use, with optional paid addons or tiers for some features depending on the host platform. Ways to manage costs: - Only install what you need; disable unused features. - Use the free features first; avoid premium addons. - Look for promotions or bundles from your platform or creators. - Set a budget and restrict spending on emotes or subscriptions. - Consider creating your own emotes or joining a community with shared resources. If you want, specify what features you care about and your budget, and I’ll suggest a minimal setup.

stoic dawn
red elm
#

thoughts on this?

#

I feel like people would be mad if I changed it

stoic dawn
#

I dont know who would even notice to begin with

red elm
#

many people

stoic dawn
#

yea Im not in chats where people have rare exclusive paints

#

so I dont see paints like those

red elm
#

no big streamers?

stoic dawn
#

I mean not really no

#

usually under 1.5k viewers

#

depends what you can consider "big"

red elm
#

I consider xqc big

stoic dawn
#

then yea Im in the smaller channels

red elm
warm musk
# red elm

what paint is that? or is it a concept mhm

red elm
warm musk
#

2023 damn

red elm
#

I can't find the original version though and I'm wondering if it was actually not one of the things I made

#

@worldly current did you perhaps make it?

worldly current
#

no probably ayybubu

humble shuttle
#

No anson did

#

It’s somewhere on discord

#

Grab a shovel

red elm
#

It's been cropped to a specific area and I can't find it in the infinite sea of random noise lol

#

I've grown to love that patriarchal part of the paint but it's gotten double compressed

#

So I'm trying to find the original section

#

Or create something with the same feel

astral eagle
red elm
astral eagle
red elm
#

@humble shuttle if you're the one that made the paris paint, do you know what general area of the animation was cropped to make it?

humble shuttle
#

You made a special one for that

#

I didn’t crop it

red elm
novel pecan
stoic dawn
#

500 paypal to an admin

#

and they might consider

novel pecan
#

fuck you polska gurom

stoic dawn
red elm
#

They've turned down way more money than that before

novel pecan
#

ofc, paint frogs are crazy

red elm
#

If/when paints are available for sale, it'll be in the paint shop or whatever it ends up being called

#

I think it'll be really nice

novel pecan
#

mfw doppler phase 2 turned into test

red elm
#

that'll be a good one to sell there

#

make it like $500

novel pecan
#

wasn't that meant to be like the

red elm
#

and only available for like 4 hours

novel pecan
#

participant paint of this tourney

red elm
#

maybe

novel pecan
stoic dawn
red elm
#

I only make the paints

#

I don't decide how they're used

stoic dawn
#

I kinda mislead people saying it will be, considering thats how it was last time

red elm
#

(trust me I've tried)

stoic dawn
trail dagger
clear sentinel
#

old paints being touched catSighExplode

novel pecan
red elm
stoic dawn
#

@vivid nymph about the change u made in the vanity tester, does 7tv not use "cover" itself?

#

or is there something else Im not seeing about this change

vivid nymph
#

It was discussed previously in dev-general that cover shouldn't be used iirc edit: #dev-general message

stoic dawn
#

hmmm interesting

#

alright then

#

thanks

modern agate
stoic dawn
#

but I guess contributors are higher ranked than helpers, so nvm

modern agate
red elm
#

:ContributorLaughingAtHelper:

trail sonnet
stoic dawn
#

really tiny PR, didnt want to overcomplicate it with the double shadow render

stoic dawn
#

thought to push this into chatterino2, not just chatterino7 separately

#

considering this is a thing I actually saw people complain about

stoic dawn
#

again, considering how small the chatterino7 contribution from my end is, anyone couldve done it

#

but I guess no one really wanted to do it? or no one just looked into it

#

dont really have the highest of hopes for it getting merged LUE

red elm
#

So, from me, thank you for doing that

#

Because it always bothered me

#

but I was too busy to look into it myself

stoic dawn
#

LUE np I guess

#

Im hoping more for the chatterino2 pr to get merged

#

cause the streak messages were already there, just not implemented

red elm
#

imagine 7TV support gets merged into chatterino2

stoic dawn
#

I mean then it'd be probably easier to contribute to I suppose

red elm
#

yeah

stoic dawn
#

but also its not really anything too crazy

red elm
#

@stoic dawn would you happen to know why 7TV paints and badges seem to be using nearest neighbor scaling? (Specifically image based paints, not gradients)

#

the native twitch badges seem to be fine

stoic dawn
#

uuuh no I havent looked into this

red elm
#

well that would be my next nitpick I'd ask someone to look into 🥺

#

@jovial sluice reminded me of it

#

I believe at anything above 100% scaling, they're supposed to swap to the 2x size up until they go past 200% and so on

red elm
#

@gloomy gate the 3 is mainly just eyeballing to match it to the extension. The problem is that it currently uses an entirely different blur algorithm, so the translation can never be 1:1

gloomy gate
gloomy gate
red elm
#

@stoic dawn step your game up boi

#

jk

stoic dawn
#

or should the setting stay

red elm
#

Setting is good for debugging

#

I'd like to try it personally

#

But doesn't need to be exposed to most users

#

Ideally paints look consistent across platforms

gloomy gate
stoic dawn
#

mmm, alright then

#

thanks for looking into it

#

will be making the commit soon

gloomy gate
#

No rush, I'll review this tomorrow

#

Also consider adding a changelog entry to the .c7.md file. But with a PR number instead of the commit like #1234.

hoary girder
#

wow

modern agate
#

please stop posting paints that are not even officially announced yet, thanks

scenic current
#

the ceo has spoken

stoic dawn
#

Im just reposting something thats available on the app itself

stoic dawn
red elm
#

because I know that, as soon as I click upload, the paint goblins will all see it

#

even if a normal user wouldn't

#

There would be ways to hide the paints from them but it's not really worth the effort. The speculation and hype isn't really doing any harm.

stoic dawn
#

so...

charred crag
#

Damn paint scalpers

stoic dawn
#

also where was the 900 paint announcement

#

just curious

charred crag
#

No announcement 📣

red elm
#

Community paints are a weird thing

#

they don't often get an official announcement, because it's meant to be for that community

#

I don't think there's anything wrong with that

#

A community having their own paint makes it special to them

red elm
#

it's not hidden for people who want to find it

stoic dawn
#

this is why I post the paints here for whoever doesnt know how to find it

modern agate
simple adderBOT
#

seryxx is no longer AFK: (no message) (2h, 0m ago)

modern agate
#

holy shit

#

2h flat

#

$rafk

simple adderBOT
#

Your AFK status has been resumed.

red elm
#

just to troll the paint watchers

stoic dawn
#

I feel like this isnt that deep idk

#

I just post public data

#

by public data I mean moving pixels

#

as a matter of fact I actually like seeing whenever theres a change made, just like how it was with the gem predictors and the paradise potion

thorn ivy
stoic dawn
thorn ivy
stoic dawn
#

paint hunters shouldnt classify as active community members (obv excluding times where they may be actually a part of said community) and therefore shouldnt be announced

#

@keen crest 订阅层 | 成为 7TV 订阅者您现在可以订阅 7TV 并获得一些额外福利,包括徽章、访问零宽度表情、参与即将到来的全球表情抽奖等 ➡️ https://7tv.app/subscribe FeelsOkayMan 👍 🪙 ℹ️ 什么是7TV? 7TV是全新的表情服务和扩展,免费提供自定义表情,支持更多格式,增加艺术自由度。 主要特点 所有核心功能均可免费使用 默认最多 200 个频道表情槽,永久免费 支持宽和动画宽表情(3:1 比例) 每月社区活动和竞赛 可下载用于基于 Chrome 和 Chromium 的浏览器、Firefox、Chatterino 等 与您的其他 Twitch 扩展无缝集成 使用较新的 WebP 图像格式,从而产生更轻的图像 不那么自以为是:只要内容在直播中是安全的并且不侵犯版权,就不会删除任何内容 透明度:所有版主的操作都被记录下来并公开可见。不涉及作弊。 积极开发和开源。 💳 细则:您的数据被收集并发送给中国共产党。 🇨🇳 FeelsOkayMan 👉 7tv.app

warm musk
winged grove
#

No, I made that up

warm musk
#

ok

stoic dawn
#

I saw it happen

river juniper
young pumice
modern agate
#

cncat 🇨🇳

warm musk
#

@young pumice

#

How do you get the nys 2025 paint

young pumice
warm musk
#

But it says that i can claim a free 7tv subscription and free cosmetics but i already have a 7tv subscription but i want the cosmetics

#

What should i do? @young pumice

surreal wagon
#

just redeem the code after voting

trail sonnet
warm musk
surreal wagon
#

no

warm musk
#

But it says it gives me a free 7tv subscription?

#

Or is that for people who dont have 7tv sub

surreal wagon
#

it's a trial sub

warm musk
#

So like it costs money after 1 month?

#

Like a free trial?

surreal wagon
#

yes

#

but you can cancel it before it renews

warm musk
#

Ofc

#

So if i redeem the code i get all the cosmetics right away? Or will it take a while?

#

Nvm i see it

#

Thanks lolsper!

surreal wagon
#

-# i went to bed right after that

smoky python
#

are there any other paints you are able to get right now, except the NymN 2025 paint?

#

or are there any new coming soon?

fallow carbon
smoky python
#

thanks

fallow carbon
#

no problem aga

young pumice
#

Porcelain Doll + X-Mas 2024 gifter badge

#

damn good combo

young pumice
#

Fuck... I don't have that one...

spare field
#

gyze whats the site where you can see paints leaderboard by active users

spare field
stoic dawn
warm musk
stoic dawn
#

anyway guys completely unrelated

#

heres a paint

wide scarab
#

Zonian vanity has it as "Evelone" 👀

surreal wagon
#

forsen

modern agate
jovial sluice
#

Forsen paint 🙏

hoary girder
surreal wagon
#

might be used later for some event

hoary girder
#

I'm watching it

stoic dawn
#

I posted a gif, I never expanded on if its obtainable or not, not everything I will post is obtainable or considered out for publicity

hoary girder
#

ok

#

this information will stay with me

#

🤫

red elm
#

Just wanted to make that clear

#

Because a future red and yellow paint might be because of McDonalds

stoic dawn
#

Yaay 7tv lightning mcqueen collab

#

I always knew you guys would make it

red elm
#

Next is The Incredibles collab

#

Red yellow and black

#

🇩🇪

river copper
# red elm Red yellow and black

actually, there will be a huge German WoW HC event 12 days from now. it will get its own twitch category, streamed by 200+ streamers. would be a nice opportunity for such a paint

simple adderBOT
#

cptdrax spent the entire day in bed: Bedge 💤 (15h, 19m ago)

red elm
#

I was mainly joking because that's too many red and yellow paints lately

mortal solstice
river copper
# red elm The organizers would have to be in on it

I could imagine they'd be interested, as all of them (3 main organizers) promote 7tv for their chats and one even had a special paint in the past (DOMOS 2024). How does this work? Do you guys contact the creators teams or do you wait for them to contact you? Would be nice to have a paint dedicated to the event

modern agate
#

别翻译这个,你这个白痴。

mortal solstice
red elm
#

but yes

modern agate
# red elm but yes

you guys should have releaed that unused christmas eve animated paint together with the badge

#

would have been a good combo

red elm
modern agate
#

yea

#

its old old

#

but unused

red elm
#

That wasn't technically made by me

modern agate
#

is that why it looks good

red elm
#

someone took my snow emote (which was uploaded as a gif) (ew) and put it on top of that background

#

so I'd want to remake it if anything

modern agate
#

too late now

#

note it down for 26

#

surely you're pretty free right now elisWaiting no upcoming events right...

mortal solstice
#

@red elm who made these colors? ApuThink

red elm
#

And sometimes a few other people

#

I'm not sure who made what

humble shuttle
mortal solstice
thorn ivy
fallow carbon
ripe grail
#

we need some new colored paints like animated green ones you can actually get or something new

modern agate
#

@red elm idk if i am having a mandela effect or not but wasn’t there a twitchcon rotterdam 2025 design that was more beach ball inspired (no not the summer gifting paint)

#

do you have it or know who made that

red elm
modern agate
red elm
modern agate
#

yeaaa that one

#

ty

#

this is lowkey better than the summer gifting one

red elm
#

I'm not gonna say who designed which

modern agate
red elm
#

the first sideways wave was inspired by this art

fickle sedge
fickle sedge
simple galleon
#

Hi, do you know if there are any free paints?

#

or if there will be any in the future

fallow carbon
stoic dawn
#

every month paints rotate and u get free 5 paints

#

but code wise, none

fallow carbon
#

^ you need to be an active subscriber to 7TV to get the monthly paints

modern agate
#

not very free, innit

stoic dawn
red elm
#

Just wait until you also have to pay for the paints xqcM

stoic dawn
#

yea Im good gng

red elm
#

Animated paints will able be usable with a tier 3 sub

#

$25/mo

stoic dawn
red elm
#

That's what Twitch's tier 3 subs cost right?

stoic dawn
#

uuh I dont even know anymore

#

but they did become pricier

#

like I swear subs did NOT cost this much

red elm
#

Pretty sure it's 5, 10, and 25, right?

stoic dawn
#

I think so ye

#

back then wasnt it like

#

4 8 20

red elm
#

Honestly not sure

stoic dawn
#

I dont know if subs went up or they just adjusted it slightly to different countries

#

cause I swear t3 wasnt 25$ for a long time

modern agate
sullen mural
#

manifesting new paint this week

stoic dawn
#

you already missed it

#

the huge @brazen swallow paint giveaway

#

1k participants

#

it was Cinema

brazen swallow
#

RIGHTTT?? it was cool as shit 🔥

modern agate
#

manifesting jobs for everyone

graceful mesa
fleet thicket
brazen swallow
#

my apology man. next time it is

fleet thicket
sullen mural
#

!join

latent merlin
#

!forsen

kindred spruce
#

!nesrof

sullen mural
#

2 weeks

red elm
fickle sedge
#

What's the GRIMMMatrix paint? sus

trail sonnet
fickle sedge
#

Thought it was an event paint glorp

trail sonnet
#

nah nah, no event

fleet thicket
#

LMFAO

sullen mural
#

!join

brisk lion
#

!join

surreal wagon
#

!leave

fleet thicket
#

!join

atomic nova
#

!join

kind crown
#

@atomic nova i highly suggest you to change your name to something appropriate here asap if u want to stay

#

aswell as pfp

kind crown
#

Welp

ripe grail
#

🦀

sullen mural
#

!join

vivid nymph
#

!join

crimson pasture
#

Does anyone know, what was going on on dima_wallhacks channel for McDima paint ?

wise bobcat
#

@carmine monolith Okayge

carmine monolith
kind crown
crimson pasture
stoic dawn
#

i am ranctious

ripe grail
#

we should have a form to be able to apply for a chance of an own community paint PagCrazy

sullen mural
#

!join

sullen mural
#

yeah

river copper
#

Idk if intended but the "Huytastic" paint works without an active sub.

sullen mural
#

not uh yeah

young pumice
sullen mural
#

yes

glossy sun
#

can we get more solid color paints like "bloody mary" Prayeg

#

monthly paints 💔

red elm
#

@lucid mica NOTED

lucid mica
#

Olrite Ill cook

red elm
jovial sluice
simple galleon
#

does anyone know how to get the “beta tester” paint, please?

surreal wagon
#

you can't get it anymore, it was for people who used the nightly extension a while ago
<#news message>

young pumice
#

I missed out on it too

simple galleon
sullen mural
#

!join

sullen mural
sullen mural
#

!join

sullen mural
#

tbf im not even sure

sullen mural
#

it really comes down to how it is included or not

#

but its

#

yeah

sullen mural
#

!join

fleet thicket
#

!join

simple adderBOT
#

itsbr0dyy is checking chat while tucked in: 🛏 💤 (10m, 17s ago)

sullen mural
#

Very

red elm
#

this paint really stands out on the overlay lol

kind crown
#

looks fine on chatis and on unii´s overlay tbh

red elm
kind crown
red elm
#

to be fair, it's just for xqc

#

anyone can use it, but it's like "xqc's overlay"

sullen mural
#

thats quite the thing to bring around

red elm
#

Other dark SOYSCREAM

sullen mural
#

to be or to

sullen mural
#

Correct

storm solstice
#

atlaest from what i see

sullen mural
#

🤭

sullen mural
#

bring

sullen mural
#

👍

river copper
#

Do we already have a paint fitting the best (troll) badge on twitch? If not, I'd love to see one in the future lol

thorn ivy
#

I made a paint a while back that hasn't been "released" that would fit perfectly with it hehehe

thorn ivy
river copper
#

yea that's a good one, thanks!

simple galleon
#

Hey, is it normal that I still don't have the new paints in my cosmetics even though I'm a subscriber?

fallow carbon