Skip to content

Latest commit

 

History

History
62 lines (56 loc) · 2.48 KB

File metadata and controls

62 lines (56 loc) · 2.48 KB
name Slatewave for Sublime Text
shortName Sublime Text
slug sublime-text
cliSlug sublime-text
category editor
tagline A full Sublime color scheme plus UI theme, with a one-shot activation command.
summary Both halves of a Sublime Text theme — `Slatewave.sublime-color-scheme` for syntax, and `Slatewave.sublime-theme` for sidebar, tabs, status bar, quick panel, and auto-complete chrome — activated together via a single command palette entry.
status beta
order 14
accent #38bdf8
repo
owner name url defaultBranch
kevinlangleyjr
sublime-text-slatewave
main
preview
kind language sample
code
typescript
// slatewave/palette.ts export const accent = '#5eead4'; export type Surface = 'editor' | 'terminal' | 'notes' | 'chat'; export function apply(name: string, surface: Surface): string { return `${name} on ${surface}`.padEnd(32, '·') + accent; } const editor = apply('Slatewave', 'editor'); console.log(editor);
install
label description steps
Clone
Clone into Sublime's Packages directory. The path differs by platform.
macOS — `git clone https://github.com/kevinlangleyjr/sublime-text-slatewave.git "$HOME/Library/Application Support/Sublime Text/Packages/Slatewave"`
Linux — `git clone https://github.com/kevinlangleyjr/sublime-text-slatewave.git "$HOME/.config/sublime-text/Packages/Slatewave"`
Windows — `git clone https://github.com/kevinlangleyjr/sublime-text-slatewave.git "%APPDATA%\Sublime Text\Packages\Slatewave"`
label description steps
Activate
Once installed, pick the theme from Sublime's settings (or use the bundled command palette entry).
Preferences → Select Color Scheme… → Slatewave
Preferences → Select Theme… → Slatewave
Or run "Slatewave — Activate Color Scheme & Theme" from the palette
tags
editor
sublime-text
related
vscode
jetbrains
zed

Slatewave for Sublime Text ships both a color scheme and a UI theme so every pixel — from editor tokens to the status bar, quick panel, and auto-complete kind labels — reads in the Slatewave palette. The color scheme works standalone if you want to keep a different UI theme.

A bundled Slatewave: Activate Color Scheme & Theme palette command flips both at once, so you don't have to set them separately.

A Package Control listing is in flight; until then, the clone path above is the install.