Skip to content

Instantly share code, notes, and snippets.

@pmrt
Last active June 12, 2022 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmrt/8889a07e8936f37de865e3d5c7f61f60 to your computer and use it in GitHub Desktop.
Save pmrt/8889a07e8936f37de865e3d5c7f61f60 to your computer and use it in GitHub Desktop.
BlinkShell Custom theme
const palette = {
base: "#191724",
surface: "#2a273f",
overlay: "#393552",
muted: "#6e6a86",
subtle: "#908caa",
text: "#e0def4",
love: "#eb6f92",
gold: "#f6c177",
rose: "#ea9a97",
pine: "#3e8fb0",
foam: "#9ccfd8",
iris: "#c4a7e7",
highlightLow: "rgba(129, 124, 156, 0.08)",
highlightMed: "rgba(129, 124, 156, 0.15)",
highlightHigh: "rgba(129, 124, 156, 1)",
};
t.prefs_.set("cursor-color", palette.highlightHigh);
t.prefs_.set("foreground-color", palette.text);
t.prefs_.set("background-color", palette.base);
t.prefs_.set("color-palette-overrides", [
palette.overlay,
palette.love,
palette.pine,
palette.gold,
palette.foam,
palette.iris,
palette.rose,
palette.text,
palette.subtle,
palette.love,
palette.pine,
palette.gold,
palette.foam,
palette.iris,
palette.rose,
palette.text,
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment