Last active
April 19, 2022 19:20
-
-
Save mattbailey/c72fe1ebe8b09da42b4e146b00c8ed83 to your computer and use it in GitHub Desktop.
catppuccin blink theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
black = "#6E6C7E"; | |
red = "#F28FAD"; // red | |
green = "#ABE9B3"; // green | |
yellow = "#FAE3B0"; // yellow | |
blue = "#96CDFB"; // blue | |
magenta = "#F5C2E7"; // pink | |
cyan = "#89DCEB"; // cyan | |
white = "#D9E0EE"; // light gray | |
lightBlack = "#988BA2"; // medium gray | |
lightRed = "#F28FAD"; // red | |
lightGreen = "#ABE9B3"; // green | |
lightYellow = "#FAE3B0"; // yellow | |
lightBlue = "#96CDFB"; // blue | |
lightMagenta = "#F5C2E7"; // pink | |
lightCyan = "#89DCEB"; // cyan | |
lightWhite = "#D9E0EE"; // white | |
t.prefs_.set("color-palette-overrides", [ | |
black, | |
red, | |
green, | |
yellow, | |
blue, | |
magenta, | |
cyan, | |
white, | |
lightBlack, | |
lightRed, | |
lightGreen, | |
lightYellow, | |
lightBlue, | |
lightMagenta, | |
lightCyan, | |
lightWhite, | |
]); | |
t.prefs_.set("cursor-color", "rgba(245, 224, 220, 0.5)"); | |
t.prefs_.set("foreground-color", "#D9E0EE"); | |
t.prefs_.set("background-color", "#1E1E2E"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment