mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
28 lines
642 B
JavaScript
28 lines
642 B
JavaScript
module.exports = {
|
|
name: 'solarized-dark',
|
|
displayName: 'Solarized Dark',
|
|
theme: {
|
|
background: {
|
|
default: '#073642',
|
|
success: '#859900',
|
|
notice: '#b58900',
|
|
warning: '#cb4b16',
|
|
danger: '#dc322f',
|
|
surprise: '#6c71c4',
|
|
info: '#2aa198',
|
|
},
|
|
foreground: {
|
|
default: '#98aaac',
|
|
},
|
|
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)',
|
|
},
|
|
},
|
|
};
|