insomnia/plugins/insomnia-plugin-core-themes/themes/solarized-light.js
Eric Reynolds 9eefd527e1
Set solarized background and foreground colors to spec (#1992)
Co-authored-by: Eric Reynolds <eric.reynolds@konghq.com>
2020-03-11 11:59:47 -07:00

28 lines
644 B
JavaScript

module.exports = {
name: 'solarized-light',
displayName: 'Solarized Light',
theme: {
background: {
default: '#fdf6e3',
success: '#859900',
notice: '#b58900',
warning: '#cb4b16',
danger: '#dc322f',
surprise: '#6c71c4',
info: '#2aa198',
},
foreground: {
default: '#657b83',
},
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)',
},
},
};