mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +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
62 lines
1.5 KiB
JavaScript
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)'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|