insomnia/plugins/insomnia-plugin-core-themes/themes/railscasts.js
Gregory Schier 5ad79f3bbc
JS themes and convert themes (#1047)
* JS themes and convert themes

* Publish

 - insomnia-plugin-core-themes@1.0.1
 - insomnia-app@1.0.28

* Publish

 - insomnia-plugin-core-themes@1.0.2
 - insomnia-app@1.0.29

* Publish

 - insomnia-plugin-core-themes@1.0.3
 - insomnia-app@1.0.30
2018-07-17 16:34:28 -07:00

45 lines
882 B
JavaScript

module.exports = {
name: 'railscasts',
displayName: 'Railscasts',
theme: {
foreground: {
default: '#ddd'
},
background: {
default: '#2b2b2b',
success: '#a5c261',
notice: '#ffc66d',
warning: '#e48a37',
danger: '#dc4939',
surprise: '#b6b3eb',
info: '#6d9cbe'
},
styles: {
paneHeader: {
background: {
default: '#2b2b2b',
success: '#97b159',
notice: '#efba66',
warning: '#e48a37',
danger: '#dc4939',
surprise: '#a3a1d3',
info: '#6d9cbe'
}
},
dialog: {
background: {
default: '#323232'
}
},
transparentOverlay: {
background: {
default: 'rgba(30, 30, 30, 0.8)'
},
foreground: {
default: '#e1deda'
}
}
}
}
};