mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
module.exports = {
|
|
name: 'purple',
|
|
displayName: 'Purple',
|
|
theme: {
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
styles: {
|
|
link: {
|
|
foreground: {
|
|
default: '#68a9a2',
|
|
},
|
|
},
|
|
sidebar: {
|
|
background: {
|
|
default: '#695eb8',
|
|
success: '#a9ea6e',
|
|
notice: '#ffdb02',
|
|
warning: '#ffac49',
|
|
danger: '#ff7472',
|
|
surprise: '#c5bbff',
|
|
info: '#75ddff',
|
|
},
|
|
foreground: {
|
|
default: '#fff',
|
|
},
|
|
highlight: {
|
|
default: 'rgb(217, 204, 255)',
|
|
xxs: 'rgba(207, 190, 255, 0.05)',
|
|
xs: 'rgba(207, 190, 255, 0.1)',
|
|
sm: 'rgba(207, 190, 255, 0.2)',
|
|
md: 'rgba(207, 190, 255, 0.3)',
|
|
lg: 'rgba(207, 190, 255, 0.5)',
|
|
xl: 'rgba(207, 190, 255, 0.8)',
|
|
},
|
|
},
|
|
sidebarHeader: {
|
|
foreground: {
|
|
default: '#eee',
|
|
},
|
|
},
|
|
transparentOverlay: {
|
|
background: {
|
|
default: 'rgba(243, 242, 250, 0.8)',
|
|
},
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|