Skip to content

Commit 85eea62

Browse files
committed
More.
1 parent 84d73f2 commit 85eea62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stories/GradientPicker/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ const SketchPickerStory = () => (
4545

4646
const ColorPickerStory = () => (
4747
<UseCase palette={[
48-
{ offset: '0.00', color: 'rgb(126, 32, 207)' },
49-
{ offset: '0.42', color: 'rgb(208, 2, 27)' },
50-
{ offset: '1.00', color: 'rgb(0, 204, 255)' }
48+
{ offset: '0.00', color: '#7e20cf' },
49+
{ offset: '0.42', color: '#d0021b' },
50+
{ offset: '1.00', color: '#00ccff' }
5151
]} link={'https://github.com/casesandberg/react-color'} title={'react-color'} ColorPicker={WrappedColorPicker}/>
5252
);
5353

5454
const DefaultPickerStory = () => (
55-
<UseCase title="Default Picker" palette={[{ offset: '0', color: 'rgb(255, 0, 0)' }, { offset: '0.3', color: 'rgb(0, 255, 0)' }, { offset: '1', color: 'rgb(0, 0, 255)' }]}/>
55+
<UseCase title="Default Picker" palette={[{ offset: '0', color: '#FF0000' }, { offset: '0.3', color: '#00FF00' }, { offset: '1', color: '#0000FF' }]}/>
5656
);
5757

5858
export {

0 commit comments

Comments
 (0)