insomnia/plugins/insomnia-plugin-core-themes/themes/one-light.js

60 lines
1.5 KiB
JavaScript
Raw Normal View History

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',
},
2019-04-17 23:10:18 +00:00
highlight: {},
},
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)',
},
},
},
},
};