From 7c8c9aa23d16565a7b66eae1ff9bfa12a16f0dc6 Mon Sep 17 00:00:00 2001 From: DD Date: Thu, 26 Oct 2017 16:41:01 -0400 Subject: [PATCH] change default color to looks purple --- src/reducers/fill-color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reducers/fill-color.js b/src/reducers/fill-color.js index 47e713dc..5e4a4a46 100644 --- a/src/reducers/fill-color.js +++ b/src/reducers/fill-color.js @@ -3,7 +3,7 @@ import {CHANGE_SELECTED_ITEMS} from './selected-items'; import {getColorsFromSelection} from '../helper/style-path'; const CHANGE_FILL_COLOR = 'scratch-paint/fill-color/CHANGE_FILL_COLOR'; -const initialState = '#4C97FF'; +const initialState = '#9966FF'; // Matches hex colors const regExp = /^#([0-9a-f]{3}){1,2}$/i;