From ad28e1ff16769c60e74f244691879613754e86c9 Mon Sep 17 00:00:00 2001 From: DD Date: Thu, 26 Oct 2017 15:56:27 -0400 Subject: [PATCH] Change default fill color to motion blue --- 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 fb7d7642..47e713dc 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 = '#000'; +const initialState = '#4C97FF'; // Matches hex colors const regExp = /^#([0-9a-f]{3}){1,2}$/i;