mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
module.exports = {
|
|
name: 'studio-light',
|
|
displayName: 'Designer Light',
|
|
theme: {
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
background: {
|
|
success: '#3d9c62',
|
|
notice: '#bb9700',
|
|
warning: '#d6803e',
|
|
danger: '#da5b56',
|
|
info: '#003052',
|
|
surprise: '#6030BF',
|
|
},
|
|
styles: {
|
|
link: {
|
|
foreground: {
|
|
default: '#68a9a2',
|
|
},
|
|
},
|
|
editor: {
|
|
background: {
|
|
surprise: '{{ background.info }}',
|
|
info: '{{ background.surprise }}',
|
|
},
|
|
},
|
|
dialog: {
|
|
background: {
|
|
info: '#005B9E',
|
|
},
|
|
},
|
|
sidebar: {
|
|
background: {
|
|
default: '#f7fafc',
|
|
success: '#50a14f',
|
|
notice: '#c18401',
|
|
warning: '#c18401',
|
|
danger: '#e45649',
|
|
surprise: '#a626a4',
|
|
info: '#0184bc',
|
|
},
|
|
foreground: {
|
|
default: '#444',
|
|
},
|
|
highlight: {},
|
|
},
|
|
transparentOverlay: {
|
|
background: {
|
|
default: 'rgba(230,240,250,0.8)',
|
|
},
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|