NizzQ <3
nizzqv2.css
nizzqv3.css
Nameless
Default.css
Christmas.css
Lore.css
flow.css
Ascension.css
Orange.css (by dillkeyz)
Pink.css (by dillkeyz)
bkc.css (Irrvlo)
Irrvlos_css.css (Irrvlo)
Clan CSS
Titans.css (xyrrm)
VORTOX.css (Nayyras)
ImOnSmoko3.css (Nayyras)
Forever.css (_wind)
campers.css
blessed.css
BROS
BROS_ships.css
rezunsxBROS.css
bros-3.css
bros-3_1.css
bros4.css
bros4_1.css
burn_1.css
bros-1.css
bros_street.css
BROS_red.css
bros_pink_1.css
bros_new_css.css
bros_new_css_2 (1).css
bros_another_pink_css.css
BROS_.css
bros (1).css
water_backgrouind_bros_csss.css
black_bros_css.css
sun_thingy_bros.css
red_BROS.css
new_bros.css
BROS (2).css
green_bros_2.css
green_BROS.css
christmas_bros.css
Primordial
Primordial BLUE.css (Based on Nameless)
Primordial RED.css (Based on Nameless)
Primordial3.css (Nayyras)
Primordial REDv2.css (Based on Nameless)
Primordial CHERRY.css (Based on Nameless)
Primordial DARK.css (Based on Nameless)
Content-Creators
ApplesxLillsCustom.css (AppleSeedOG)
ApplesNewCSSRV.css (AppleSeedOG)
viper2.css (ACEIBI)
onfire0.css (OnFire29 & NizzQ)
WolfeyHentai.css (exiled_wolves)
Others
Jaylin.css (Jaylin)
Celty.css (DeezyFuh)
fix_task_by_cryptoknight2868.css
zombie400.public.css
animecute.css
og.css
Carbon fiber.css (humble.css)
messi.css (Messi/Aramaros)
isaa.css
japanese_castle.css (npde)
japanese_art.css (npde/Imouh)
ashpokemon.css
RainbowNoFlame.css
BlackCloudyWithMoon.css (Winky)
nguyen.css
fabinnew.css
cyber.css (SnowierThrone)
deezy.css (Vance)
vaporwave.css (OnFire29 & NizzQ)
jettval.css (qwerty / Avici)
minicables_1.css (Minicables)
qwertyChromebook_waifu.css (qwerty)
snow.css
kurumi.css (Nayyras) -> css relies on an imgur background, because of filesize
ZuckMuck.css
BlurInvite.css (Sheriff)
GUIDES
How to have a static CSS url
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 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') ;}