mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
38 lines
796 B
JavaScript
38 lines
796 B
JavaScript
|
module.exports = {
|
||
|
name: 'solarized',
|
||
|
displayName: 'Solarized',
|
||
|
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)'
|
||
|
},
|
||
|
styles: {
|
||
|
sidebar: {
|
||
|
background: {
|
||
|
default: '#073642'
|
||
|
},
|
||
|
foreground: {
|
||
|
default: '#8ea0a2'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|