ARGB Color Converter#
Quick Color Picker#
Color Presets#
Red
Green
Blue
Yellow
Orange
Purple
White
Black
Color Profiles#
Save your favorite colors for quick access. Profiles are saved in your browser (no account needed):
Usage Guide #
How to Use#
- Quick Method: Use the color picker and click "Apply Color"
- Manual Method: Adjust the ARGB sliders to fine-tune your color
- Preset Method: Click on a preset color below
- Copy Value: Click the copy button next to the ARGB Integer value
- 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!