// Creating a colour with an alpha component. // Note order of parameters is RGBA, not ARGB as they are internally. // Dark orange is #ff8c00 in HTML. Color almostTransparentDarkOrange = new Color( 0xff /* red */, 0x8c /* green */, 0x00 /* blue */, 0x1f /* alpha */ );