From 692fe676813d9bc3382dcc405bc7e5ad1d35d2c7 Mon Sep 17 00:00:00 2001 From: Jed Watson Date: Fri, 2 Feb 2018 23:14:02 +1100 Subject: [PATCH] Adding more colours to the examples --- examples/data.js | 12 ++++++++---- examples/pages/Styled.js | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/examples/data.js b/examples/data.js index c02ac08f9f..02d3d856e4 100644 --- a/examples/data.js +++ b/examples/data.js @@ -1,10 +1,14 @@ export const colourOptions = [ - { value: 'red', label: 'Red', color: '#FF5630' }, - { value: 'purple', label: 'Purple', color: '#6554C0' }, + { value: 'ocean', label: 'Ocean', color: '#00B8D9' }, { value: 'blue', label: 'Blue', color: '#0052CC', disabled: true }, + { value: 'purple', label: 'Purple', color: '#5243AA' }, + { value: 'red', label: 'Red', color: '#FF5630' }, + { value: 'ochre', label: 'Ochre', color: '#FF8B00' }, + { value: 'yellow', label: 'Yellow', color: '#FFC400' }, { value: 'green', label: 'Green', color: '#36B37E' }, - { value: 'yellow', label: 'Yellow', color: '#FFAB00' }, - { value: 'grey', label: 'Grey', color: '#666666' }, + { value: 'forest', label: 'Forest', color: '#00875A' }, + { value: 'slate', label: 'Slate', color: '#253858' }, + { value: 'silver', label: 'Silver', color: '#666666' }, ]; export const flavourOptions = [ diff --git a/examples/pages/Styled.js b/examples/pages/Styled.js index dfed2c3f06..ab7e02f95d 100644 --- a/examples/pages/Styled.js +++ b/examples/pages/Styled.js @@ -98,7 +98,7 @@ export default class StyledApp extends Component<*, State> {

Single Select

{

Multi Select