insomnia/plugins/insomnia-plugin-core-themes/themes/one-dark.js
Gregory Schier 5ad79f3bbc
JS themes and convert themes (#1047)
* 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
2018-07-17 16:34:28 -07:00

61 lines
1.3 KiB
JavaScript

module.exports = {
name: 'one-dark',
displayName: 'One Dark',
theme: {
background: {
default: '#272c35',
success: '#98c379',
notice: '#d19a66',
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.3)',
lg: 'rgba(114, 121, 133, 0.5)',
xl: 'rgba(114, 121, 133, 0.8)'
},
styles: {
sidebar: {
background: {
default: '#20252c'
}
},
dialog: {
background: {
default: '#2b303a'
}
},
paneHeader: {
background: {
success: '#8ab46d',
notice: '#d19a66',
warning: '#d19a66',
danger: '#d86a6f',
surprise: '#c678dd',
info: '#51acb7'
}
},
transparentOverlay: {
background: {
default: 'rgba(30, 33, 40, 0.8)'
}
}
}
}
};