NizzQ <3

Nameless

Clan CSS

BROS

Primordial

Content-Creators

Others

GUIDES

How to have a static CSS url

Local Files: Clients Celestial and BetterKirkaClient
Local Files: Browser you can use Stylus
Remote Files: Browser you can use Kirka-Css-Injector Tampermonkey userscript (For the people wondering, Tampermonkey is allowed... Just cheats/hacks are not allowed.)
Remote Files: Clients NamelessClient and KirkaClient

Local Files

You can have a CSS stored in your folder for example: "C:\\Users\\Anwender\\Documents\\BetterKirkaClient\\scripts\\CSS\\main.css" and then use it in some clients:
  • BetterKirkaClient
  • Celestial
  • For NamelessClient, it doesn't work, because they do it different
    For KirkaClient I have no data, if it works
    For browser I suggest using Stylus

    Remote Files

    You can use a service like https://cdn.discordapp.xyz/ to have a static discord url
    You take your existing discord url and replace the .com/.net and make it to .xyz - possible problem: You rely on the service staying online/working/active
    You can use different hosts, but you have to rely on them staying like that... (or host one service on your own)

    How to make a CSS without data stored somewhere online? (Aka converting it to base64)

    You can convert images/css-files/fonts and basically everything to a base64 string. That base64 string can be implemented in the css directly
    My favorite site for converting images to base64 strings is base64.guru
    You select the file (local/remote idc) then you set the output format to "Data URI -- data:content/type;base64"
    You click Encode image to Base64

    Fonts in base64

    OPENTYPE (.OTF, .OTC, .TTF, .TTC) FONTS: @font-face{font-family:'yourfontname'; src: url(data:font/opentype;charset=utf-8;base64,YOUR BASE64 STRING HERE);}
    WOFF FONTS: @font-face{font-family:'yourfontname'; src: url(data:application/font-woff;charset=utf-8;base64,YOUR BASE64 STRING HERE) format(woff);}
    WOFF2 FONTS: @font-face{font-family:'yourfontname'; src: url(data:application/font-woff2;charset=utf-8;base64,YOUR BASE64 STRING HERE) format(woff2);}
    TTF FONTS: @font-face{font-family:'yourfontname'; src: url(data:application/font-ttf;charset=utf-8;base64,YOUR BASE64 STRING HERE) format('truetype');}