ARGB Color Converter#
Convert colors between ARGB Integer format (used in zone configs), HEX, and RGB values. The ARGB Integer format is required for zone colors in the NinjinsPvPPvE mod.
Output Values#
ARGB Integer (for configs)
-256
HEX
#FFFF0000
RGB
rgb(255, 0, 0)
RGBA
rgba(255, 0, 0, 1.0)
Color Presets#
Click on a preset to quickly apply common zone colors:
Red (PvP)
Green (PvE)
Blue (SafeZone)
Yellow
Orange (Raid)
Purple
White
Black
Semi-Transparent Red
Fully Transparent
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!