PRISM Template Guide

Create custom watermark templates using simple JSON configuration.

Getting Started

Watermark templates in PRISM use JSON format. You can customize layout, colors, and element positioning without any coding.

Tip: Copy any example below and paste it directly into the app to create your template.

Template Structure

Every template has three main parts:

JSON
{
  "layout": "standard",
  "padding": 24
}

Layout Options

ValueDescription
"standard"Logo + divider + text column
"minimal"Logo + text only, no EXIF
"classic"Text on left, logo on right

Locking Colors

You can lock specific colors so users cannot change them. Use the lockColors object:

JSON
{
  "layout": "standard",
  "padding": 24,
  "lockColors": {
    "background": "#1a1a2e",
    "mainText": "#ffffff",
    "exifText": "#8d99ae"
  }
}

Lock Colors Options

PropertyDescription
backgroundWatermark background color (HEX)
mainTextMain text and device name color (HEX)
exifTextEXIF data text color (HEX)
Note: When both background and mainText are locked, the Light/Dark theme selector will be disabled for this template.

Complete Examples

Standard Template

Logo on left, vertical divider, text information stacked vertically.

Standard Template
JSON
{
  "layout": "standard",
  "padding": 24
}

Minimal Template

Clean design with just logo and main text.

Minimal Template
JSON
{
  "layout": "minimal",
  "padding": 16
}

Classic Template

Text on left, logo on right.

Classic Template
JSON
{
  "layout": "classic",
  "padding": 24
}

Branded Dark Template

Fixed dark theme with locked colors.

JSON
{
  "layout": "standard",
  "padding": 24,
  "lockColors": {
    "background": "#1a1a2e",
    "mainText": "#edf2f4",
    "exifText": "#8d99ae"
  }
}

Partial Lock Template

Only background is locked, text colors can be customized.

JSON
{
  "layout": "classic",
  "padding": 20,
  "lockColors": {
    "background": "#000000"
  }
}

How to Add a Template

  1. Copy any template JSON from this page using the Copy button.
  2. Open the PRISM app and go to Style settings.
  3. Tap + Add Template at the bottom.
  4. Enter a name for your template.
  5. Paste the JSON into the Template JSON field.
  6. Tap Add to save.

Troubleshooting

Template not working?

Colors not applying?