insomnia/plugins/insomnia-plugin-core-themes/themes/solarized.js

38 lines
796 B
JavaScript
Raw Normal View History

module.exports = {
name: 'solarized',
displayName: 'Solarized',
theme: {
background: {
default: '#fdf6e3',
success: '#859900',
notice: '#b58900',
warning: '#cb4b16',
danger: '#dc322f',
surprise: '#6c71c4',
info: '#2aa198'
},
foreground: {
2018-07-18 00:48:10 +00:00
default: '#556970'
},
highlight: {
default: 'rgb(142, 149, 146)',
xxs: 'rgba(159, 167, 164, 0.05)',
xs: 'rgba(159, 167, 164, 0.1)',
sm: 'rgba(159, 167, 164, 0.2)',
md: 'rgba(142, 149, 146, 0.3)',
lg: 'rgba(142, 149, 146, 0.6)',
xl: 'rgba(142, 149, 146, 0.8)'
},
styles: {
sidebar: {
background: {
default: '#073642'
},
foreground: {
2018-07-18 00:48:10 +00:00
default: '#9cafb1'
}
}
}
}
};