Colors

This page has all of the information related to colors.yml file.

📝 Example configuration:

# Available colors for bacgrkound of pets name hologram
# You can add as much as you want
colors:
  BLACK:
    r: 0
    g: 0
    b: 0
  WHITE:
    r: 255
    g: 255
    b: 255
  RED:
    r: 255
    g: 0
    b: 0
  GREEN:
    r: 0
    g: 255
    b: 0
  BLUE:
    r: 0
    g: 0
    b: 255
  YELLOW:
    r: 255
    g: 255
    b: 0
  ORANGE:
    r: 255
    g: 165
    b: 0
  PURPLE:
    r: 128
    g: 0
    b: 128
  GRAY:
    r: 128
    g: 128
    b: 128

You can add colors as much as you want, to add new color use this template:

COLOR_NAME:
    r: <red value from RGB>
    g: <green value from RGB>
    b: <blue value from RGB>

Last updated