diff --git a/src/components/fill-color-indicator.jsx b/src/components/fill-color-indicator.jsx
new file mode 100644
index 00000000..7a526d58
--- /dev/null
+++ b/src/components/fill-color-indicator.jsx
@@ -0,0 +1,38 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import {defineMessages, injectIntl, intlShape} from 'react-intl';
+import BufferedInputHOC from './forms/buffered-input-hoc.jsx';
+import Label from './forms/label.jsx';
+import Input from './forms/input.jsx';
+
+import styles from './paint-editor.css';
+
+const BufferedInput = BufferedInputHOC(Input);
+const messages = defineMessages({
+ fill: {
+ id: 'paint.paintEditor.fill',
+ description: 'Label for the color picker for the fill color',
+ defaultMessage: 'Fill'
+ }
+});
+const FillColorIndicatorComponent = props => (
+
{/* To be fill */}
-
-
-
+
{/* To be stroke */}