Minecraft Texture Packs / Other Packs

Pastel Text Colours [JAVA EDITION]

  • check_circle Font
  • check_circle Misc
  • 7,855 views, 39 today
  • 737 downloads, 1 today
Enchanted_Games's Avatar Enchanted_Games
Level 72 : Legendary Waffle
432
What is it?
This pack makes all the default text colours slightly brighter and softer looking. This pack aims to change the vanilla text colours while still providing a familliar Minecraft experience.

v2.1 Updates
- Updated to support 1.20.5
- Should work in 1.19 - 1.20.5



Faq
What versions is it for?
This pack is currently available for Minecraft Java and Minecraft Bedrock Edition.

Do I need any mods?
No, this pack will work in fully vanilla Minecraft.

Can you make it for older versions?
If there is enough demand, I will backport this pack to 1.17 and 1.18 and possibly earlier versions with optifine.

Using with Better Dyed Signs

Download the "Pastel Text + Better Dyed Signs" pack

Can I use this in my pack?
You may include the shader files in your own pack to change text colours as long as you leave credits and a link back to this page!


(v2.1 is a temporary fix until I have the time to properly update the code)
Progress100% complete
Game VersionMinecraft 1.20
Resolution16x
Tags

3 Update Logs

v2.1 : by Enchanted_Games 05/03/2024 12:25:01 pmMay 3rd

Updated to support 1.20.5
LOAD MORE LOGS

Create an account or sign in to comment.

2
06/28/2023 6:36 pm
Level 1 : New Miner
XxrainyautumnxX
XxrainyautumnxX's Avatar
for some reason i can't use either pack currently. it keeps failing to load and ends up removing any packs i already have on. im not sure if its optifine or if its the pack itself.
2
06/29/2023 6:37 am
Level 72 : Legendary Waffle
Enchanted_Games
Enchanted_Games's Avatar
try using it in vanilla without any mods, if it still doesn’t work then I’ll have to update the pack
2
06/29/2023 2:23 pm
Level 1 : New Miner
XxrainyautumnxX
XxrainyautumnxX's Avatar
just tried it and went down to version 1.19.2 to see if it helped. but again both failed to load sadly
1
06/29/2023 3:13 pm
Level 72 : Legendary Waffle
Enchanted_Games
Enchanted_Games's Avatar
That’s weird, might be a bigger issue. Could you send me your latest.log after loading the pack? It’s in the .minecraft/logs folder
1
06/29/2023 3:14 pm
Level 1 : New Miner
XxrainyautumnxX
XxrainyautumnxX's Avatar
sure! where do i send it? just in a comment here?
1
06/29/2023 5:50 pm
Level 72 : Legendary Waffle
Enchanted_Games
Enchanted_Games's Avatar
if you have discord that will probably be easier (its on my pmc profile) but if not then here will be fine
2
10/07/2022 9:02 am
Level 2 : Apprentice Miner
Shadowaker
Shadowaker's Avatar
it look very good but the link didnt work for me
1
10/07/2022 4:59 pmhistory
Level 72 : Legendary Waffle
Enchanted_Games
Enchanted_Games's Avatar
Make sure you click "Skip" in the top right of the page after the 5 second timer
1
10/08/2022 9:51 am
Level 2 : Apprentice Miner
Shadowaker
Shadowaker's Avatar
that was not the problem but now it works
2
10/06/2022 9:53 pm
Level 2 : Apprentice Goblin
Wundati
Wundati's Avatar
Hi there,

I want to implement this pack in my own personal use resource pack, but I would like to edit or remove some of the colors. How would I go about this? (Explain like I'm 6 I am computer illiterate)

Thank you!
3
10/07/2022 4:36 pm
Level 72 : Legendary Waffle
Enchanted_Games
Enchanted_Games's Avatar
First off you should install Visual Studio Code and then install This Extension to make it easier to edit the files. Also make sure you have file extensions turned on by pressing "View" in file explorer and checking "Hidden Items"





install the visual studio code extenstion

Make sure you installed visual studio code first and click the link above that says "This Extension". You will be taken to a page that looks like this:

extension

Click the green install button and click it again inside visual studio code once it opens





Basically what this extension does is it gives the minecraft shader files syntax highlighting and lets you hover over colours to change them






opening the file

After you've done that, unzip the pack and go to ./assets/minecraft/shaders/include and right click on "pastel_text_colours.glsl" then "Open With" and select Visual Studio Code.open file



If done correctly it should look like this. (the text colours might look a bit different than mine but it doesn't matter)
shader code


Changing the colours

Once you opened the file, it should be very easy to change the colours.

One thing to note: The first block of colours (from line 11 to 29) are the normal text colours and the second block (from line 32 to 48) are the text shadow colours.


Method 1 - Easiest

Simply hover over the colour you want to change and a colour picker will pop up allowing you to change it to whatever you want.

colour picker






Method 2 - Slightly more advanced


Go to this link to go to my colour converter. This lets you input a hex colour code and convert it to a vec3 to put inside the minecraft shader.



First off make sure the "Output as vec3" toggle is turned on. Then you can click the red square labeled "Input hex". This will show a colour picker where you can either choose a colour or paste a hex code in manually.






After you've put the colour you want, click "Convert" and copy the text inside the "Output as GLSL" box.




Once you've done that, go back to visual studio code and highlight the colour you want to change by clicking and dragging, be careful not to select the comma or anything after the //.



Then press ctrl+v to paste in the new colour from the generator

like so:


Make sure to delete the semi-colon (highlighted above) otherwise the shader will not work. Also make sure to keep the comma there unless there already wasn't a comma.



Finally how it should look once it's done:



Now just save by pressing ctrl+s or clicking File > Save. Then enable the pack in Minecraft and you should see the colour be changed!





Removing colours

This is a bit more difficult but first you need to go to ./assets/minecraft/shaders/core/ and open rendertype_text.fsh in Visual Sudio Code. It should look something like this:




As you can see, there are comments at the end of each line in grey,, this says what block of code changes what colour



Scroll down until you find the one you want to remove (aka make it always use the default minecraft colours), here I will remove aqua and the aqua text shadow.





After that, you need to go down to the line that starts with "vertexCol.rgb = ..." and add 2 slashes (//) to the start of it. This basically tells the shader to just use the default Minecraft colours. like so:

If you change you mind and want to replace the colour with a custom one, simply repeat these steos again but remove the 2 slashed (//) before vertexCol.rgb instead of adding them.




IMPORTANT: Make sure you only change colours in "pastel_text_colours.glsl". Don't change any in "rendertype_text.fsh".

Hope this helps!

Sorry if some of that is a hard to understand or a bit confusing, i'm not the best at explaining things. If you need any more help or can't get it working, DM me on Planet Minecraft and I can help you out.
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome