Как сделать цветной текст в дискорде
Перейти к содержимому

Как сделать цветной текст в дискорде

  • автор:

Discord генератор цветного текста

Это простое приложение, которое создает цветные сообщения Discord, используя цветовые коды ANSI, доступные в последних версиях Discord для ПК.

Чтобы использовать это, напишите свой текст, выделите часть и выберите цвет, затем скопируйте его с помощью кнопки ниже и отправьте сообщение в Discord.

Исходный код

Это приложение полностью работает в вашем браузере, а исходный код находится в свободном доступе на GitHub. Спасибо kkrypt0nn за этот гайд.

Создай свой текст

Сбросить Жирный Линия

Текст

Фон

Это неофициальный инструмент, он не создан и не одобрен Discord.

Как сделать цветной текст в Discord

О ne вещь, которая не поддерживается по умолчанию Раздор пользовательский интерфейс представляет собой красочный и яркий текстовый чат. В нем есть только базовый текстовый чат без встроенных цветовых команд, и, на первый взгляд, у вас нет возможности сделать что-то необычное с вашим текстом. Но это еще не все, так как вы можете сделать цветной текст в текущем разговоре, добавив блоки кода в свой текстовый чат.

Цвет текста точно делает то, что кажется. Вы можете добавить различные цвета к вашему тексту в Раздор , несмотря на отсутствие официального процесса или подключаемого модуля для этого. Но не подчеркивайте, как вы можете это сделать, так как в этой статье был найден работающий подход, который использует код Discord, который был создан, чтобы помочь добавить цвет к тексту вручную. Процесс не такой сложный, но требует от вас собрать воедино некоторые знания, которые вы увидите здесь.

Как работает раскрашивание текста Discord

Ссылка на раскрашивание текста в Discord заключается в том, что для создания интерфейсов используется JavaScript, а также тема Solarized Dark и библиотека под названием highlight.js. Когда вы входите в свой

Хотя собственный пользовательский интерфейс Discord (пользовательский интерфейс) не поддерживает раскрашивание текста, элементарный движок Javascript, запускающий скрипт highlight.js, поддерживает. Вы можете изменить цвет слов, напечатанных в окне чата каждого, вставив фрагменты кода в свой текстовый чат.

Важно понять, что нужно изменить цвет данного фрагмента текста; вы должны закодировать этот текст в блоке кода. Этот код блока состоит из трех основных разделов. Сначала откройте три обратных кавычки[“`] и добавьте кодовую фразу, которая определяет предполагаемый цвет текста. Во-вторых, поместите текст в средний блок и закройте его еще одной парой из трех обратных кавычек.

Как сделать цветной текст в Discord

Внимательно следуйте следующим шагам, чтобы получить цветной текст в Discord.

Шаг 1: Откройте Дискорд

Прежде всего, откройте приложение Discord в своей системе, как в нашем случае Ubuntu; мы нажмем «Действия», используйте панель поиска для поиска приложения Discord, затем щелкните синий значок Discord, как показано ниже:

открытый раздор

После этого перейдите к каналу, на который вы хотите отправить цветной текст, как показано здесь:

нажмите на сервер

Нажмите на сервер

Шаг 2. Добавьте цветной текст из блока кода.

  • Как стримить в Discord
  • Как включить и использовать Discord Overlay в играх
  • Как создать приветственный канал в Discord

В случае создания цветного текста в Discord используйте символ обратной кавычки [‘] на клавиатуре:

Добавьте три обратных кавычки [«`] и перечислите кодовую фразу, которая относится к цвету, который вы собираетесь применить к своему тексту, как показано здесь:

добавить кавычки до и после вашего текста

Добавляйте кавычки до и после текста

После этого нажмите клавишу «Ввод» на клавиатуре, чтобы отправить текст в канал или приватный чат:

нажмите Ввод

Следует помнить, что приведенная выше фраза «CSS» блока кода может быть изменена в зависимости от результатов, которые должны быть достигнуты.

В следующем разделе статьи мы покажем процедуру создания контрастных типов цветного текста в Discord.

1. Как сделать светло-зеленый текст в Discord

Например, для создания текста светло-зеленого цвета добавьте приведенный ниже код с кодовой фразой «diff» и введите сообщение, начинающееся со знака «+»:

светло-зеленый текст

выход

Стоит отметить, что Discord поддерживает три формата блоков кода для создания текста зеленого цвета, а именно:

  • Джсон.
  • Баш .
  • Ямл.

Теперь давайте рассмотрим каждый из них один за другим.

  • Как стримить в Discord
  • Как включить и использовать Discord Overlay в играх
  • Как создать приветственный канал в Discord

Способ 1: создание темно-зеленого текста в Discord с помощью JSON

Когда дело доходит до JSON, вы записываете свое сообщение в трех кавычках [«`] с тремя обратными кавычками [«`]:

