mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
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'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|