Obscure Tooltips

Tooltip Panels

Updated May 17, 2026

Edit on GitHub

Panels define the visual background of a tooltip and serve as the foundation for text and other elements.

Blank Panel

Essentially, it acts as an invisible placeholder.

JSON Example
{
  "type": "obscure_tooltips:blank"
}

Color Rect Panel

A rectangular panel with a border styled after the vanilla design. The gradient palette can be customized for both the panel surface and its border. See Colors for more details.

JSON Example
{
  "type": "obscure_tooltips:color_rect",
  "background_palette": {
    "top_left": "#f0100010",
    "top_right": "#f0100010",
    "bottom_left": "#f0100010",
    "bottom_right": "#f0100010"
  },
  "border_palette": {
    "top_left": "#505000ff",
    "top_right": "#505000ff",
    "bottom_left": "#5028007f",
    "bottom_right": "#5028007f"
  }
}