insomnia/plugins/insomnia-plugin-core-themes/themes/hyper.js
2018-07-17 19:39:15 -04:00

42 lines
798 B
JavaScript

module.exports = {
name: 'hyper',
displayName: 'Hyper',
theme: {
foreground: {
default: '#ccc'
},
background: {
default: '#000',
success: '#87ee59',
notice: '#f8d245',
warning: '#f9ac2a',
danger: '#ff505c',
surprise: '#f24aff',
info: '#23dce8'
},
styles: {
dialog: {
background: {
default: '#111'
}
},
transparentOverlay: {
background: {
default: 'rgba(0, 0, 0, 0.5)'
}
},
paneHeader: {
background: {
default: '#000',
success: '#6ac04b',
notice: '#ebc742',
warning: '#ea9f29',
danger: '#df4b56',
surprise: '#ed46f9',
info: '#20bec9'
}
}
}
}
};