Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Theme PADD

JaladJalad228 downloads

A PADD (Palette, Animation, Decoration, and Density) modifier for your themes.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates5

Theme PADD

Theme PADD

A PADD (Palette, Animation, Decoration, and Density) modifier for your themes.

Features

  • Per-theme settings UI — Any theme that opts in gets its own page under Settings → Theme PADD with the controls its author exposed.
  • Customizations layered on any theme — Author your own controls for a specific theme. Useful when a theme doesn't ship settings, or doesn't expose the knob you want.
  • Global customizations — The same mechanism, but applied to the whole vault.
  • Live preview — Controls apply to the DOM the moment you change them.
  • Auto-discovery — Theme PADD reads each installed theme's theme.css for a @themepadd directive and fetches the spec from the theme's GitHub release. No per-theme setup.
  • Version pinning — Each theme version downloads its own settings.json. When a theme updates, the new spec comes with it.
  • Clear error reporting — If a spec can't be downloaded or is malformed, the settings tab shows a readable error with a Copy button.

Installation

Obsidian Community Plugins

  1. Open Obsidian and go to Settings → Community plugins.
  2. If restricted mode is on, select Turn on community plugins.
  3. Select Browse and search for Theme PADD.
  4. Select Install, then Enable.

BRAT

BRAT installs plugins directly from their GitHub repository and auto-updates them on each release.

  1. Install BRAT from Settings → Community plugins → Browse and enable it.
  2. Open the command palette (Ctrl+P on Windows / Command+P on macOS) and run BRAT: Add a beta plugin for testing.
  3. Enter the repository URL: https://github.com/Jalad25/theme-padd.
  4. Choose whether to track the latest release or the latest commit, then select Add Plugin.
  5. Open Settings → Community plugins and enable Theme PADD.

To get future updates, run BRAT: Check for updates to all beta plugins from the command palette, or enable auto-update in BRAT's settings.

Manual

  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. In your vault, create the folder .obsidian/plugins/theme-padd/ if it does not already exist.
  3. Copy the downloaded files into that folder.
  4. Open Obsidian, go to Settings → Community plugins, and enable Theme PADD.

Usage

Open Settings → Theme PADD (palette icon).

Themes that support Theme PADD

Installed themes that publish a settings.json appear under Themes. Click into one to see the controls its author exposed. Changes apply live for active themes.

Themes that don't support Theme PADD

Themes without a settings.json appear in a separate group at the bottom. You can still add your own settings to them.

Your customizations (per theme)

Every theme, supported or not, has a Your customizations entry. This is where you author additional controls layered on top of the theme. They apply only while that theme is active.

Click Add custom settings to open the JSON editor. The schema you write is the same one theme authors use. See THEME_AUTHORING.md for the full reference. A copy-and-paste example is below.

Global customizations

At the top of the Theme PADD settings. Same JSON editor, same schema, but applied to the whole vault.

Cascade

When Theme PADD applies your settings to the vault, layers stack in this order:

  1. Theme author's settings
  2. Global customizations
  3. Your per-theme customizations

Later layers override earlier ones when keys collide.

Customization quick example

Paste this into the Add custom settings editor (either per-theme or global) to add a body-font-size slider:

{
  "schemaVersion": 1,
  "settingItems": [
    {
      "type": "control",
      "name": "Body font size",
      "control": {
        "type": "slider",
        "id": "body-font-size",
        "min": 12,
        "max": 24,
        "step": 1,
        "defaultValue": 16,
        "onChange": {
          "action": "set-css-variable",
          "name": "--font-text-size"
        }
      }
    }
  ]
}

For the full schema (every control type, every action type, validation rules), see THEME_AUTHORING.md.

Important Notes

Errors

If a theme says it supports Theme PADD but something goes wrong, Theme PADD shows a clearly labeled error on that theme's entry. There's a Copy button for the details, useful if you want to file an issue with the theme author.

Version pinning

Each theme version's settings come from that release's settings.json asset. When a theme author publishes an update, Theme PADD fetches the new spec automatically. If you downgrade a theme to a version that never shipped one, you'll see a fetch error until you re-upgrade.

Uninstalling a theme

When you remove a theme from Obsidian, Theme PADD cleans up alongside it:

  • Any control values you set in that theme's settings.
  • Any per-theme customization JSON you wrote for it.

Global customizations are unaffected. If you're about to delete a theme but want to keep your customizations, copy the JSON out of the Edit customizations modal first.

Roadmap

See ROADMAP.md for current focus and planned features.

License

GNU Affero General Public License v3.0. See LICENSE for details.

HealthExcellent
ReviewSatisfactory
About
Modify theme palettes, animations, decorations, and density through per-theme settings panels that provide color, text, number, toggle, and select controls. Preview changes live, persist customizations across theme updates, auto-discover theme specs from theme releases, and show readable error reports.
ThemingAppearanceCSS
Details
Current version
0.2.2
Last updated
Last month
Created
2 months ago
Updates
5 releases
Downloads
228
Compatible with
Obsidian 1.12.7+
Platforms
Desktop, Mobile
License
AGPL-3.0
Report bugRequest featureReport plugin
Author
JaladJaladjalad
jalad.ncc-1701.enterprises
GitHubjalad25
  1. Community
  2. Plugins
  3. Theming
  4. Theme PADD

Related plugins

Style Settings

Adjust theme, plugin, and snippet CSS variables.

Contextual Typography

Add a data-tag-name attribute to all top-level divs in preview mode containing the child's tag name, allowing contextual typography styling.

Minimal Theme Settings

Control the colors and fonts in Minimal Theme.

Hider

Hide interface elements such as tooltips, status bar, titlebar, and more.

Lapel

Show the heading levels in the gutter of the editor.

Snippetor

Create and tweak common snippets.

Show Whitespace

CSS styles and CM6 extensions to highlight whitespace in Source and Live Preview modes.

Fontsource

Load custom fonts from Fontsource into your notes.

Callout Manager

Easily create and customize callouts.

Background Image

Specify a remote URL as the background image, and a few settings to tweak the experience.