-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b33701
commit 081577c
Showing
6 changed files
with
2,535 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: ["plugin:prettier/recommended"], | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"cSpell.words": [ | ||
"poimandres" | ||
], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# insomnia-plugin-custom-poimandres-theme | ||
A custom poimandres theme for insomnia | ||
|
||
## About | ||
|
||
This is a custom poimandres-ish theme for insomnia. I really like the vscode [poimandres](https://github.com/drcmda/poimandres-theme) and wanted a similar color scheme inside insomnia. | ||
|
||
## Contributing | ||
|
||
Contributions are welcome! This theme is rough, and I chose a stopping point that was sufficient for the areas of insomnia I use daily. Feel free to fork and improve! | ||
|
||
## Installation | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
module.exports.themes = [ | ||
{ | ||
name: "custom-poimandres", | ||
displayName: "Custom Poimandres", | ||
theme: { | ||
background: { | ||
default: "#1b1e28", | ||
success: "#add7FF", | ||
notice: "#5de4c7", | ||
warning: "#fffac2", | ||
danger: "#fffac2", | ||
surprise: "#f087bd", | ||
info: "#add7ff", | ||
}, | ||
foreground: { | ||
default: "#7390aa", | ||
success: "#333", | ||
notice: "#000", | ||
warning: "#333", | ||
danger: "#333", | ||
surprise: "#000", | ||
info: "#000", | ||
}, | ||
highlight: { | ||
default: "#506477", | ||
}, | ||
|
||
styles: { | ||
appHeader: { | ||
foreground: { | ||
surprise: "#fff", | ||
}, | ||
background: { | ||
surprise: "#303340", | ||
}, | ||
}, | ||
sidebarHeader: { | ||
foreground: { | ||
surprise: "#fff", | ||
}, | ||
background: { | ||
surprise: "#303340", | ||
}, | ||
}, | ||
paneHeader: { | ||
foreground: { | ||
surprise: "#fff", | ||
}, | ||
background: { | ||
surprise: "#303340", | ||
}, | ||
}, | ||
dialog: { | ||
background: { | ||
default: "#1b1e28", | ||
surprise: "#303340", | ||
}, | ||
foreground: { | ||
default: "#91b4d5", | ||
surprise: "#fff", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.