-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind-theme.json
86 lines (83 loc) · 1.58 KB
/
tailwind-theme.json
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
{
"fontFamily": {
"sans": [
"\"Rethink Sans Variable\"",
"system-ui",
"sans-serif",
"\"Apple Color Emoji\"",
"\"Segoe UI Emoji\"",
"\"Segoe UI Symbol\"",
"\"Noto Color Emoji\""
],
"mono": [
"\"Source Code Pro Variable\"",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"\"Liberation Mono\"",
"\"Courier New\"",
"monospace"
]
},
"extend": {
"colors": {
"apihero-100": "#596171",
"apihero-200": "#D8DEE4",
"apihero-300": "#353A44",
"stripe-400": "#F5F6F8",
"stripe-500": "#EBEEF1",
"accent-100": "#675DFF",
"accent-200": "#5469D4",
"accent-300": "#4E11E2",
"primary": {
"50": "#f9fcff",
"100": "#e7f0fe",
"200": "#d0dffb",
"300": "#a1bcf7",
"400": "#7196f4",
"500": "#5177e6",
"600": "#3d60e1",
"700": "#2a48ac",
"800": "#1c337d",
"900": "#1f2f61",
"950": "#000f3d"
},
"blue-grey": {
"50": "#f6f8fe",
"100": "#edf2fd",
"200": "#dae3f8",
"300": "#becbe9",
"400": "#8a9bc2",
"500": "#68779c",
"600": "#3e4a65",
"700": "#2d374d",
"800": "#1d253a",
"900": "#0c1831",
"950": "#00081a"
},
"tinted-grey": {
"50": "#fafbfe",
"100": "#f1f4fb",
"200": "#e3e7f3",
"300": "#c5cad9",
"400": "#a4abc2",
"500": "#8a91a8",
"600": "#6f768b",
"700": "#575c6a",
"800": "#434856",
"900": "#2c2f3a",
"950": "#15171e"
}
},
"animation": {
"fade": "fadeIn .4s cubic-bezier(0.4, 0, 0.2, 1)"
},
"keyframes": {
"fadeIn": {
"from": { "opacity": "0" },
"to": { "opacity": "1" }
}
}
}
}