34 lines
949 B
Python
34 lines
949 B
Python
|
|
"""
|
|
Mapping of Speaking Styles (Colors) to their constituent Traits (Positive side).
|
|
Derived from "Speaking Style Traits Quantitative test design.pdf".
|
|
"""
|
|
|
|
SPEAKING_STYLES = {
|
|
"Green": [
|
|
"Friendly | Conversational | Down-to-earth",
|
|
"Approachable | Familiar | Warm",
|
|
"Optimistic | Benevolent | Positive | Appreciative"
|
|
],
|
|
"Blue": [
|
|
"Proactive | Cooperative",
|
|
"Knowledgable | Resourceful | Savvy",
|
|
"Clear | Straightforward | Direct",
|
|
"Confident | Competent",
|
|
"Respectable | Respectful"
|
|
],
|
|
"Orange": [
|
|
"Attentive | Helpful | Caring | Deliberate",
|
|
"Reassuring | Empowering",
|
|
"Progressive | Guiding | Intentional",
|
|
"Patient | Open-minded"
|
|
],
|
|
"Red": [
|
|
"Trustworthy | Reliable | Dependable",
|
|
"Calm | Steady/Stable | Controlled",
|
|
"Transparent | Upright | Altruistic",
|
|
"Adaptive | Flexible"
|
|
]
|
|
}
|
|
|