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

62 lines
1.5 KiB
JavaScript

module.exports = {
name: 'one-light',
displayName: 'One Light',
theme: {
background: {
default: '#fafafa',
success: '#50a14f',
notice: '#c18401',
warning: '#c18401',
danger: '#e45649',
surprise: '#a626a4',
info: '#0184bc'
},
foreground: {
default: '#777'
},
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: '#eaeaeb',
success: '#50a14f',
notice: '#c18401',
warning: '#c18401',
danger: '#e45649',
surprise: '#a626a4',
info: '#0184bc'
},
foreground: {
default: '#444'
},
highlight: {
default: '#888'
}
},
paneHeader: {
background: {
success: '{{ styles.sidebar.background.success }}',
notice: '{{ styles.sidebar.background.notice }}',
warning: '{{ styles.sidebar.background.warning }}',
danger: '{{ styles.sidebar.background.danger }}',
surprise: '{{ styles.sidebar.background.surprise }}',
info: '{{ styles.sidebar.background.info }}'
}
},
transparentOverlay: {
background: {
default: 'rgba(30, 33, 40, 0.8)'
}
}
}
}
};