insomnia/plugins/insomnia-plugin-core-themes/themes/studio-light.js
2020-05-02 11:56:39 -07:00

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',
},
},
},
},
};