Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@huytd
Created June 7, 2022 05:48
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 huytd/aeca47662a022bf8f836481f2ea52f2c to your computer and use it in GitHub Desktop.
Save huytd/aeca47662a022bf8f836481f2ea52f2c to your computer and use it in GitHub Desktop.
Rose Pine Moon color theme for Blink.sh - Modified from ng-hai/rose-pine-blinksh
const palette = {
base: "#232136",
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, 0.3)",
};
t.prefs_.set("cursor-color", palette.rose);
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