Jump to content
  • 0

How do I choose to change color in fonts, example: 255,255,255,255


Question

3 answers to this question

Recommended Posts

  • 1
Posted

If you want to change the color of any text in the game such as the chatbox, damage, player name, quest… Well everything, you will need to open colors.json in the server’s side. This file is inside the resources folder.

                "HpForeground": "argb(255,255,0,0)" -> (Alpha, Red, Green, Blue)

The max you can put is 255 to apply the maximum possible to a color. An alpha lower than 255 will add transparency to the color.

  • 1
Posted

I believe it's either:
Alpha, Red, Green, Blue
Or
Red, Green, Blue, Alpha

All with max values of 255, so Red Text would be 255, 255, 0 ,0 (or 255, 0, 0, 255 if it's RGBA instead of ARBG)

I don't have Intersect in front of me atm so I can't test if it's ARGB or RGBA

  • 1
Posted
1 hour ago, Gibier said:

If you want to change the color of any text in the game such as the chatbox, damage, player name, quest… Well everything, you will need to open colors.json in the server’s side. This file is inside the resources folder.

                "HpForeground": "argb(255,255,0,0)" -> (Alpha, Red, Green, Blue)

The max you can put is 255 to apply the maximum possible to a color. An alpha lower than 255 will add transparency to the color.

 

There are some texts you have to change on the gui json files tho, so look there if changing the colors.json seems to fail

×
×
  • Create New...