mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5ad79f3bbc
* 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
17 lines
278 B
JavaScript
17 lines
278 B
JavaScript
module.exports = {
|
|
name: 'light',
|
|
displayName: 'Simple Light',
|
|
theme: {
|
|
styles: {
|
|
transparentOverlay: {
|
|
background: {
|
|
default: 'rgba(240, 240, 240, 0.8)'
|
|
},
|
|
foreground: {
|
|
default: '#555'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|