You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
657 B
22 lines
657 B
import { create } from './base';
|
|
const tokens = {
|
|
bgColor: '#ffffff',
|
|
comboColor: '#99ADD1',
|
|
comboColorDisabled: '#f0f0f0',
|
|
comboStroke: '#99add1',
|
|
comboStrokeDisabled: '#d9d9d9',
|
|
edgeColor: '#99add1',
|
|
edgeColorDisabled: '#d9d9d9',
|
|
edgeColorInactive: '#1B324F',
|
|
nodeColor: '#1783ff',
|
|
nodeColorDisabled: '#1B324F',
|
|
nodeHaloStrokeOpacityActive: 0.15,
|
|
nodeHaloStrokeOpacitySelected: 0.25,
|
|
nodeIconOpacityInactive: 0.85,
|
|
nodeOpacityDisabled: 0.06,
|
|
nodeOpacityInactive: 0.25,
|
|
nodeStroke: '#000000',
|
|
textColor: '#000000',
|
|
};
|
|
export const light = create(tokens);
|
|
//# sourceMappingURL=light.js.map
|