# social.twinkl.theme.defs

> Published by [kandake.africa](https://lexicon.garden/identity/did:plc:lrphxvv25aibthe7xoc2eeyy)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.theme.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.theme.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.theme.defs/examples)

## Definitions

### `social.twinkl.theme.defs#effect`

**Type**: `object`

One enabled first-party page effect. The effect id selects a curated, first-party component; params drive it. Unknown ids are ignored and params are clamped/validated server-side against the effects registry.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Curated effect identifier (e.g. sparkleTrail, glitterFall, starfield, marqueeBanner, neonPulse, rainbowLinks). |
| `params` | `unknown` | No | Open map of param name to string value for this effect; schema enforced in code (effects-registry), integers encoded as strings and clamped on load. |

## Raw Schema

```json
{
  "id": "social.twinkl.theme.defs",
  "defs": {
    "effect": {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "maxLength": 64,
          "description": "Curated effect identifier (e.g. sparkleTrail, glitterFall, starfield, marqueeBanner, neonPulse, rainbowLinks)."
        },
        "params": {
          "type": "unknown",
          "description": "Open map of param name to string value for this effect; schema enforced in code (effects-registry), integers encoded as strings and clamped on load."
        }
      },
      "description": "One enabled first-party page effect. The effect id selects a curated, first-party component; params drive it. Unknown ids are ignored and params are clamped/validated server-side against the effects registry."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
