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;