material-color-hash alternatives and similar libraries
Based on the "Miscellaneous" category.
Alternatively, view material-color-hash alternatives based on common mentions on social networks and blogs.
-
react-pdf
Display PDFs in your React app as easily as if they were images. -
typography
A powerful toolkit for building websites with beautiful design -
react-resizable-and-movable
๐ฑ A resizable and draggable component for React. -
react-simple-chatbot
:speech_balloon: Easy way to create conversation chats -
react-resizable-box
๐ A resizable component for React. -
react-awesome-query-builder
User-friendly query builder for React -
react-json-tree
React JSON Viewer Component, Extracted from redux-devtools. -
react-pdf-viewer
A React component to view a PDF document -
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-blur
React component to blur image backgrounds using canvas. -
chessboardjsx
:black_square_button: Chessboard built for React -
react-images-uploader
React.js component for uploading images to the server -
react-svg-buttons
React configurable animated svg buttons -
react-darkreader
๐ A React Hook for adding a dark / night mode to your site. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-dnr
Dragable and Resizable window build with React.js -
react-tabguard
Limit tabbing within specified area with an ease -
react-apple-signin-auth
๏ฃฟ Apple signin for React using the official Apple JS SDK -
react-avatar-generator
Generate fun kaleidoscope for user avatars. -
react-swipeable-list
Swipeable list component for React supporting several behaviours (e.g. iOS) -
react-swipe-to-delete-ios
A simple React component to reproduce the way iOS deletes an item in a list -
react-demo-tab
๐ React component to easily create demos of other components -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
react-filter-control
The react UI component for building complex filter criteria -
react-headings
Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-searchbox-awesome
The coolest searchbox for React.js! -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-color-scroll
Blend through colors as you scroll down the page. -
react-customizable-chat-bot
Customizable chat bot library using React and Typescript -
react-pulse-text
React component that allows you to animate the text you want -
fastcomments-react
A React component for FastComments -
react-pagespeed-score
A React component for display a dial-type chart of PageSpeed Insights.
Appwrite - The Open Source Firebase alternative introduces iOS support
Do you think we are missing an alternative of material-color-hash or a related project?
README
Material takes cues from contemporary architecture, road signs, pavement marking tape, and athletic courts. Color should be unexpected and vibrant. (https://material.google.com/style/color.html)
Material color hashing
Hash a string to a Material Design color
A dead-simple library to hash a string to a {backgroundColor, textColor} tuple from the official Material Design palette.
Great for dynamically coloring your UI elements (badges, list icons, ..) with good-looking, vibrant colors and ensured text legibility.
Interactive Demo
http://belkalab.github.io/material-color-hash/ [http://belkalab.github.io/material-color-hash/](example/screen.png)
Usage
$ npm install material-color-hash
var toMaterialStyle = require('material-color-hash');
// or, if you are on ES6:
// import toMaterialStyle from 'material-color-hash'
/* basic usage */
var fooStyle = toMaterialStyle('foo');
// fooStyle: {
// backgroundColor: '#00BCD4',
// color: 'rgba(0, 0, 0, 0.87)',
// materialColorName: 'Cyan'
// }
/* select a different shade (default is 500) */
var fooStyle200 = toMaterialStyle('foo', '200');
// fooStyle200: {
// backgroundColor: '#80DEEA',
// color: 'rgba(0, 0, 0, 0.87)',
// materialColorName: 'Cyan'
// }
var barStyle = toMaterialStyle('bar', 500);
// barStyle: {
// backgroundColor: '#2196F3',
// color: 'rgba(255, 255, 255, 1)',
// materialColorName: 'Blue'
// }
/* also works with emoji! */
var emojiStyle = toMaterialStyle('๐');
// emojiStyle: {
// backgroundColor: '#FFEB3B',
// color: 'rgba(0, 0, 0, 0.87)',
// materialColorName: 'Yellow'
// }
The returned object can be fed directly as a style prop to React components:
import toMaterialStyle from 'material-color-hash';
const MaterialBadge = (props) => {
const style = toMaterialStyle(props.text);
return (
<div
className="badge"
style={style}
>
{props.text}
</div>
);
}
For more information about Material Design colors and how to use them, check out the official Material Design docs by Google
Contributors
Giovanni Frigo, Developer @Belka
License
material-color-hash is Copyright (c) 2016-2018 Belka, srl. It is free software, and may be redistributed under the terms specified in the LICENSE file. (TL;DR: MIT license)
About Belka
Belka is a Digital Agency specialized in design, mobile applications development and custom solutions. We love open source software! You can see our projects or look at our case studies.
Interested? Hire us to help build your next amazing project.
*Note that all licence references and agreements mentioned in the material-color-hash README section above
are relevant to that project's source code only.