Join 75,000+ Looksmaxxing Members!

Register a FREE account today to become a member. Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox.

  • DISCLAIMER: DO NOT ATTEMPT TREATMENT WITHOUT LICENCED MEDICAL CONSULTATION AND SUPERVISION

    This is a public discussion forum. The owners, staff, and users of this website ARE NOT engaged in rendering professional services to the individual reader. DO NOT use the content of this website as an alternative to personal examination and advice from licenced healthcare providers. DO NOT begin, delay, or discontinue treatments and/or exercises without licenced medical supervision. Learn more

Rage How do transgenders act when they're alone

Register to hide this ad
better yet HOW THE FUCK ARE YOU USING GRADIENTS
 
you could prolly write a script to generate gradient text
 
Hello, this is a gradient string!
 
Hello, this is a gradient string!
Python:
text = "Hello, this is a gradient string!"
start = (255, 0, 128)
end = (0, 128, 255)
output = "gradient.txt"

n = max(len(text) - 1, 1)
parts = []
for i, ch in enumerate(text):
    t = i / n
    r = round(start[0] + (end[0] - start[0]) * t)
    g = round(start[1] + (end[1] - start[1]) * t)
    b = round(start[2] + (end[2] - start[2]) * t)
    if ch == " ":
        parts.append(" ")
    else:
        parts.append(f"[COLOR=#{r:02x}{g:02x}{b:02x}]{ch}[/COLOR]")

with open(output, "w") as f:
    f.write("".join(parts))
 
Python:
text = "Hello, this is a gradient string!"
start = (255, 0, 128)
end = (0, 128, 255)
output = "gradient.txt"

n = max(len(text) - 1, 1)
parts = []
for i, ch in enumerate(text):
    t = i / n
    r = round(start[0] + (end[0] - start[0]) * t)
    g = round(start[1] + (end[1] - start[1]) * t)
    b = round(start[2] + (end[2] - start[2]) * t)
    if ch == " ":
        parts.append(" ")
    else:
        parts.append(f"[COLOR=#{r:02x}{g:02x}{b:02x}]{ch}[/COLOR]")

with open(output, "w") as f:
    f.write("".join(parts))
FUCKING PYTHON NERDS
 
Hello, this is a gradient string!
 
Why didn't IT work!?
you have to paste using the text file, here is what it generated for me:
Code:
[COLOR=#ff0080]H[/COLOR][COLOR=#f70484]e[/COLOR][COLOR=#ef0888]l[/COLOR][COLOR=#e70c8c]l[/COLOR][COLOR=#df1090]o[/COLOR][COLOR=#d71494],[/COLOR] [COLOR=#c71c9c]t[/COLOR][COLOR=#bf20a0]h[/COLOR][COLOR=#b724a4]i[/COLOR][COLOR=#af28a8]s[/COLOR] [COLOR=#9f30b0]i[/COLOR][COLOR=#9734b4]s[/COLOR] [COLOR=#873cbc]a[/COLOR] [COLOR=#7844c3]g[/COLOR][COLOR=#7048c7]r[/COLOR][COLOR=#684ccb]a[/COLOR][COLOR=#6050cf]d[/COLOR][COLOR=#5854d3]i[/COLOR][COLOR=#5058d7]e[/COLOR][COLOR=#485cdb]n[/COLOR][COLOR=#4060df]t[/COLOR] [COLOR=#3068e7]s[/COLOR][COLOR=#286ceb]t[/COLOR][COLOR=#2070ef]r[/COLOR][COLOR=#1874f3]i[/COLOR][COLOR=#1078f7]n[/COLOR][COLOR=#087cfb]g[/COLOR][COLOR=#0080ff]![/COLOR]
 
Hello, this is a gradient string!Ghoultune is The Best.
 
Ghoultune is the best
Code:
[COLOR=#ff0080]G[/COLOR][COLOR=#f20686]h[/COLOR][COLOR=#e60d8d]o[/COLOR][COLOR=#d91393]u[/COLOR][COLOR=#cc1a99]l[/COLOR][COLOR=#bf20a0]t[/COLOR][COLOR=#b226a6]u[/COLOR][COLOR=#a62dac]n[/COLOR][COLOR=#9933b3]e[/COLOR] [COLOR=#8040c0]i[/COLOR][COLOR=#7346c6]s[/COLOR] [COLOR=#5953d3]t[/COLOR][COLOR=#4c5ad9]h[/COLOR][COLOR=#4060df]e[/COLOR] [COLOR=#266dec]b[/COLOR][COLOR=#1a73f2]e[/COLOR][COLOR=#0d7af9]s[/COLOR][COLOR=#0080ff]t[/COLOR]
 

Users who are viewing this thread

Back
Top