Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/data/colors.ts
1006 views
1
const colors = [
2
{
3
hex: "#6364FF",
4
pantone: "2715 C",
5
cmyk: "56, 46, 0, 0",
6
},
7
{
8
hex: "#563ACC",
9
pantone: "2725 C",
10
cmyk: "76, 70, 0, 0",
11
},
12
{
13
hex: "#17063B",
14
pantone: "2765 C",
15
cmyk: "100, 98, 0, 45",
16
},
17
{
18
hex: "#2F0C7A",
19
pantone: "2685 C",
20
cmyk: "92, 100, 0, 10",
21
},
22
{
23
hex: "#858AFA",
24
pantone: "7452 C",
25
cmyk: "55, 33, 0, 0",
26
},
27
]
28
29
export default colors
30
31