Now you can follow me there!
This file contains hidden or 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
| // Nordic (Ghostty-based) for Blink Shell | |
| // How to install: | |
| // 1) Upload this file to a place with a RAW URL (e.g. GitHub Gist raw URL), or keep locally and import that URL. | |
| // 2) In Blink: Settings → Appearance → New Theme → paste the raw URL → Save → select the theme. | |
| // Docs: https://docs.blink.sh/advanced/creating-fonts-and-themes | |
| (function setNordicTheme(t) { | |
| // ANSI base colors (0–15) | |
| const black = '#191d24'; | |
| const red = '#bf616a'; |
This file contains hidden or 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
| 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) |