insomnia/plugins/insomnia-plugin-core-themes/themes/railscasts.js

45 lines
882 B
JavaScript
Raw Normal View History

module.exports = {
name: 'railscasts',
displayName: 'Railscasts',
theme: {
foreground: {
default: '#ddd'
},
background: {
default: '#2b2b2b',
success: '#a5c261',
notice: '#ffc66d',
warning: '#e48a37',
2018-07-18 00:48:10 +00:00
danger: '#ee4b3b',
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'
}
}
}
}
};