notes

Slatewave for MarkEdit

A Slatewave palette overlay for MarkEdit, macOS's native markdown editor.

Latest release
0.0.1 · 2 months ago
Last commit
3 weeks ago

# Slatewave for MarkEdit

> Slate below, teal above.

## Inline markup

- **Bold** reads in sky `#38bdf8`
- *Italic* travels in purple `#b388ff`
- [Links](https://getslatewave.com), resolved
```ts
const accent = '#5eead4';   // teal-300
const error  = '#fb7185';   // rose-400
```

About this theme

A MarkEdit theme script built on MarkEdit-theming — applies the Slatewave palette to editor chrome, markdown syntax, and code blocks, with matching light and dark variants that follow the system appearance.

Slatewave for MarkEdit is a TypeScript theme script built on MarkEdit-theming. It overrides editor chrome (background, gutter, caret, selection) and markdown syntax highlighting with the Slatewave palette — no upstream CodeMirror theme dependency, so the colors stay pure.

Both dark and light variants ship in a single script; MarkEdit follows the system appearance. Scope it to one mode via extension.markeditThemeSlatewave.enabledMode in MarkEdit’s settings.json.

Install

Don't have the CLI yet? Install the Slatewave CLI →

  • Slatewave CLI

    Install with the Slatewave family CLI — one command, every theme.

    slatewave install markedit
  • Manual

    Drop the prebuilt bundle into MarkEdit's scripts folder and relaunch.

    1. Download `dist/markedit-theme-slatewave.js` from the repo
    2. Copy it to `~/Library/Containers/app.cyan.markedit/Data/Documents/scripts/`
    3. Quit and relaunch MarkEdit
  • Clone

    Build from source — requires Node/Yarn. The build auto-deploys into MarkEdit's scripts folder.

    1. git clone https://github.com/kevinlangleyjr/markedit-slatewave
    2. cd markedit-slatewave && yarn install && yarn build
    3. yarn reload