ARGB Color Converter#

Quick Color Picker#

Color Presets#

Red
Green
Blue
Yellow
Orange
Purple
White
Black

Manual Adjustment#

Enter ARGB Integer#

Paste an ARGB integer value (e.g., from someone's config) to see the color:

Output Values#

ARGB Integer (for configs)
-256
HEX
#FFFF0000
RGB
rgb(255, 0, 0)
RGBA
rgba(255, 0, 0, 1.0)

Enter RGBA Values#

Enter R, G, B, A values (0-255) to load the color:

Color Profiles#

Save your favorite colors for quick access. Profiles are saved in your browser (no account needed):

Usage Guide #

How to Use#

  1. Quick Method: Use the color picker and click "Apply Color"
  2. Manual Method: Adjust the ARGB sliders to fine-tune your color
  3. Preset Method: Click on a preset color below
  4. Copy Value: Click the copy button next to the ARGB Integer value
  5. Paste in Config: Use the value in your Zones.json or MainConfig.json

Example Config Usage#

{
    "name": "PVP AREA",
    "type": 1,
    "zoneAlpha": 255,
    "zoneRed": 255,
    "zoneGreen": 0,
    "zoneBlue": 0,
    "notificationColor": -256
}

Understanding ARGB#

  • A (Alpha): Transparency (0 = fully transparent, 255 = fully opaque)
  • R (Red): Red component (0-255)
  • G (Green): Green component (0-255)
  • B (Blue): Blue component (0-255)

Note: The ARGB Integer format uses signed 32-bit integers. Negative values are normal and correct!