пример json

выход

Способ 2: Как сделать темно-зеленый текст в Discord с помощью bash

Этот также использует тот же синтаксис, что и json. Все, что вам нужно сделать, это заменить JSON на bash в начале кодовой фразы, и вы должны получить такие же результаты, как показано ниже:

пример bash

выход

Способ 3: Как сделать темно-зеленый текст в Discord с помощью yaml

Для сравнения, укажите «yaml» в качестве кодовой фразы, чтобы добавить добавленный текст в темно-зеленый цвет:

пример yaml

выход

2. Как сделать желтый текст в Discord

Здесь мы будем использовать ключевое слово или кодовую фразу «исправить», чтобы покрасить наш текст в желтый цвет. Этот формат блока кода не нуждается в каких-либо других специальных символах:

желтый цвет текста

Желтый цвет текста

выход

3. Как сделать текст оранжевого цвета в Discord

Те, кто заинтересован в отправке текста оранжевого цвета на свой канал Discord или своему другу, должны начать блок с трех открывающие кавычки [«`], кодовая фраза «рука» и сообщение, объединенное символом подчеркивания («_») и заканчивающееся закрытием обратные цитаты:

оранжевый цвет текста

Оранжевый цвет текста

выход

4. Как сделать текст красным в Discord

Для этого введите кодовую фразу «diff» и дефис «_» в начале сообщения, чтобы окрасить его в красный цвет:

красный цвет текста

Красный цвет текста

выход

5. Как сделать текст синим цветом в Discord

В случае окрашивания текста в синий цвет укажите «css» в качестве кодовой фразы, затем в сообщении начните с точки (.), а затем соедините все сообщение дефисом (-), как показано ниже:

текст синего цвета

Текст синего цвета

выход

И это должно подойти для различных процедур создания цветного текста в Discord.

Описанный выше синтаксис не так очевиден или удобен для запоминания. Благодаря этому вы можете использовать генератор цветного текста, чтобы быстро получить нужный код и скопировать его в буфер обмена. Ниже приведен пример.

генератор цветного текста

Генератор цветного текста

Как сделать текст разного цвета в Discord с помощью генератора цветного текста

Discord поддерживает модификаторы для обозначения программирование язык кода, который вы пишете после первых трех обратных кавычек. Для ясности вашего кода Discord применяет цвет к определенным элементам. Вы можете использовать это в своих интересах и рисовать целое сообщение, а не только несколько элементов. Однако в этом разделе мы не будем писать коды сами. Мы будем набирать наш текст в поле «Напишите текст, который хотите раскрасить». После этого мы выберем наш цвет в разделе «Выберите цвет» и скопируем созданный код в «Скопировать и вставить это в Discord».

Вот список цветов шрифта и автоматически сгенерированный код, который необходимо ввести для его получения:

How To Color Text In Discord

The plain old chat color can be dull if you’re an avid Discord user. Unfortunately, Discord doesn’t have a straightforward function to change the text color.

If you’re looking for a way to have a vibrant chat experience by adding color texts, you’ll need to utilize block codes. So, how can you change the text color on Discord?

Read on to learn more about coloring text in Discord.

Overview of Color Texting on Discord#

As noted earlier, Discord’s native interface doesn’t support colored texts. But, inputting specific symbols before your text can change its color. These symbols are called commands.

  • Overview of Color Texting on DiscordStep-by-Step Guide To Color Text in DiscordChanging Text to RedChanging Text to BlueChanging Text to YellowChanging Text to Dark GreenSummary

This process works by feeding commands to JavaScript that Discord is built on. The Discord interface doesn’t support color texts, but you can feed the commands that can change the text color.

Besides JavaScript, the color change process utilizes the highlight.js library and the Solarized Dark theme.

There are no limitations to where to change Discord’s text color. It could be in a private chat with a friend or when communicating with members on a server.

The process is the same in all instances. Discord supports various text colors: red, orange, yellow, dark green, light green, and blue.

Each color has a different code phrase that informs the Solarized Dark theme which color to display. For example, the code phrase for red is ‘diff,’ yellow, ‘fix,’ and blue ‘css.’

Remember, you’ll need three different text lines to change the text color. The first line will be the symbols and specific code phrases, and the following line is the text you want to change. Then the last line is the backtick symbols.

Next, we cover the exact steps to change Discord text to various colors.

Step-by-Step Guide To Color Text in Discord#

Coloring text on Discord takes a few simple steps. Next, we detail the steps to change Discord text to various colors.

Changing Text to Red#

Follow the steps below:

  • Launch Discord on your PC.
  • Choose the particular server or DM from the left navigation.
  • Navigate to the channel or DM whose text color you want to change.
  • Click the message box to start typing.
  • Type three backticks (““`“) followed by the code phrase ‘diff.’
  • Press Shift + Enter to go to the next line.
  • Type a hyphen (“–“) at the beginning of your text.
  • Enter the text you want to change to red.
  • Press Shift + Enter to go to the next line.
  • Type three backticks (““`“).
  • Hit Enter.

Changing Text to Blue#

  • Launch Discord on your PC.
  • Choose the particular server or DM from the left navigation.
  • Navigate to the channel or DM whose text color you want to change.
  • Click the message box to start typing.
  • Type three backticks (““`“) followed by the code phrase ‘css.’
  • Press Shift + Enter to go to the next line.
  • Type a period (“.“) at the beginning of your text.
  • Enter the text you want to change to blue. Separate each word by a hyphen (‘–‘), for example, ‘My-test-text.’
  • Press Shift + Enter to go to the next line.
  • Type three backticks (““`“).
  • Hit Enter.

Changing Text to Yellow#

  • Launch Discord on your PC.
  • Choose the particular server or DM from the left navigation.
  • Navigate to the channel or DM whose text color you want to change.
  • Click the message box to start typing.
  • Type three backticks (““`“) followed by the code phrase ‘fix.’
  • Press Shift + Enter to go to the next line.
  • Enter the text you want to change to yellow.
  • Press Shift + Enter to go to the next line.
  • Type three backticks (““`“).
  • Hit Enter.

Changing Text to Dark Green#

  • Launch Discord on your PC.
  • Choose the particular server or DM from the left navigation.
  • Navigate to the channel or DM whose text color you want to change.
  • Click the message box to start typing.
  • Type three backticks (““`“) followed by the code phrase ‘bash.’
  • Press Shift + Enter to go to the next line.
  • Type a quote (‘“‘) at the beginning of your text.
  • Enter the text you want to change to dark green.
  • Add another quote (‘“‘).
  • Press Shift + Enter to go to the next line.
  • Type three backticks (““`“).
  • Hit Enter.

Changing Text to Dark Orange

  • Launch Discord on your PC.
  • Choose the particular server or DM from the left navigation.
  • Navigate to the channel or DM whose text color you want to change.
  • Click the message box to start typing.
  • Type three backticks (““`“) followed by the code phrase ‘arm.’
  • Press Shift + Enter to go to the next line.
  • Enter the text you want to change to orange. Separate each word by an underscore (‘_’), for example, ‘My_test_text.’
  • Press Shift + Enter to go to the next line.
  • Type three backticks (““`“).
  • Hit Enter.

Summary#

Discords native interface doesn’t support text color, but you can use various JavaScript commands to add flare to your texts.

You can change your text to multiple colors, including blue, red, yellow, orange, and green. You’ll need to use backquotes and the color’s code phrase to change your Discord text to a specific color.

How To Make Colorful Or Rainbow Text On Discord: Use These Codes

As an Amazon Associate and affiliate of other programs, I earn from qualifying purchases.

Discord is a kind of platform where you chat with a lot of people. As soon as you join a Discord server, you see different people chatting at the same place over some topics. And a lot of these people are using Discord for a long time, so they know this platform inside and out. However, there are some advanced techniques for using Discord that are still not very well known by most people. And one such technique is writing rainbow text on Discord.

Basically, rather than sending your messages in default grey color, you can play around with so many other colors. Like to highlight your message in chat, you can send your entire message in red color. Moreover, you can even use different colors within a single message, which to be honest, is really cool. Getting command over this feature can surely make you look like a pro on Discord. And to gain popularity on this kind of platform, you do have to become a pro sooner or later. So, if you’re now convinced enough to learn how to make the rainbow text on Discord, then let’s get started.

Type Rainbow Text On Discord

As we’ve already mentioned above, there are two ways in which one can use colored text on Discord. The first one, in which you change the color of your whole message to a single color, is quite basic. However, the second one is much more advanced because, in this one, you can use more than one color in a single message. Interesting, right? But you should know that playing around with text colors is not that straight forward on Discord. And before moving forward, you should learn what makes the colored text possible on Discord in the first place.

Highlight.js

On Discord, there is no direct way to achieve these types of texts, however, there is a workaround. Discord uses Markdown language in the background for text formatting, like to strikethrough your text or to make text bold or italics. And very similarly, it uses highlight.js feature to color your text. Basically, what you have to do, is use a three-line code block, to get different colors for your text through highlight.js library. Don’t worry, you’ll get it once you move on to the examples given below.

Change Color Of Your Text On Discord

Now, if you want to use a single color for a single message, here are all the colors you can have. Just note that sometimes the codes are flaky and they won’t work 100% of the time. If you face this problem, wait a bit and try again.

1. Red

To get the red color for your text, you have to use the Diff syntax highlighting. The first line of the code will have three `(Tick) characters and after that, you have to write diff without giving any space in between.

Important: To show you the tick characters properly we have used space in between them. If you copy the code from here then make sure you remove the spaces in between them.

Now, jump to the second line by using Shift+Enter key combination. On the second line, first, input one -(Dash) character and then start writing your message. Finally, skip to the third line of the message and end the code block with three ` characters. Now, you can send your message, and you’ll see that the text of your message is red in color.

Syntax:
` ` `diff
-Your Message
` ` `

Example:
` ` `diff
-make it colorful
` ` `

red color on discord

2. Cyan

To give cyan color to your text, we have to use the Yaml syntax highlighting. The structure of the code will be almost similar to the first one. This means that the code will start and end with three `(Tick) characters. The only thing that’ll change is that in the first line, we are going to type Yaml and the second line will not have the -(Dash) character. So, the syntax will go like this.

Syntax:
` ` `yaml
Your message
` ` `

Example:
` ` `yaml
make it colorful
` ` `

change text color on Discord

3. Yellow

Love the yellow? Well, then easily apply this color to your text by using the fix syntax highlighting. The structure of the code block will be similar to the ones we’ve discussed above.

Syntax:
` ` `fix
Your message
` ` `

Example:
` ` `fix
make it colorful
` ` `

yellow color

4. Green

Green text color can be easily achieved by using the CSS syntax highlighting. And as usual, the structure will be the same. Here’s the syntax and an example for the same.

Syntax:
` ` `css
Your message
` ` `

Example:
` ` `css
make it colorful
` ` `

Discord code for Colored text

5. Dark Green

Liked the green but you want to make it darker? Well, then you’d be delighted to know that there are two syntax highlightings for that i.e, JSON and BASH. You can use any one of those, however, your message will go in quotation ” marks.

Example:

dark green color

dark green with bash

6. Blue

The required syntax highlighting for the blue color will be INI. Also, your message in this syntax should be contained in two [] square brackets.

Syntax:
` ` `ini
[Your message]
` ` `

Example:
` ` `ini
[make it colorful]
` ` `

change text color on Discord

Use Multiple Colors In A Message On Discord

If you want to move ahead in the game by giving more than one color to your text on Discord, then you’ll have to work a bit harder. The syntax used for this are longer, but they aren’t that hard to learn. There are a lot of syntax highlighting options to get the work done, but we’ve included only three of those. Because these three are easy to learn and are enough to get you started.

The ml language gives you four colors in a single message, which are yellow, cyan, red and grey. The first line of the code will have three `(Tick) characters and then you have to type ml without giving any space in between.

After that, the words in the message that’ll have the first letter capital will get the yellow color. On the other hand, all lowercase words will get grey color. The words that’ll fall between quotation ” marks will have cyan color along with any numbers in the message. And finally, the red color will be given to the words (no spaces) with inverted ‘ commas. You’ll get a better idea after looking at the syntax and the example.

Syntax:
` ` `ml
Yellow For Capital
“Cyan”
‘Red’
grey for lowercase
cyan for numbers
` ` `

Example:
` ` `ml
name is Shivam
“Give me Cyan Color”
‘NowGiveMeRed’
123
` ` `

multiple colors on discord

2. Yaml

This one is quite simple, and it’ll only give you two colors i.e, yellow and cyan, in a single message. All you have to do is divide your entire message with a : semicolon. After that, the message before the colon (without spaces) will get the yellow color and the message after the colon will get the cyan color. Pretty simple, isn’t it?

Syntax:
` ` `yaml
yellowbeforethecolon: cyan after the colon
` ` `

Example:
` ` `yaml
Name: Shivam Gulati
` ` `

yellow and cyan color

3. Prolog

This syntax highlighting language enables you to write your text in 3 colors, which are orange, cyan, and grey. In this code block, the words with the first letter as capital will automatically turn orange in color. Whereas, the words with all lowercase letters will be grey in color. And the cyan color will be for the numbers and the words with inverted ‘ commas.

Syntax:
` ` `prolog
Orange For Capital
‘Cyan Text’
grey for lowercase
cyan for numbers
` ` `

Example:
` ` `prolog
Shivam At Techuntold
‘Writing something in cyan’
and something in the grey
123
` ` `

rainbow text on Discord

Now, if you want to learn more syntax highlighting codes, then you can follow Discord Highlight.js server. There, you’ll see all the possible highlighting languages with all the code blocks to give amazing colors to your text.

Wrapping Up

So, that’s how you use Discord rainbow text. If you’ve read the entire article, then you’ve surely learned a lot about using different colors on Discord. The best thing you can do is note down these codes and save them as a document on your PC. That way, you’ll just have to copy and paste these codes the next time you want to write something colorful on Discord.

About The Author

Shivam is a blogger who is always fascinated with the technology and the amount of knowledge he can gather from the internet. He is trying to nerdify everyone around him with that same knowledge, through his writings.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *