insomnia/plugins/insomnia-plugin-core-themes/themes/purple.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

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