Skip to content

Commit

Permalink
feat: create poimandres-ish theme
Browse files Browse the repository at this point in the history
  • Loading branch information
megancooper committed Aug 7, 2022
1 parent 8b33701 commit 081577c
Show file tree
Hide file tree
Showing 6 changed files with 2,535 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ["plugin:prettier/recommended"],
};
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"cSpell.words": [
"poimandres"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
11 changes: 11 additions & 0 deletions README.md
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

66 changes: 66 additions & 0 deletions index.js
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",
},
},
},
},
},
];
Loading

0 comments on commit 081577c

Please sign in to comment.