Settings

How do I change my (part of GUI) color?

You can just type into it these simple colors that are avaliable

  • black

  • silver

  • gray (or grey)

    • darkgray (or darkgrey)

    • dimgray (or dimgrey)

    • lightgray (or lightgrey)

  • white

  • maroon

  • red

  • purple

  • fuchsia

  • green

  • lime

  • olive

  • yellow

  • navy

  • blue

  • teal

  • aqua

What about gradients?

This method will be more complicated, but you'd have to put css into the textbox properly.

Here's an example:

linear-gradient(90deg, rgba(104,45,140,1)¹ 220px, rgba(237,30,121,1) 100%)²

The "90deg" part means the color 1 starts on the left, then shifts after 90 degrees, followed by color 2.

What can I do to make it easier?

Look on the web for a css gradient snippet creator, and input your color code, then copy the snippet that's made and put it in the textbox and click it.

Gradient CSS Snippet Creator

Last updated