Skip to content

Instantly share code, notes, and snippets.

@rebane2001
Last active March 27, 2024 22:06
Show Gist options
  • Save rebane2001/07f2d8e80df053c70a1576d27eabe97c to your computer and use it in GitHub Desktop.
Save rebane2001/07f2d8e80df053c70a1576d27eabe97c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Rebane's Discord Colored Text Generator</title>
<meta charset="UTF-8">
<meta name="description" content="Rebane's Discord Colored Text Generator">
<meta name="author" content="rebane2001">
<style>
/*
This license applies to the entire page, not just the style block.
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org>
*/
html {
font-family: sans-serif;
background-color: #36393F;
text-align: center;
color: #FFF;
}
.container {
max-width: 500px;
margin: auto;
}
.flex {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#textarea {
width: 600px;
height: 200px;
border-radius: 5px;
resize: both;
overflow: auto;
text-align: left;
font-family: monospace;
background-color: #2F3136;
color: #B9BBBE;
border: #202225 1px solid;
padding: 5px;
display: inline-block;
white-space: pre-wrap;
font-size: 0.875rem;
line-height: 1.125rem;
text-indent: 0;
}
.button {
min-height: 32px;
min-width: 32px;
border: none;
border-radius: 3px;
color: #fff;
background-color: #4f545c;
font-size: 14px;
padding: 2px 16px;
cursor: pointer;
transition: background-color 250ms linear;
}
a,a:visited {
color: #00AFF4
}
.tooltip {
display: none;
position: absolute;
background-color: #3BA55D;
border: none;
border-radius: 3px;
color: #fff;
font-size: 14px;
padding: 8px 16px;
top: 0;
}
.ansi-1 { font-weight:700; text-decoration:none; }
.ansi-4 { font-weight:500; text-decoration:underline; }
.ansi-30 { color: #4f545c; }
.ansi-31 { color: #dc322f; }
.ansi-32 { color: #859900; }
.ansi-33 { color: #b58900; }
.ansi-34 { color: #268bd2; }
.ansi-35 { color: #d33682; }
.ansi-36 { color: #2aa198; }
.ansi-37 { color: #ffffff; }
.ansi-30-bg { background-color: #4f545c; }
.ansi-31-bg { background-color: #dc322f; }
.ansi-32-bg { background-color: #859900; }
.ansi-33-bg { background-color: #b58900; }
.ansi-34-bg { background-color: #268bd2; }
.ansi-35-bg { background-color: #d33682; }
.ansi-36-bg { background-color: #2aa198; }
.ansi-37-bg { background-color: #ffffff; }
.ansi-40 { background-color: #002b36; }
.ansi-41 { background-color: #cb4b16; }
.ansi-42 { background-color: #586e75; }
.ansi-43 { background-color: #657b83; }
.ansi-44 { background-color: #839496; }
.ansi-45 { background-color: #6c71c4; }
.ansi-46 { background-color: #93a1a1; }
.ansi-47 { background-color: #fdf6e3; }
</style>
</head>
<body>
<h1>Rebane's Discord <span style="color:#5865F2">Colored</span> Text Generator</h1>
<div class="container">
<h3>About</h3>
<p>This is a simple app that creates colored Discord messages using the ANSI color codes available on the latest Discord desktop versions.</p>
<p>To use this, write your text, select parts of it and assign colors to them, then copy it using the button below, and send in a Discord message.</p>
<h3>Source Code</h3>
<p>This app runs entirely in your browser and the source code is freely available on <a href="https://gist.github.com/rebane2001/07f2d8e80df053c70a1576d27eabe97c">GitHub</a>. Shout out to kkrypt0nn for <a href="https://gist.github.com/kkrypt0nn/a02506f3712ff2d1c8ca7c9e0aed7c06">this guide</a>.</p>
</div>
<h2>Create your text</h2>
<button data-ansi="0" class="button style-button">Reset All</button>
<button data-ansi="1" class="button style-button ansi-1">Bold</button>
<button data-ansi="4" class="button style-button ansi-4">Line</button>
<br><br>
<strong>FG</strong>
<button data-ansi="30" class="button style-button ansi-30-bg">&nbsp;</button>
<button data-ansi="31" class="button style-button ansi-31-bg">&nbsp;</button>
<button data-ansi="32" class="button style-button ansi-32-bg">&nbsp;</button>
<button data-ansi="33" class="button style-button ansi-33-bg">&nbsp;</button>
<button data-ansi="34" class="button style-button ansi-34-bg">&nbsp;</button>
<button data-ansi="35" class="button style-button ansi-35-bg">&nbsp;</button>
<button data-ansi="36" class="button style-button ansi-36-bg">&nbsp;</button>
<button data-ansi="37" class="button style-button ansi-37-bg">&nbsp;</button>
<br><br>
<strong>BG</strong>
<button data-ansi="40" class="button style-button ansi-40">&nbsp;</button>
<button data-ansi="41" class="button style-button ansi-41">&nbsp;</button>
<button data-ansi="42" class="button style-button ansi-42">&nbsp;</button>
<button data-ansi="43" class="button style-button ansi-43">&nbsp;</button>
<button data-ansi="44" class="button style-button ansi-44">&nbsp;</button>
<button data-ansi="45" class="button style-button ansi-45">&nbsp;</button>
<button data-ansi="46" class="button style-button ansi-46">&nbsp;</button>
<button data-ansi="47" class="button style-button ansi-47">&nbsp;</button>
<br><br>
<div class="flex"><div id="textarea" contenteditable="true">Welcome to&nbsp;<span class="ansi-33">Rebane</span>'s <span class="ansi-45"><span class="ansi-37">Discord</span></span>&nbsp;<span class="ansi-31">C</span><span class="ansi-32">o</span><span class="ansi-33">l</span><span class="ansi-34">o</span><span class="ansi-35">r</span><span class="ansi-36">e</span><span class="ansi-37">d</span>&nbsp;Text Generator!</div></div>
<br>
<button class="button copy">Copy text as Discord formatted</button>
<br>
<br>
<small>This is an unofficial tool, it is not made or endorsed by Discord.</small>
<div class="tooltip">Tooltip</div>
<script type="text/javascript">
const textarea = document.querySelector("#textarea");
const copybtn = document.querySelector(".button.copy");
const tooltip = document.querySelector(".tooltip");
const tooltipTexts = {
// FG
"30": "Dark Gray (33%)",
"31": "Red",
"32": "Yellowish Green",
"33": "Gold",
"34": "Light Blue",
"35": "Pink",
"36": "Teal",
"37": "White",
// BG
"40": "Blueish Black",
"41": "Rust Brown",
"42": "Gray (40%)",
"43": "Gray (45%)",
"44": "Light Gray (55%)",
"45": "Blurple",
"46": "Light Gray (60%)",
"47": "Cream White",
};
// Some basic escaping of pasted HTML tags, not ideal but good enough for this situation.
textarea.oninput = () => {
const base = textarea.innerHTML.replace(/<(\/?(br|span|span class="ansi-[0-9]*"))>/g,"[$1]");
if (base.includes("<") || base.includes(">")) textarea.innerHTML = base.replace(/<.*?>/g,"").replace(/[<>]/g,"").replace(/\[(\/?(br|span|span class="ansi-[0-9]*"))\]/g,"<$1>");
};
// https://stackoverflow.com/a/61237402
document.addEventListener('keydown', event => {
if (event.key === 'Enter') {
document.execCommand('insertLineBreak')
event.preventDefault()
}
});
document.querySelectorAll(".style-button").forEach((btn) => {
btn.onclick = () => {
if (!btn.dataset.ansi) {
textarea.innerText = textarea.innerText;
return;
}
const selection = window.getSelection();
const text = window.getSelection().toString();
const span = document.createElement("span");
span.innerText = text;
span.classList.add(`ansi-${btn.dataset.ansi}`);
const range = selection.getRangeAt(0);
range.deleteContents();
range.insertNode(span);
range.selectNodeContents(span);
selection.removeAllRanges();
selection.addRange(range);
};
btn.onmouseenter = () => {
if (!(btn.dataset.ansi > 4)) return;
const rect = btn.getBoundingClientRect();
tooltip.style.display = "block";
tooltip.innerText = tooltipTexts[btn.dataset.ansi];
tooltip.style.top = `${rect.top - 36}px`;
tooltip.style.left = `${rect.left - tooltip.clientWidth/2 + btn.clientWidth/2}px`;
};
btn.onmouseleave = () => {
tooltip.style.display = "none";
};
});
function nodesToANSI(nodes, states) {
let text = ""
for (const node of nodes) {
if (node.nodeType === 3) {
text += node.textContent;
continue;
}
if (node.nodeName === "BR") {
text += "\n";
continue;
}
const ansiCode = +(node.className.split("-")[1]);
const newState = Object.assign({}, states.at(-1));
if (ansiCode < 30) newState.st = ansiCode;
if (ansiCode >= 30 && ansiCode < 40) newState.fg = ansiCode;
if (ansiCode >= 40) newState.bg = ansiCode;
states.push(newState)
text += `\x1b[${newState.st};${(ansiCode >= 40) ? newState.bg : newState.fg}m`;
text += nodesToANSI(node.childNodes, states);
states.pop()
text += `\x1b[0m`;
if (states.at(-1).fg !== 2) text += `\x1b[${states.at(-1).st};${states.at(-1).fg}m`;
if (states.at(-1).bg !== 2) text += `\x1b[${states.at(-1).st};${states.at(-1).bg}m`;
}
return text;
}
let copyCount = 0;
let copyTimeout = null;
copybtn.onclick = () => {
const toCopy = "```ansi\n" + nodesToANSI(textarea.childNodes, [{ fg: 2, bg: 2, st:2 }]) + "\n```";
navigator.clipboard.writeText(toCopy).then(() => {
if (copyTimeout) clearTimeout(copyTimeout);
const funnyCopyMessages = copybtn.innerText = ["Copied!", "Double Copy!", "Triple Copy!", "Dominating!!", "Rampage!!", "Mega Copy!!", "Unstoppable!!", "Wicked Sick!!", "Monster Copy!!!", "GODLIKE!!!", "BEYOND GODLIKE!!!!", Array(16).fill(0).reduce(p => p + String.fromCharCode(Math.floor(Math.random() * 65535)),"")];
copybtn.style.backgroundColor = (copyCount <= 8) ? "#3BA55D" : "#ED4245";
copybtn.innerText = funnyCopyMessages[copyCount];
copyCount = Math.min(11, copyCount + 1);
copyTimeout = setTimeout(() => {
copyCount = 0;
copybtn.style.backgroundColor = null;
copybtn.innerText = "Copy text as Discord formatted";
}, 2000)
}, (err) => {
// We don't need to stop the users if they get a little too excited about the button
if (copyCount > 2) return;
alert("Copying failed for some reason, let's try showing an alert, maybe you can copy it instead.");
alert(toCopy);
});
}
</script>
</body>
</html>
@aheze
Copy link

aheze commented May 9, 2022

Nice work!

@FrostBird347
Copy link

FrostBird347 commented May 10, 2022

I would recommend adding

white-space: pre-wrap;
font-size: 0.875rem;
line-height: 1.125rem;
text-indent: 0;

to #textarea in the css to make it match discord's code block more accurately.

At the very least, white-space: pre-wrap; should be set because currently the text box handles whitespace characters differently from discord's code block, making it difficult to work with some types of ascii art.

@koutsie
Copy link

koutsie commented May 22, 2022

white-space: pre-wrap;
font-size: 0.875rem;
line-height: 1.125rem;
text-indent: 0;

+1 to this, looks way better!

@rebane2001
Copy link
Author

@FrostBird347 Thanks, added!

@AstragoDE
Copy link

AstragoDE commented Jun 2, 2022

I do not want to accuse anyone of stealing, but I have found a repo with the same webpage. Just wanted to let you know: https://github.com/crossface001/discord-colored-text-generator

I was pushed 1 day after this gist was created.

@FrostBird347
Copy link

I do not want to accuse anyone of stealing, but I have found a repo with the same webpage. Just wanted to let you know: github.com/crossface001/discord-colored-text-generator

I was pushed 1 day after this gist was created.

https://github.com/crossface001/discord-colored-text-generator/commit/d4435839b9c89e41a9c2d1d0379485355420aa5d

@AstragoDE
Copy link

https://github.com/crossface001/discord-colored-text-generator/commit/d4435839b9c89e41a9c2d1d0379485355420aa5d

I know it is very, very likely, but I don't think I am in the position of actually accusing someone (the two people might know each other and worked on the project together). But it is very suspicious indeed.

@rebane2001
Copy link
Author

While I don't like that @crossface001 just took my code and only changed the name without leaving credit, I stand by the license (The Unlicense) I apply to my code, which means I will not issue a takedown or anything of that sort. This code is free for anyone to use however they please (and while I do appreciate crediting where appropriate, it is not required).

@Alphaaaaaaaaaa
Copy link

Really great work! A "rainbow" button could possibly be a nice addition.

@Bartjan98
Copy link

Really great work! A "rainbow" button could possibly be a nice addition.

nice idea

@Bartjan98
Copy link

can some help with this because if i send it from a desktop and look at it form my iphone instead of the colors i see the code behind it.
does anyone know how to see the colors or is that something can,t because of mobile platform?

@GX-Hacker
Copy link

can some help with this because if i send it from a desktop and look at it form my iphone instead of the colors i see the code behind it. does anyone know how to see the colors or is that something can,t because of mobile platform?

Discord mobile doesn't support that yet, neither Android or iOS

@Ju-lion28
Copy link

This would be a great API, if anyone can make that it would be nice. Amazing work!

@Delta456
Copy link

Delta456 commented Jul 3, 2022

I never knew Discord supported ANSI. Amazing!

@soshimee
Copy link

Would it be possible to allow stacking backgrounds and foregrounds?

@rebane2001
Copy link
Author

You already can, make sure you're only selecting text inside or outside a different formatting, not from inside to out.

@Rajdave69
Copy link

discord colored text is now removed?

@koutsie
Copy link

koutsie commented Jun 14, 2023

discord colored text is now removed?

No?
What's your discord client version (+ mobile etc?)

@Rajdave69
Copy link

No? What's your discord client version (+ mobile etc?)

My bad, was using VenCord and it has a plugin to revamp codeblocks. That was the cause to me not being able to see it. Colors still work.

@QEStudios
Copy link

Could you add a tooltip to the colour buttons that shows the name of that colour? It'd make this much easier for colourblind people to use, myself included.

@rebane2001
Copy link
Author

@QEStudios Great idea, some of these colors are pretty ambiguous on some screens anyways. Added the tooltips, hope it helps!

@GR0UPHUGS
Copy link

really nice work done, also makes it better ur estonian

estonia meantioned RAHHHHH

@DragonWatcher2873
Copy link

can you add more text colors please i work on a server announcements for dedicated server's and i like to use other colors insted of the same one after it's been used

@QEStudios
Copy link

@rebane2001 Thanks, that's really helpful! :3

@LogicNovaX
Copy link

Hey @rebane2001 Nice code but SpicyDevs has skidded from you saying they created it..
Heres the proof https://textcord.pages.dev/

@rebane2001
Copy link
Author

Very shameful of them

@Stormbow
Copy link

Stormbow commented Feb 16, 2024

Hey @rebane2001 Nice code but SpicyDevs has skidded from you saying they created it.. Heres the proof https://textcord.pages.dev/

I don't know if they changed it after the above comment was made, but SpicyDevs' page now— at least —shows "based on" and links back to @rebane2001. That's credit where credit's due, right?

PS - I absolutely love this generator. Thanks, @rebane2001 <3!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment