Files
planka/client/src/constants/LabelColors.js

40 lines
930 B
JavaScript
Raw Normal View History

2019-08-31 04:07:25 +05:00
import fromPairs from 'lodash/fromPairs';
const PAIRS = [
2020-03-31 03:00:58 +05:00
['berry-red', '#e04556'],
['pumpkin-orange', '#f0982d'],
['lagoon-blue', '#109dc0'],
['pink-tulip', '#f97394'],
['light-mud', '#c7a57b'],
['orange-peel', '#fab623'],
['bright-moss', '#a5c261'],
['antique-blue', '#6c99bb'],
['dark-granite', '#8b8680'],
['lagune-blue', '#00b4b1'],
['sunny-grass', '#bfca02'],
['morning-sky', '#52bad5'],
['light-orange', '#ffc66d'],
['midnight-blue', '#004d73'],
['tank-green', '#8aa177'],
['gun-metal', '#355263'],
['wet-moss', '#4a8753'],
['red-burgundy', '#ad5f7d'],
['light-concrete', '#afb0a4'],
['apricot-red', '#fc736d'],
['desert-sand', '#edcb76'],
['navy-blue', '#166a8f'],
['egg-yellow', '#f7d036'],
['coral-green', '#2b6a6c'],
['light-cocoa', '#87564a'],
2019-08-31 04:07:25 +05:00
];
2020-03-25 00:15:47 +05:00
const KEYS = PAIRS.map((pair) => pair[0]);
2019-08-31 04:07:25 +05:00
const MAP = fromPairs(PAIRS);
export default {
PAIRS,
KEYS,
MAP,
};