mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
4b993a7762
[INS-452]
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
module.exports = {
|
|
name: 'one-dark',
|
|
displayName: 'One Dark',
|
|
theme: {
|
|
background: {
|
|
default: '#272c35',
|
|
success: '#98c379',
|
|
notice: '#e3a96c',
|
|
warning: '#d19a66',
|
|
danger: '#e06c75',
|
|
surprise: '#c678dd',
|
|
info: '#56b6c2',
|
|
},
|
|
foreground: {
|
|
default: '#bbb',
|
|
success: '#fff',
|
|
notice: '#fff',
|
|
warning: '#fff',
|
|
danger: '#fff',
|
|
surprise: '#fff',
|
|
info: '#fff',
|
|
},
|
|
highlight: {
|
|
default: 'rgba(114, 121, 133, 1)',
|
|
xxs: 'rgba(114, 121, 133, 0.05)',
|
|
xs: 'rgba(114, 121, 133, 0.1)',
|
|
sm: 'rgba(114, 121, 133, 0.2)',
|
|
md: 'rgba(114, 121, 133, 0.4)',
|
|
lg: 'rgba(114, 121, 133, 0.6)',
|
|
xl: 'rgba(114, 121, 133, 0.8)',
|
|
},
|
|
styles: {
|
|
appHeader: {
|
|
background: {
|
|
default: '#20252c',
|
|
},
|
|
},
|
|
sidebar: {
|
|
background: {
|
|
default: '#20252c',
|
|
},
|
|
},
|
|
dialog: {
|
|
background: {
|
|
default: '#303640',
|
|
},
|
|
},
|
|
paneHeader: {
|
|
background: {
|
|
success: '#8ab46d',
|
|
notice: '#d19a66',
|
|
warning: '#d19a66',
|
|
danger: '#d86a6f',
|
|
surprise: '#c678dd',
|
|
info: '#51acb7',
|
|
},
|
|
},
|
|
transparentOverlay: {
|
|
background: {
|
|
default: 'rgba(30, 33, 40, 0.8)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|