mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
3883dc6feb
* Start working on insomnia-testing package to generate Mocha code * Moved some things around * Integration tests and ability to run multiple files * Fix integration tests * Rename runSuite to runMochaTests * Add types for test results * Fix lint errors * Play with Chia assertions * insomnia and chai globals, plus a bunch of improvements * Stub chai and axios Flow types * Ability to reference requests by ID * Fix chai flow-typed location * Address PR comments (small tweaks) * Basic UI going * Lots and lots and lots * Pretty-much done with the unit test UI * Minor CSS tweak * Activity bar triple toggle and more * Minor tweak * Unit Test and Suite deletion * Bump Designer version * Fix eslint stuff * Fix insomnia-testing tests * Fix tests * lib@2.2.9 * Remove tests tab from response pane * Hook up Insomnia networking * Fix linting * Bump version for alpha * Remove extra ActivityToggleSwitch * Remove unused import * Add test:pre-release script that excludes CLI tests * Less repetition * Clean some things up * Tweaks after self-cr * Undo request ID tag * Swap out switch for new activity toggle component * Extra check * Remove dead code * Delete dead test * Oops, revert example code * PR feedback * More PR comment addresses
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
module.exports = {
|
|
name: 'studio-light',
|
|
displayName: 'Designer Light',
|
|
theme: {
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
background: {
|
|
success: '#3d9c62',
|
|
notice: '#bb9700',
|
|
warning: '#d6803e',
|
|
danger: '#da5b56',
|
|
info: '#003052',
|
|
surprise: '#6030BF',
|
|
},
|
|
styles: {
|
|
link: {
|
|
foreground: {
|
|
default: '#68a9a2',
|
|
},
|
|
},
|
|
editor: {
|
|
background: {
|
|
surprise: '{{ background.info }}',
|
|
info: '{{ background.surprise }}',
|
|
},
|
|
},
|
|
dialog: {
|
|
background: {
|
|
info: '#005B9E',
|
|
},
|
|
},
|
|
sidebar: {
|
|
background: {
|
|
default: '#f7fafc',
|
|
success: '#50a14f',
|
|
notice: '#c18401',
|
|
warning: '#c18401',
|
|
danger: '#e45649',
|
|
surprise: '#6030BF',
|
|
info: '#0184bc',
|
|
},
|
|
foreground: {
|
|
default: '#444',
|
|
},
|
|
highlight: {},
|
|
},
|
|
transparentOverlay: {
|
|
background: {
|
|
default: 'rgba(230,240,250,0.8)',
|
|
},
|
|
foreground: {
|
|
default: '#555',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|