Change default fill color to motion blue

This commit is contained in:
DD 2017-10-26 15:56:27 -04:00
parent 162ca81ff9
commit ad28e1ff16

View file

@ -3,7 +3,7 @@ import {CHANGE_SELECTED_ITEMS} from './selected-items';
import {getColorsFromSelection} from '../helper/style-path'; import {getColorsFromSelection} from '../helper/style-path';
const CHANGE_FILL_COLOR = 'scratch-paint/fill-color/CHANGE_FILL_COLOR'; const CHANGE_FILL_COLOR = 'scratch-paint/fill-color/CHANGE_FILL_COLOR';
const initialState = '#000'; const initialState = '#4C97FF';
// Matches hex colors // Matches hex colors
const regExp = /^#([0-9a-f]{3}){1,2}$/i; const regExp = /^#([0-9a-f]{3}){1,2}$/i;