mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Add new label colors
This commit is contained in:
parent
de61d94a98
commit
3b3c657056
2 changed files with 50 additions and 20 deletions
|
@ -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]);
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue