ARGB Color Converter

Convert colors between ARGB Integer format (used in bounty configs), HEX, and RGB values. The ARGB Integer format is required for UI colors, circle colors, and notification colors in the Bounty System.

Quick Color Picker

Manual Adjustment

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 bounty UI colors:

Red (Bounty)
Orange (Warning)
Yellow (Alert)
Turquoise (Success)
Green (Safe)
Blue
Purple
White
Black
Semi-Transparent Red
Fully Transparent

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 BountyConfig.json

Example Config Usage

{
    "Map": {
        "BountyCircleColor": -256,
        "BountyCircleAlpha": 255,
        "BountyCircleRed": 255,
        "BountyCircleGreen": 0,
        "BountyCircleBlue": 0
    },
    "UI": {
        "CountdownWidgetBackgroundColor": -1243485185,
        "CountdownWidgetTextColor": -65536
    }
}

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!