├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── Contributing.md ├── License.md ├── Readme.md ├── dark ├── Readme.md ├── ansi.json ├── code.json ├── palette.json └── ui.json ├── eslint.config.mjs ├── light ├── Readme.md ├── ansi.json ├── code.json ├── logo.svg ├── palette.json └── ui.json ├── package.json ├── sample ├── Astro.astro ├── C#.cs ├── C++.c++ ├── CSS.css ├── Clojure.clj ├── Dart.dart ├── Diff.diff ├── Go.go ├── HTML.html ├── JSON.json ├── Java.java ├── JavaScript.js ├── JavaScript.jsx ├── MDX.mdx ├── Markdown.md ├── PHP.php ├── Python.py ├── Ruby.rb ├── Rust.rs ├── Sass.scss ├── Shell.sh ├── Swift.swift ├── TypeScript.ts ├── TypeScript.tsx ├── XML.xml ├── Yaml.yml ├── c.c └── conflict.txt ├── scripts ├── lint.mjs ├── prepare-extensions.mjs ├── prepare-themes.mjs ├── update.mjs └── util │ ├── hexToRgb.mjs │ ├── rgbToHex.mjs │ ├── stripJsonComments.mjs │ ├── template.mjs │ └── terminal-app.mjs └── themes ├── Alfred ├── Readme.md ├── Squirrelsong Light.alfredappearance ├── alfred.template.alfredappearance ├── config.json └── screenshot-light.png ├── Bartender └── Readme.md ├── Bear ├── Readme.md ├── Squirrelsong Light.theme ├── bear.template.theme ├── config.json └── screenshot-light.png ├── Chrome DevTools ├── Readme.md └── extension-light │ ├── devtools.css │ ├── devtools.html │ ├── devtools.js │ ├── images │ ├── icon128.png │ ├── icon16.png │ └── icon48.png │ └── manifest.json ├── Chrome ├── Contributing.md ├── PrivacyPolicy.md ├── Readme.md ├── chrome.template.json ├── config.json ├── extension-dark │ ├── images │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon48.png │ │ ├── theme_frame.png │ │ ├── theme_toolbar.png │ │ └── theme_toolbar_transparent.png │ └── manifest.json ├── extension-light │ ├── images │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon48.png │ │ ├── theme_frame.png │ │ ├── theme_toolbar.png │ │ └── theme_toolbar_transparent.png │ └── manifest.json ├── screenshot-dark.jpg ├── screenshot-light.jpg ├── tile-dark.jpg └── tile-light.jpg ├── CotEditor ├── Readme.md ├── Squirrelsong Light.cottheme ├── config.json ├── coteditor.template.cottheme └── screenshot-light.png ├── Cursor ├── Readme.md ├── screenshot-dark.jpg └── screenshot-light.jpg ├── Fastmail ├── Readme.md ├── config.json ├── screenshot-dark.png └── screenshot-light.png ├── Firefox ├── Contributing.md ├── Readme.md ├── config.json ├── extension │ └── manifest.json ├── firefox.template.json └── screenshot-light.jpg ├── Fzf ├── Contributing.md ├── Readme.md ├── config.json └── screenshot-dark-dp.jpg ├── Ghostty ├── Readme.md ├── Squirrelsong Dark ├── Squirrelsong Dark Deep Purple ├── config.json ├── ghostty.template.ini ├── screenshot-dark-dp.jpg └── screenshot-dark.jpg ├── Highlight ├── Readme.md └── Squirrelsong Light.theme ├── Ice └── Readme.md ├── JetBrains ├── Contributing.md ├── Readme.md ├── screenshot-light.png └── squirrelsong-light │ ├── .gitignore │ ├── resources │ ├── META-INF │ │ ├── plugin.xml │ │ └── pluginIcon.svg │ ├── editorScheme.xml │ └── theme │ │ └── Squirrelsong Light.theme.json │ └── squirrelsong-light.iml ├── Marta ├── Readme.md ├── Squirrelsong Light.theme ├── SquirrelsongLight.ettyTheme └── screenshot-light.png ├── Midnight Commander ├── Readme.md ├── screenshot-dark.png └── squirrelsong-dark.ini ├── Nimble Commander ├── Readme.md ├── Squirrelsong Light.json ├── config.json ├── nimble-commander.template.json └── screenshot-light.png ├── Pearcleaner ├── Readme.md ├── screenshot-dark.jpg └── screenshot-light.jpg ├── Peek ├── Readme.md └── custom.css ├── PrismJs ├── Readme.md ├── squirrelsong-dark.css └── squirrelsong-light.css ├── Slack ├── Readme.md ├── config.json ├── screenshot-dark.png └── screenshot-light.png ├── Sublime Text ├── Contributing.md ├── Readme.md ├── Squirrelsong Dark Deep Purple │ └── Squirrelsong Dark Deep Purple.tmTheme ├── Squirrelsong Dark │ └── Squirrelsong Dark.tmTheme ├── Squirrelsong Light │ └── Squirrelsong Light.tmTheme ├── config.json ├── screenshot-dark-dp.jpg ├── screenshot-dark.jpg ├── screenshot-light.jpg └── textmate.template.tmTheme ├── Telegram ├── Contributing.md ├── Readme.md ├── Squirrelsong Dark Deep Purple.palette ├── Squirrelsong Light.palette ├── config.json ├── screenshot-dark.png ├── screenshot-light.png └── telegram.template.palette ├── Terminal ├── Readme.md ├── Squirrelsong Dark Deep Purple.terminal ├── Squirrelsong Dark.terminal ├── config.json ├── screenshot-dark-dp.jpg ├── screenshot-dark.jpg └── terminal.template.terminal ├── VSCode ├── Contributing.md ├── Readme.md ├── SquirrelsongDark │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── Changelog.md │ ├── License.md │ ├── Readme.md │ ├── SquirrelsongDark.color-theme.json │ ├── SquirrelsongDarkDeepPurple.color-theme.json │ ├── icon.png │ ├── package-lock.json │ └── package.json ├── SquirrelsongLight │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── Changelog.md │ ├── License.md │ ├── Readme.md │ ├── SquirrelsongLight.color-theme.json │ ├── SquirrelsongLightDarkDeepPurpleTerminal.color-theme.json │ ├── SquirrelsongLightDarkTerminal.color-theme.json │ ├── images │ │ └── icon.png │ ├── package-lock.json │ └── package.json ├── config.json ├── screenshot-dark-dp.jpg ├── screenshot-dark.jpg ├── screenshot-light.jpg ├── screenshots │ ├── screenshot-code.png │ ├── screenshot-files.jpg │ └── screenshot-terminal.jpg └── vscode.template.json ├── Vim ├── Readme.md ├── colors │ └── squirrelsong_light.vim └── screenshot-light.png ├── Vivaldi ├── Readme.md ├── Squirrelsong Light.zip ├── config.json ├── screenshot-light.png ├── theme-light │ └── settings.json └── vivaldi.template.json ├── Warp ├── Readme.md ├── config.json ├── screenshot-dark.png ├── squirrelsong_dark.yaml └── warp.template.yaml ├── WezTerm ├── Readme.md ├── config.json ├── screenshot-dark.jpg ├── squirrelsong-dark.toml └── wezterm.template.toml ├── iTerm2 ├── Readme.md ├── Squirrelsong Dark.itermcolors ├── config.json ├── iterm.template.itermcolors └── screenshot-dark.jpg └── macOS └── Readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["achtung", "Ghostty"] 3 | } 4 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/Contributing.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/License.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/Readme.md -------------------------------------------------------------------------------- /dark/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/dark/Readme.md -------------------------------------------------------------------------------- /dark/ansi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/dark/ansi.json -------------------------------------------------------------------------------- /dark/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/dark/code.json -------------------------------------------------------------------------------- /dark/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/dark/palette.json -------------------------------------------------------------------------------- /dark/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/dark/ui.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /light/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/Readme.md -------------------------------------------------------------------------------- /light/ansi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/ansi.json -------------------------------------------------------------------------------- /light/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/code.json -------------------------------------------------------------------------------- /light/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/logo.svg -------------------------------------------------------------------------------- /light/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/palette.json -------------------------------------------------------------------------------- /light/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/light/ui.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/package.json -------------------------------------------------------------------------------- /sample/Astro.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Astro.astro -------------------------------------------------------------------------------- /sample/C#.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/C#.cs -------------------------------------------------------------------------------- /sample/C++.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/C++.c++ -------------------------------------------------------------------------------- /sample/CSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/CSS.css -------------------------------------------------------------------------------- /sample/Clojure.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Clojure.clj -------------------------------------------------------------------------------- /sample/Dart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Dart.dart -------------------------------------------------------------------------------- /sample/Diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Diff.diff -------------------------------------------------------------------------------- /sample/Go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Go.go -------------------------------------------------------------------------------- /sample/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/HTML.html -------------------------------------------------------------------------------- /sample/JSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/JSON.json -------------------------------------------------------------------------------- /sample/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Java.java -------------------------------------------------------------------------------- /sample/JavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/JavaScript.js -------------------------------------------------------------------------------- /sample/JavaScript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/JavaScript.jsx -------------------------------------------------------------------------------- /sample/MDX.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/MDX.mdx -------------------------------------------------------------------------------- /sample/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Markdown.md -------------------------------------------------------------------------------- /sample/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/PHP.php -------------------------------------------------------------------------------- /sample/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Python.py -------------------------------------------------------------------------------- /sample/Ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Ruby.rb -------------------------------------------------------------------------------- /sample/Rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Rust.rs -------------------------------------------------------------------------------- /sample/Sass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Sass.scss -------------------------------------------------------------------------------- /sample/Shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Shell.sh -------------------------------------------------------------------------------- /sample/Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Swift.swift -------------------------------------------------------------------------------- /sample/TypeScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/TypeScript.ts -------------------------------------------------------------------------------- /sample/TypeScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/TypeScript.tsx -------------------------------------------------------------------------------- /sample/XML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/XML.xml -------------------------------------------------------------------------------- /sample/Yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/Yaml.yml -------------------------------------------------------------------------------- /sample/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/c.c -------------------------------------------------------------------------------- /sample/conflict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/sample/conflict.txt -------------------------------------------------------------------------------- /scripts/lint.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/lint.mjs -------------------------------------------------------------------------------- /scripts/prepare-extensions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/prepare-extensions.mjs -------------------------------------------------------------------------------- /scripts/prepare-themes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/prepare-themes.mjs -------------------------------------------------------------------------------- /scripts/update.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/update.mjs -------------------------------------------------------------------------------- /scripts/util/hexToRgb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/util/hexToRgb.mjs -------------------------------------------------------------------------------- /scripts/util/rgbToHex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/util/rgbToHex.mjs -------------------------------------------------------------------------------- /scripts/util/stripJsonComments.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/util/stripJsonComments.mjs -------------------------------------------------------------------------------- /scripts/util/template.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/util/template.mjs -------------------------------------------------------------------------------- /scripts/util/terminal-app.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/scripts/util/terminal-app.mjs -------------------------------------------------------------------------------- /themes/Alfred/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Alfred/Readme.md -------------------------------------------------------------------------------- /themes/Alfred/Squirrelsong Light.alfredappearance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Alfred/Squirrelsong Light.alfredappearance -------------------------------------------------------------------------------- /themes/Alfred/alfred.template.alfredappearance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Alfred/alfred.template.alfredappearance -------------------------------------------------------------------------------- /themes/Alfred/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Alfred/config.json -------------------------------------------------------------------------------- /themes/Alfred/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Alfred/screenshot-light.png -------------------------------------------------------------------------------- /themes/Bartender/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bartender/Readme.md -------------------------------------------------------------------------------- /themes/Bear/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bear/Readme.md -------------------------------------------------------------------------------- /themes/Bear/Squirrelsong Light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bear/Squirrelsong Light.theme -------------------------------------------------------------------------------- /themes/Bear/bear.template.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bear/bear.template.theme -------------------------------------------------------------------------------- /themes/Bear/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bear/config.json -------------------------------------------------------------------------------- /themes/Bear/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Bear/screenshot-light.png -------------------------------------------------------------------------------- /themes/Chrome DevTools/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/Readme.md -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/devtools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/devtools.css -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/devtools.html -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/devtools.js -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/images/icon128.png -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/images/icon16.png -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/images/icon48.png -------------------------------------------------------------------------------- /themes/Chrome DevTools/extension-light/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome DevTools/extension-light/manifest.json -------------------------------------------------------------------------------- /themes/Chrome/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/Contributing.md -------------------------------------------------------------------------------- /themes/Chrome/PrivacyPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/PrivacyPolicy.md -------------------------------------------------------------------------------- /themes/Chrome/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/Readme.md -------------------------------------------------------------------------------- /themes/Chrome/chrome.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/chrome.template.json -------------------------------------------------------------------------------- /themes/Chrome/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/config.json -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/icon128.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/icon16.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/icon48.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/theme_frame.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/theme_toolbar.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/images/theme_toolbar_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/images/theme_toolbar_transparent.png -------------------------------------------------------------------------------- /themes/Chrome/extension-dark/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-dark/manifest.json -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/icon128.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/icon16.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/icon48.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/theme_frame.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/theme_toolbar.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/images/theme_toolbar_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/images/theme_toolbar_transparent.png -------------------------------------------------------------------------------- /themes/Chrome/extension-light/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/extension-light/manifest.json -------------------------------------------------------------------------------- /themes/Chrome/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Chrome/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/Chrome/tile-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/tile-dark.jpg -------------------------------------------------------------------------------- /themes/Chrome/tile-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Chrome/tile-light.jpg -------------------------------------------------------------------------------- /themes/CotEditor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/CotEditor/Readme.md -------------------------------------------------------------------------------- /themes/CotEditor/Squirrelsong Light.cottheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/CotEditor/Squirrelsong Light.cottheme -------------------------------------------------------------------------------- /themes/CotEditor/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/CotEditor/config.json -------------------------------------------------------------------------------- /themes/CotEditor/coteditor.template.cottheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/CotEditor/coteditor.template.cottheme -------------------------------------------------------------------------------- /themes/CotEditor/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/CotEditor/screenshot-light.png -------------------------------------------------------------------------------- /themes/Cursor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Cursor/Readme.md -------------------------------------------------------------------------------- /themes/Cursor/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Cursor/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Cursor/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Cursor/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/Fastmail/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fastmail/Readme.md -------------------------------------------------------------------------------- /themes/Fastmail/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fastmail/config.json -------------------------------------------------------------------------------- /themes/Fastmail/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fastmail/screenshot-dark.png -------------------------------------------------------------------------------- /themes/Fastmail/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fastmail/screenshot-light.png -------------------------------------------------------------------------------- /themes/Firefox/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/Contributing.md -------------------------------------------------------------------------------- /themes/Firefox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/Readme.md -------------------------------------------------------------------------------- /themes/Firefox/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/config.json -------------------------------------------------------------------------------- /themes/Firefox/extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/extension/manifest.json -------------------------------------------------------------------------------- /themes/Firefox/firefox.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/firefox.template.json -------------------------------------------------------------------------------- /themes/Firefox/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Firefox/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/Fzf/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fzf/Contributing.md -------------------------------------------------------------------------------- /themes/Fzf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fzf/Readme.md -------------------------------------------------------------------------------- /themes/Fzf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fzf/config.json -------------------------------------------------------------------------------- /themes/Fzf/screenshot-dark-dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Fzf/screenshot-dark-dp.jpg -------------------------------------------------------------------------------- /themes/Ghostty/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/Readme.md -------------------------------------------------------------------------------- /themes/Ghostty/Squirrelsong Dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/Squirrelsong Dark -------------------------------------------------------------------------------- /themes/Ghostty/Squirrelsong Dark Deep Purple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/Squirrelsong Dark Deep Purple -------------------------------------------------------------------------------- /themes/Ghostty/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/config.json -------------------------------------------------------------------------------- /themes/Ghostty/ghostty.template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/ghostty.template.ini -------------------------------------------------------------------------------- /themes/Ghostty/screenshot-dark-dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/screenshot-dark-dp.jpg -------------------------------------------------------------------------------- /themes/Ghostty/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ghostty/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Highlight/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Highlight/Readme.md -------------------------------------------------------------------------------- /themes/Highlight/Squirrelsong Light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Highlight/Squirrelsong Light.theme -------------------------------------------------------------------------------- /themes/Ice/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Ice/Readme.md -------------------------------------------------------------------------------- /themes/JetBrains/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/Contributing.md -------------------------------------------------------------------------------- /themes/JetBrains/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/Readme.md -------------------------------------------------------------------------------- /themes/JetBrains/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/screenshot-light.png -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | *.jar -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/squirrelsong-light/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/squirrelsong-light/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/resources/editorScheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/squirrelsong-light/resources/editorScheme.xml -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/resources/theme/Squirrelsong Light.theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/squirrelsong-light/resources/theme/Squirrelsong Light.theme.json -------------------------------------------------------------------------------- /themes/JetBrains/squirrelsong-light/squirrelsong-light.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/JetBrains/squirrelsong-light/squirrelsong-light.iml -------------------------------------------------------------------------------- /themes/Marta/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Marta/Readme.md -------------------------------------------------------------------------------- /themes/Marta/Squirrelsong Light.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Marta/Squirrelsong Light.theme -------------------------------------------------------------------------------- /themes/Marta/SquirrelsongLight.ettyTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Marta/SquirrelsongLight.ettyTheme -------------------------------------------------------------------------------- /themes/Marta/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Marta/screenshot-light.png -------------------------------------------------------------------------------- /themes/Midnight Commander/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Midnight Commander/Readme.md -------------------------------------------------------------------------------- /themes/Midnight Commander/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Midnight Commander/screenshot-dark.png -------------------------------------------------------------------------------- /themes/Midnight Commander/squirrelsong-dark.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Midnight Commander/squirrelsong-dark.ini -------------------------------------------------------------------------------- /themes/Nimble Commander/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Nimble Commander/Readme.md -------------------------------------------------------------------------------- /themes/Nimble Commander/Squirrelsong Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Nimble Commander/Squirrelsong Light.json -------------------------------------------------------------------------------- /themes/Nimble Commander/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Nimble Commander/config.json -------------------------------------------------------------------------------- /themes/Nimble Commander/nimble-commander.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Nimble Commander/nimble-commander.template.json -------------------------------------------------------------------------------- /themes/Nimble Commander/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Nimble Commander/screenshot-light.png -------------------------------------------------------------------------------- /themes/Pearcleaner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Pearcleaner/Readme.md -------------------------------------------------------------------------------- /themes/Pearcleaner/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Pearcleaner/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Pearcleaner/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Pearcleaner/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/Peek/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Peek/Readme.md -------------------------------------------------------------------------------- /themes/Peek/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Peek/custom.css -------------------------------------------------------------------------------- /themes/PrismJs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/PrismJs/Readme.md -------------------------------------------------------------------------------- /themes/PrismJs/squirrelsong-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/PrismJs/squirrelsong-dark.css -------------------------------------------------------------------------------- /themes/PrismJs/squirrelsong-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/PrismJs/squirrelsong-light.css -------------------------------------------------------------------------------- /themes/Slack/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Slack/Readme.md -------------------------------------------------------------------------------- /themes/Slack/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Slack/config.json -------------------------------------------------------------------------------- /themes/Slack/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Slack/screenshot-dark.png -------------------------------------------------------------------------------- /themes/Slack/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Slack/screenshot-light.png -------------------------------------------------------------------------------- /themes/Sublime Text/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/Contributing.md -------------------------------------------------------------------------------- /themes/Sublime Text/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/Readme.md -------------------------------------------------------------------------------- /themes/Sublime Text/Squirrelsong Dark Deep Purple/Squirrelsong Dark Deep Purple.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/Squirrelsong Dark Deep Purple/Squirrelsong Dark Deep Purple.tmTheme -------------------------------------------------------------------------------- /themes/Sublime Text/Squirrelsong Dark/Squirrelsong Dark.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/Squirrelsong Dark/Squirrelsong Dark.tmTheme -------------------------------------------------------------------------------- /themes/Sublime Text/Squirrelsong Light/Squirrelsong Light.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/Squirrelsong Light/Squirrelsong Light.tmTheme -------------------------------------------------------------------------------- /themes/Sublime Text/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/config.json -------------------------------------------------------------------------------- /themes/Sublime Text/screenshot-dark-dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/screenshot-dark-dp.jpg -------------------------------------------------------------------------------- /themes/Sublime Text/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Sublime Text/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/Sublime Text/textmate.template.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Sublime Text/textmate.template.tmTheme -------------------------------------------------------------------------------- /themes/Telegram/Contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | [Docs](https://core.telegram.org/themes) 4 | -------------------------------------------------------------------------------- /themes/Telegram/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/Readme.md -------------------------------------------------------------------------------- /themes/Telegram/Squirrelsong Dark Deep Purple.palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/Squirrelsong Dark Deep Purple.palette -------------------------------------------------------------------------------- /themes/Telegram/Squirrelsong Light.palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/Squirrelsong Light.palette -------------------------------------------------------------------------------- /themes/Telegram/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/config.json -------------------------------------------------------------------------------- /themes/Telegram/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/screenshot-dark.png -------------------------------------------------------------------------------- /themes/Telegram/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/screenshot-light.png -------------------------------------------------------------------------------- /themes/Telegram/telegram.template.palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Telegram/telegram.template.palette -------------------------------------------------------------------------------- /themes/Terminal/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/Readme.md -------------------------------------------------------------------------------- /themes/Terminal/Squirrelsong Dark Deep Purple.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/Squirrelsong Dark Deep Purple.terminal -------------------------------------------------------------------------------- /themes/Terminal/Squirrelsong Dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/Squirrelsong Dark.terminal -------------------------------------------------------------------------------- /themes/Terminal/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/config.json -------------------------------------------------------------------------------- /themes/Terminal/screenshot-dark-dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/screenshot-dark-dp.jpg -------------------------------------------------------------------------------- /themes/Terminal/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/Terminal/terminal.template.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Terminal/terminal.template.terminal -------------------------------------------------------------------------------- /themes/VSCode/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/Contributing.md -------------------------------------------------------------------------------- /themes/VSCode/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/Readme.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/.vscode/launch.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/.vscodeignore: -------------------------------------------------------------------------------- 1 | .* 2 | .*/** 3 | *.config.* 4 | node_modules/** 5 | -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/Changelog.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/License.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/Readme.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/SquirrelsongDark.color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/SquirrelsongDark.color-theme.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/SquirrelsongDarkDeepPurple.color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/SquirrelsongDarkDeepPurple.color-theme.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/icon.png -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/package-lock.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongDark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongDark/package.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/.vscode/launch.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/.vscodeignore: -------------------------------------------------------------------------------- 1 | .* 2 | .*/** 3 | *.config.* 4 | node_modules/** 5 | -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/Changelog.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/License.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/Readme.md -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/SquirrelsongLight.color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/SquirrelsongLight.color-theme.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/SquirrelsongLightDarkDeepPurpleTerminal.color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/SquirrelsongLightDarkDeepPurpleTerminal.color-theme.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/SquirrelsongLightDarkTerminal.color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/SquirrelsongLightDarkTerminal.color-theme.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/images/icon.png -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/package-lock.json -------------------------------------------------------------------------------- /themes/VSCode/SquirrelsongLight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/SquirrelsongLight/package.json -------------------------------------------------------------------------------- /themes/VSCode/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/config.json -------------------------------------------------------------------------------- /themes/VSCode/screenshot-dark-dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshot-dark-dp.jpg -------------------------------------------------------------------------------- /themes/VSCode/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/VSCode/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshot-light.jpg -------------------------------------------------------------------------------- /themes/VSCode/screenshots/screenshot-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshots/screenshot-code.png -------------------------------------------------------------------------------- /themes/VSCode/screenshots/screenshot-files.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshots/screenshot-files.jpg -------------------------------------------------------------------------------- /themes/VSCode/screenshots/screenshot-terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/screenshots/screenshot-terminal.jpg -------------------------------------------------------------------------------- /themes/VSCode/vscode.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/VSCode/vscode.template.json -------------------------------------------------------------------------------- /themes/Vim/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vim/Readme.md -------------------------------------------------------------------------------- /themes/Vim/colors/squirrelsong_light.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vim/colors/squirrelsong_light.vim -------------------------------------------------------------------------------- /themes/Vim/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vim/screenshot-light.png -------------------------------------------------------------------------------- /themes/Vivaldi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/Readme.md -------------------------------------------------------------------------------- /themes/Vivaldi/Squirrelsong Light.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/Squirrelsong Light.zip -------------------------------------------------------------------------------- /themes/Vivaldi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/config.json -------------------------------------------------------------------------------- /themes/Vivaldi/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/screenshot-light.png -------------------------------------------------------------------------------- /themes/Vivaldi/theme-light/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/theme-light/settings.json -------------------------------------------------------------------------------- /themes/Vivaldi/vivaldi.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Vivaldi/vivaldi.template.json -------------------------------------------------------------------------------- /themes/Warp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Warp/Readme.md -------------------------------------------------------------------------------- /themes/Warp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Warp/config.json -------------------------------------------------------------------------------- /themes/Warp/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Warp/screenshot-dark.png -------------------------------------------------------------------------------- /themes/Warp/squirrelsong_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Warp/squirrelsong_dark.yaml -------------------------------------------------------------------------------- /themes/Warp/warp.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/Warp/warp.template.yaml -------------------------------------------------------------------------------- /themes/WezTerm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/WezTerm/Readme.md -------------------------------------------------------------------------------- /themes/WezTerm/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/WezTerm/config.json -------------------------------------------------------------------------------- /themes/WezTerm/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/WezTerm/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/WezTerm/squirrelsong-dark.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/WezTerm/squirrelsong-dark.toml -------------------------------------------------------------------------------- /themes/WezTerm/wezterm.template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/WezTerm/wezterm.template.toml -------------------------------------------------------------------------------- /themes/iTerm2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/iTerm2/Readme.md -------------------------------------------------------------------------------- /themes/iTerm2/Squirrelsong Dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/iTerm2/Squirrelsong Dark.itermcolors -------------------------------------------------------------------------------- /themes/iTerm2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/iTerm2/config.json -------------------------------------------------------------------------------- /themes/iTerm2/iterm.template.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/iTerm2/iterm.template.itermcolors -------------------------------------------------------------------------------- /themes/iTerm2/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/iTerm2/screenshot-dark.jpg -------------------------------------------------------------------------------- /themes/macOS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapegin/squirrelsong/HEAD/themes/macOS/Readme.md --------------------------------------------------------------------------------