implement shade/tint generation
This commit is contained in:
parent
6f6fcd57d3
commit
d493d646ab
48
src/App.js
48
src/App.js
|
@ -1,9 +1,8 @@
|
||||||
|
import chroma from 'chroma-js';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import './App.css';
|
import './App.css';
|
||||||
|
|
||||||
const DEFAULT_SHADE_COUNT = 9;
|
|
||||||
|
|
||||||
// an object to hold our styled components
|
// an object to hold our styled components
|
||||||
const S = {};
|
const S = {};
|
||||||
|
|
||||||
|
@ -23,22 +22,53 @@ S.Shade = styled(Shade)`
|
||||||
class Color extends React.Component {
|
class Color extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
const tints = [];
|
||||||
|
const shades = [];
|
||||||
this.state = {
|
this.state = {
|
||||||
baseColor: this.props.baseColor,
|
baseColor: this.props.baseColor,
|
||||||
shades: [],
|
chromaColor: chroma(this.props.baseColor),
|
||||||
shadeCount: this.props.shadeCount ? this.props.shadeCount : DEFAULT_SHADE_COUNT,
|
tints: tints,
|
||||||
}
|
shades: shades,
|
||||||
for (let index = 0; index < this.state.shadeCount; index++) {
|
|
||||||
this.state.shades.push(this.props.baseColor);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setTints(brightenAmount, start, end, step) {
|
||||||
|
this.setState((state) => {
|
||||||
|
const scaleTints = chroma.scale([state.chromaColor.brighten(brightenAmount), state.chromaColor]);
|
||||||
|
const tints = [];
|
||||||
|
for (let i = start; i < end; i += step) {
|
||||||
|
tints.push(scaleTints(i).hex());
|
||||||
|
}
|
||||||
|
return {tints: tints}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setShades(darkenAmount, start, end, step) {
|
||||||
|
this.setState((state) => {
|
||||||
|
const scaleShades = chroma.scale([state.chromaColor, state.chromaColor.darken(darkenAmount)]);
|
||||||
|
const shades = [];
|
||||||
|
for (let i = start; i < end; i += step) {
|
||||||
|
shades.push(scaleShades(i).hex());
|
||||||
|
}
|
||||||
|
return {shades: shades}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.setTints(2, 0.2, 0.9, 0.2);
|
||||||
|
this.setShades(5, 0.1, 0.9, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<ul className={this.props.className}>
|
<ul className={this.props.className}>
|
||||||
{this.state.shades.map((shade, index) =>
|
{this.state.tints.map((shade, index) =>
|
||||||
<li key={index}><S.Shade color={shade} /></li>
|
<li key={index}><S.Shade color={shade} /></li>
|
||||||
)}
|
)}
|
||||||
|
<li><S.Shade color={this.state.baseColor} /></li>
|
||||||
|
{this.state.shades.map((tint, index) =>
|
||||||
|
<li key={index}><S.Shade color={tint} /></li>
|
||||||
|
)}
|
||||||
</ul>
|
</ul>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -53,7 +83,7 @@ margin: 0;
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<S.Color className="color-list" baseColor="#ff0000"/>
|
<S.Color className="color-list" baseColor="#dbdfac"/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue