diff --git a/client/src/constants/LabelColors.js b/client/src/constants/LabelColors.js index fc01c826..94107d63 100644 --- a/client/src/constants/LabelColors.js +++ b/client/src/constants/LabelColors.js @@ -1,16 +1,31 @@ import fromPairs from 'lodash/fromPairs'; const PAIRS = [ - ['green', '#61bd4f'], - ['yellow', '#f2d600'], - ['orange', '#ff9f1a'], - ['red', '#eb5a46'], - ['purple', '#c377e0'], - ['blue', '#0079bf'], - ['sky', '#00c2e0'], - ['lime', '#51e898'], - ['pink', '#ff78cb'], - ['black', '#355263'], + ['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'], ]; const KEYS = PAIRS.map((pair) => pair[0]); diff --git a/server/api/models/Label.js b/server/api/models/Label.js index 4c6c176f..3e09e234 100755 --- a/server/api/models/Label.js +++ b/server/api/models/Label.js @@ -6,16 +6,31 @@ */ const COLORS = [ - 'green', - 'yellow', - 'orange', - 'red', - 'purple', - 'blue', - 'sky', - 'lime', - 'pink', - 'black', + 'berry-red', + 'pumpkin-orange', + 'lagoon-blue', + 'pink-tulip', + 'light-mud', + 'orange-peel', + 'bright-moss', + 'antique-blue', + 'dark-granite', + 'lagune-blue', + 'sunny-grass', + 'morning-sky', + 'light-orange', + 'midnight-blue', + 'tank-green', + 'gun-metal', + 'wet-moss', + 'red-burgundy', + 'light-concrete', + 'apricot-red', + 'desert-sand', + 'navy-blue', + 'egg-yellow', + 'coral-green', + 'light-cocoa', ]; module.exports = {