mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
5ad79f3bbc
* JS themes and convert themes * Publish - insomnia-plugin-core-themes@1.0.1 - insomnia-app@1.0.28 * Publish - insomnia-plugin-core-themes@1.0.2 - insomnia-app@1.0.29 * Publish - insomnia-plugin-core-themes@1.0.3 - insomnia-app@1.0.30
36 lines
670 B
JavaScript
36 lines
670 B
JavaScript
module.exports = {
|
|
name: 'dark',
|
|
displayName: 'Simple Dark',
|
|
theme: {
|
|
foreground: {
|
|
default: '#ddd'
|
|
},
|
|
background: {
|
|
default: '#222',
|
|
success: '#8fc860',
|
|
notice: '#e5ca1e',
|
|
warning: '#f9a230',
|
|
danger: '#f06d6b',
|
|
surprise: '#aca0f2',
|
|
info: '#6eccec'
|
|
},
|
|
styles: {
|
|
paneHeader: {
|
|
background: {
|
|
success: '#77a855',
|
|
notice: '#d1b81c',
|
|
warning: '#d9892c',
|
|
danger: '#d35855',
|
|
surprise: '#8e84cb',
|
|
info: '#62a6c3'
|
|
}
|
|
},
|
|
dialog: {
|
|
background: {
|
|
default: '#2a2a2a'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|