How to add font text color into msg input box?

i hope to get answer for my Question !
im work in meteor project ( Rocket Chat )
and i need to add font color for user msgs in input box to alow the users to select font color from color box and delivery to others with same color
for example this my textarea box


My textarea code

<form class="message-form secondary-font-color" method="post" action="/">
			{{> messagePopupConfig getPopupConfig}}
			{{#if allowedToSend}}
			<div class="message-input border-component-color">
				<div class="input-message-container content-background-color">
					<textarea dir="auto" name="msg" maxlength="{{maxMessageLength}}" class="message-form-text input-message autogrow-short" placeholder="{{_ 'Message'}}"></textarea>

					<div class="inner-left-toolbar">
						<i class="emoji-picker-icon icon-people"></i>
					</div>
				</div>

				{{#unless showSend}}
					{{#if showFileUpload}}
						<div class="message-buttons file">
							<i class="icon-attach file"></i>
							<input type="file" accept="{{fileUploadAllowedMediaTypes}}">
						</div>
					{{/if}}
		</form>
</template>

i get many color picker like
http://zzzhan.github.io/bootstrap-colorpicker-plus/
http://jscolor.com/
http://javier.xyz/cohesive-colors/
http://www.eyecon.ro/colorpicker/
http://www.dematte.at/colorPicker/
http://www.dematte.at/tinyColorPicker/

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.