Skip to content

Instantly share code, notes, and snippets.

@Jmlevick
Last active June 22, 2024 05:47
Show Gist options
  • Save Jmlevick/d82739c5d7e4479deb4d9040d858b669 to your computer and use it in GitHub Desktop.
Save Jmlevick/d82739c5d7e4479deb4d9040d858b669 to your computer and use it in GitHub Desktop.
t.prefs_.set("color-palette-overrides",[
"#6c6a58", // Black (0th color)
"#b1ad99", // Red (1st color)
"#c9c6b5", // Green (2nd color)
"#b1ad99", // Yellow (3rd color, duplicate for consistency)
"#2e3f50", // Blue (4th color)
"#60635d", // Magenta (5th color)
"#55554b", // Cyan (6th color)
"#c9c6b5", // White (7th color, duplicate for consistency)
"#6c6a58", // Bright Black (same as black)
"#b1ad99", // Bright Red (same as red)
"#c9c6b5", // Bright Green (same as green)
"#b1ad99", // Bright Yellow (same as yellow)
"#2e3f50", // Bright Blue (same as blue)
"#60635d", // Bright Magenta (same as magenta)
"#55554b", // Bright Cyan (same as cyan)
"#c9c6b5" // Bright White (same as white)
]);
t.prefs_.set("foreground-color", "#c9c6b5"); // Foreground color
t.prefs_.set("background-color", "#2e3f50"); // Background color
t.prefs_.set("cursor-color", "rgba(201, 198, 181, 0.5)"); // Cursor color (Semi-transparent white)
​⬤
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment