#silly!

1 messages · Page 1 of 1 (latest)

teal cypress
spiral aurora
#

should be obvious that you can change --prompt-text to anything else if you want...

delicate storm
spiral aurora
teal cypress
#

explode

spiral aurora
outer egret
#

I never changed my text lol, I've also been using this for a while :3

toxic lagoon
#

is there a way to get the channel name for this?

#

like if i wanted it to have yap in "silly!" instead of Message "silly!" or something

ocean roost
toxic lagoon
#

sad

hollow spire
#

Would it be possible to set this to a list that changes each time you load discord/ change servers

toxic lagoon
#

probably only with js

#

i dont think css has any way to randomly select from a list

modern robin
hollow spire
#

i mean i know js but i didnt know you could even use it on discord?

toxic lagoon
#

discord is made with js. its a web app

delicate storm
#

pretty much every website uses some form of JS, otherwise it wouldnt react to anything you did on it

#

prolly some exceptions, but most sites use it

rose raven
#

So many great ideas have died with the words “needs JS”

ocean roost
#

yeah because running third party plugins is much harder than css snippets

hollow spire
#

yeah i do not want to run the dev builds because last i did it was super tedious

#

and would just randomly stop working

rose raven
#

Developing plugins is also in general just more tedious than CSS

teal cypress
#

depends what youre trying to do

lunar reef
#

how to install this @spiral aurora

spiral aurora
spiral aurora
#

Also, @lunar reef, make sure to put all "@import url" stuff on top of css config

delicate storm
#

ig some classes are missing from the updater still (or just missing from discord) so heres a selector version

:root{
   --prompt-text: "brrau~! :3";
}
/* custom chat bar input text  */
/* hide existing text */
[class*=placeholder][class*=slateTextArea] {visibility: hidden;}

/* add custom text */
[class*=placeholder][class*=slateTextArea]::before {visibility: visible;content: var(--prompt-text); /* dont break your quotes :3 */}
haughty timber
#

it doesn't seem to work in Vendroid?

spiral aurora
delicate storm
haughty timber
solid mango
#

yo does anyone know how i make this promt a bit more transparent?

delicate storm
# solid mango yo does anyone know how i make this promt a bit more transparent?
:root{
   --prompt-text: "brrau~! :3";
}
/* custom chat bar input text  */
/* hide existing text */
[class*=placeholder][class*=slateTextArea] {visibility: hidden;}

/* add custom text */
[class*=placeholder][class*=slateTextArea]::before {visibility: visible; opacity: 25%; content: var(--prompt-text); /* dont break your quotes :3 */}
#

instead of opacity, you can use a hex code
color: #fff to make it any color you want, as well as opacity

lethal lark
# delicate storm ```css :root{ --prompt-text: "brrau~! :3"; } /* custom chat bar input text *...

in case anyone else wants the random things I wanted i decided to share :3
it bothered me that in channels i cant talk in it told me to be silly because i couldn't so i changed it and a similar thing with in the user popouts as you can see

/*    custom chat bar input text    */
/* default prompt */
:root{
    --prompt-text: "be silly :3";
}

/* prompt in channels you dont have permission to talk in */
[class*=channelTextAreaDisabled] {
    --prompt-text: "no silly :c";
}

/* prompt in profile popouts */
[class*=textAreaForUserProfile] {
    --prompt-text: "perchance a bit of silliness :p";
    opacity: 50%;
}

/* hide existing text */
[class*=placeholder][class*=slateTextArea] {visibility: hidden;}

/* add custom text */
[class*=placeholder][class*=slateTextArea]::before {visibility: visible;content: var(--prompt-text); /*dont break your quotes :3*/}

i have no idea why i had to add the opacity: 50% to the popout one, guessing its because the default is for it to be blank, so there is likely a way to optomize/refactor mine to make it work better bc all i did was figure out how to make it look like what i wanted and moved on

-# ps obviously most of this is copied from LuLu im not that smart :3

delicate storm
lethal lark
#

one of these days i’ll actually make something original guys trust

delicate storm
#

blobcatcozy find somethin you dont like and change it, like maybe icons or positioning of something

lethal lark
#

the thing is i don’t actually know css lmaooo i just know it enough to make lil tweaks to already existing code bc the syntax is there already

dusky moss
spiral aurora
delicate storm
# dusky moss sorry. i think custom emoji bar is broken/not working anymore.
:root{
    --customEmojiIconURL: url(https://cdn.discordapp.com/emojis/1217110775601172591.gif?size=240&quality=lossless);
    --customEmojiIconMask: url(https://cdn.discordapp.com/emojis/1217110775601172591.gif?size=240&quality=lossless);
}

/* Custom Emoji Button */
[class*=emojiButton] [class*=spriteColored]{background: var(--customEmojiIconURL) center/contain no-repeat;}

[class*=emojiButton] [class*=spriteGreyscale]{mask: var(--customEmojiIconMask) center/contain no-repeat;}

Fix for non-english clients

#

if you dont want image to animate, change .gif to .png

#

any image should work

dusky moss
#

thank you!

torpid willow
#

this theme isn't working for me now

#

@spiral aurora (sorry for pinging) is there smth wrong with it or am i doing smth wrong)

spiral aurora