Created
September 29, 2025 23:52
-
-
Save Jmlevick/2a700e6a897ea3fd8e14b76568de5590 to your computer and use it in GitHub Desktop.
nordic: blink shell theme
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'; | |
| const green = '#a3be8c'; | |
| const yellow = '#ebcb8b'; | |
| const blue = '#5e81ac'; | |
| const magenta = '#b48ead'; | |
| const cyan = '#8fbcbb'; | |
| const white = '#bbc3d4'; | |
| const lightBlack = '#3b4252'; | |
| const lightRed = '#c5727a'; | |
| const lightGreen = '#b1c89d'; | |
| const lightYellow = '#efd49f'; | |
| const lightBlue = '#88c0d0'; | |
| const lightMagenta = '#be9d88'; | |
| const lightCyan = '#9fc6c5'; | |
| const lightWhite = '#d8dee9'; | |
| const foreground = '#bbc3d4'; | |
| const background = '#242933'; | |
| // Apply palette | |
| t.prefs_.set('color-palette-overrides', [ | |
| black, red, green, yellow, blue, magenta, cyan, white, | |
| lightBlack, lightRed, lightGreen, lightYellow, lightBlue, lightMagenta, lightCyan, lightWhite | |
| ]); | |
| // Foreground / background | |
| t.prefs_.set('foreground-color', foreground); | |
| t.prefs_.set('background-color', background); | |
| // Cursor | |
| t.prefs_.set('cursor-color', 'rgba(187, 195, 212, 0.85)'); // #bbc3d4 with alpha | |
| // Optional toggles | |
| t.prefs_.set('cursor-blink', false); | |
| t.prefs_.set('enable-bold', true); | |
| t.prefs_.set('enable-bold-as-bright', false); | |
| })(t); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment