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

52 lines
967 B
JavaScript
Raw Normal View History

module.exports = {
name: 'hyper',
displayName: 'Hyper',
theme: {
foreground: {
2018-07-18 00:48:10 +00:00
default: '#ddd'
},
background: {
default: '#000',
success: '#87ee59',
notice: '#f8d245',
warning: '#f9ac2a',
danger: '#ff505c',
2018-07-17 23:39:15 +00:00
surprise: '#f24aff',
info: '#23dce8'
},
2018-07-18 00:48:10 +00:00
rawCss: `
.tooltip, .dropdown__menu {
opacity: 0.95;
}
`,
styles: {
dialog: {
background: {
default: '#111'
}
},
transparentOverlay: {
background: {
default: 'rgba(0, 0, 0, 0.5)'
}
},
2018-07-18 00:48:10 +00:00
sidebar: {
highlight: {
default: '#aaa'
}
},
paneHeader: {
background: {
default: '#000',
success: '#6ac04b',
notice: '#ebc742',
warning: '#ea9f29',
danger: '#df4b56',
2018-07-17 23:39:15 +00:00
surprise: '#ed46f9',
info: '#20bec9'
}
}
}
}
};