-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
158 lines (158 loc) · 6.88 KB
/
success.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>True Colors Exercise</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
</head>
<script defer src="/_vercel/insights/script.js"></script>
<body onload="setResults()">
<h1 id="results-heading"></h1>
<ul id="results-list"></ul>
<h2>About the colors🌈</h2>
<p>While none of us fit perfectly into one label or type, sometimes exercises like True Colors can help provide us a shared language to collaborate together better, celebrate difference, and work together as a team. Plus, personality quizzes can be fun!</p>
<table>
<tr>
<th id="blue-section">Blue may see self as</th>
<th id="blue-section">Others may see blue as</th>
<th id="green-section">Green may see self as</th>
<th id="green-section">Others may see green as</th>
</tr>
<tr>
<td id="blue-section">
warm<br>
caring<br>
compassionate<br>
spiritual<br>
creative<br>
idealistic<br>
people person<br>
willing to work for a cause<br>
empathetic<br>
affirming<br>
trusting<br>
great communicator<br>
likes to please people<br>
</td>
<td id="blue-section">
overly emotional<br>
bleeding heart<br>
mushy<br>
flaky or unrealistic<br>
touchy feely<br>
too nice<br>
naive or too trusting<br>
teaching non-essentials<br>
illogical<br>
ignores policy, creates chaos<br>
</td>
<td id="green-section">
intellectual<br>
often right<br>
tough minded<br>
efficient<br>
powerful<br>
creative and visionary<br>
reasonable and rational<br>
under control<br>
precise<br>
task and goal focused<br>
holding firm to policy<br>
firm minded<br>
great planner<br>
</td>
<td id="green-section">
intellectual snob<br>
arrogant<br>
doesn't care about people<br>
ruthless or unrealistic<br>
eccentric or weird<br>
aloof or unfeeling<br>
critical or fault-finding<br>
teaching non-essentials<br>
lacking mercy or unfair<br>
afraid to open up<br>
</td>
</tr>
<tr>
<th id="gold-section">Gold may see self as</th>
<th id="gold-section">Others may see gold as</th>
<th id="orange-section">Orange may see self as</th>
<th id="orange-section">Others may see orange as</th>
</tr>
<tr>
<td id="gold-section">
stable<br>
providing security<br>
dependable<br>
efficient<br>
realistic<br>
decisive<br>
executive type<br>
good planner<br>
orderly and neat<br>
organized<br>
punctual<br>
goal-oriented<br>
finish what I start<br>
good at sorting<br>
</td>
<td id="gold-section">
rigid<br>
controlling<br>
stubborn<br>
system bound<br>
unimaginative<br>
judgemental<br>
uptight<br>
predictable<br>
dull or boring<br>
sets own agenda<br>
</td>
<td id="orange-section">
fun-loving, enjoys life<br>
spontaneous<br>
flexible and adaptable<br>
carefree<br>
proficient and capable<br>
hands-on<br>
practical<br>
problem solver<br>
good negotiator<br>
can deal with chaos<br>
welcomes new ideas<br>
sees shades of grey<br>
good ability to decide among a variety of options<br>
</td>
<td id="orange-section">
irresponsible<br>
flaky<br>
wishy-washy<br>
not serious<br>
disobeys rules<br>
not able to stay on task<br>
scattered or cluttered<br>
uncontrollable<br>
indecisive or resisting closure<br>
spends time on things they enjoy<br>
</td>
</tr>
</table>
<p>Read more about True Colors on the betterhelp website <a href="https://www.betterhelp.com/advice/personality/what-the-true-colors-personality-test-says-about-you/" target="_blank">here</a></p>
<h2>Reflection questions🧠</h2>
<ul>
<li>Do you identify strongly with your primary "true color", or with multiple colors?</li>
<li>What's it like to be your color? What do you love about it?</li>
<li>Are there qualities in other colors you admire or want to emulate more yourself?</li>
<li>Do you think your color is the same at work and home? Why or why not?</li>
<li>How does your primary color impact how you work with others?</li>
<li>Can you think of a time when personality differences reflected in this model may have caused or worsened conflict? What might you do differently in the future?</li>
<li>What do you want others working with or interacting with you to know?</li>
</ul>
<footer><p><a href="index.html">Back to quiz</a></p><p>Project by <a href="https://github.com/aligg/true-colors" target="_blank">Ali Glenesk</a></p></footer>
</body>
<script src="script.js"></script>
</html>