Guest User

Untitled

a guest
Oct 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. const ipmGroups = r => {
  2. return {
  3. lak: {
  4. display: "Kraftpotenzial",
  5. items: [
  6. {
  7. title: "Leistung",
  8. value: "achievement",
  9. color: "#9dc3e5",
  10. color2: "rgb(204, 230, 255)"
  11. },
  12. {
  13. title: "Macht",
  14. value: "power",
  15. color: "#ff7c80",
  16. color2: "rgb(234, 152, 155)"
  17. },
  18. {
  19. title: "Kontakt",
  20. value: "contact",
  21. color: "#f0fe6a",
  22. color2: "rgb(250, 252, 150)"
  23. }
  24. ]
  25. },
  26. colors: {
  27. display: "Grundbedürfnisse",
  28. items: [
  29. {
  30. title: "Durchsetzung",
  31. value: "red",
  32. color: "#ff4136",
  33. color2: "#ff746c"
  34. },
  35. {
  36. title: "Integration",
  37. value: "yellow",
  38. color: "#ffdc00",
  39. color2: "rgb(255, 238, 132)"
  40. },
  41. {
  42. title: "Sicherheit",
  43. value: "green",
  44. color: "#2ecc40",
  45. color2: "rgb(127, 228, 138)"
  46. },
  47. {
  48. title: "Individualität",
  49. value: "blue",
  50. color: "#0074d9",
  51. color2: "rgb(69, 155, 230)"
  52. }
  53. ]
  54. },
  55. orientation: {
  56. display: "Orientierungen",
  57. items: [
  58. {
  59. title: "Erkenntnis",
  60. value: "black",
  61. color: "#222",
  62. color2: "rgb(33, 33, 33)"
  63. },
  64. {
  65. title: "Empathie",
  66. value: "white",
  67. color: "#eee",
  68. color2: "#fff"
  69. },
  70. {
  71. title: "Vergangenheit",
  72. value: "past",
  73. color: "#8faadc",
  74. color2: "rgb(201, 217, 248)"
  75. },
  76. {
  77. title: "Gegenwart",
  78. value: "present",
  79. color: "#fff3cc",
  80. color2: "rgb(248, 233, 186)"
  81. },
  82. {
  83. title: "Zukunft",
  84. value: "future",
  85. color: "#ffd966",
  86. color2: "rgb(255, 236, 180)"
  87. }
  88. ]
  89. },
  90. level: {
  91. display: "Level",
  92. items: [
  93. {
  94. title: "Fakten",
  95. value: "facts",
  96. color: "#bdd7ee",
  97. color2: "rgb(228, 242, 255)"
  98. },
  99. {
  100. title: "Emotionen",
  101. value: "emotions",
  102. color: "#ffe698",
  103. color2: "rgb(255, 243, 204)"
  104. },
  105. {
  106. title: "Sinn",
  107. value: "sense",
  108. color: "#f59044",
  109. color2: "rgb(251, 178, 124)"
  110. }
  111. ]
  112. },
  113. sntf: {
  114. display: "Präferenzen",
  115. items: [
  116. {
  117. title: "Wahrnehmen",
  118. value: "sensing",
  119. color: "#dbdbdb",
  120. color2: "rgb(249, 249, 249)"
  121. },
  122. {
  123. title: "Intuieren",
  124. value: "intuition",
  125. color: "#f4b183",
  126. color2: "rgb(255, 217, 191)"
  127. },
  128. {
  129. title: "Denken",
  130. value: "thinking",
  131. color: "rgb(76, 104, 132)",
  132. color2: "rgb(96, 134, 171)"
  133. },
  134. {
  135. title: "Fühlen",
  136. value: "feeling",
  137. color: "#b25e24",
  138. color2: "rgb(204, 140, 96)"
  139. }
  140. ]
  141. },
  142. focus: {
  143. display: "Fokus",
  144. items: [
  145. {
  146. title: "Kontinuität",
  147. value: "continuity",
  148. color: "#9ac57d",
  149. color2: "rgb(181, 213, 160)"
  150. },
  151. {
  152. title: "Logik",
  153. value: "logic",
  154. color: "#949494",
  155. color2: "rgb(179, 179, 179)"
  156. },
  157. {
  158. title: "Gefühl",
  159. value: "sentiment",
  160. color: "#fee087",
  161. color2: "rgb(254, 235, 179)"
  162. },
  163. {
  164. title: "Prozess",
  165. value: "process",
  166. color: "#a6b9e1",
  167. color2: "rgb(195, 206, 230)"
  168. },
  169. {
  170. title: "Ergebnis",
  171. value: "result",
  172. color: "#efa071",
  173. color2: "rgb(249, 188, 151)"
  174. }
  175. ]
  176. }
  177. };
  178. };
  179.  
  180. export default ipmGroups;
Add Comment
Please, Sign In to add comment