Pass alpha transparency up to the story

Fixes #802.

Instead of just passing `color.hex`, also pass the alpha value.
This commit is contained in:
Rahul 2018-01-02 16:06:10 -08:00 committed by GitHub
parent 7ef5e392ce
commit 0828155d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,19 @@ class ColorType extends React.Component {
this.popover = e;
}}
>
<SketchPicker color={knob.value} onChange={color => onChange(color.hex)} />
<SketchPicker
color={knob.value}
onChange={color =>
onChange(`
rgba(
${color.rgb.r},
${color.rgb.g},
${color.rgb.b},
${color.rgb.a}
)
`)
}
/>
</div>
),
() => null