-
Notifications
You must be signed in to change notification settings - Fork 0
/
tempo.config.json
92 lines (92 loc) · 1.94 KB
/
tempo.config.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
87
88
89
90
91
92
{
"typography": [
{
"name": "Header 1",
"preview": "Aa",
"tag": "h1",
"classes": [
"text-4xl",
"font-extrabold",
"tracking-tight",
"lg:text-5xl"
],
"previewClasses": ["text-3xl", "font-extrabold", "tracking-tight"]
},
{
"name": "Header 2",
"preview": "Aa",
"tag": "h2",
"classes": ["text-3xl", "font-semibold", "tracking-tight"]
},
{
"name": "Header 3",
"preview": "Aa",
"tag": "h3",
"classes": ["text-2xl", "font-semibold", "tracking-tight"]
},
{
"name": "Header 4",
"preview": "Aa",
"tag": "h4",
"classes": ["text-xl", "font-semibold", "tracking-tight"]
},
{
"name": "Paragraph",
"preview": "¶",
"tag": "p",
"classes": ["leading-7"]
},
{
"name": "Lead Text",
"preview": "A",
"tag": "p",
"classes": ["text-xl", "text-muted-foreground"]
},
{
"name": "Blockquote",
"preview": "abc",
"tag": "blockquote",
"classes": ["border-l-2", "pl-6", "italic"],
"previewClasses": ["border-l-2", "pl-2", "italic"]
},
{
"name": "Inline Code",
"preview": "foo",
"tag": "code",
"classes": [
"relative",
"rounded",
"bg-muted",
"px-[0.3rem]",
"py-[0.2rem]",
"font-mono",
"text-sm",
"font-semibold"
]
},
{
"name": "Large",
"preview": "A",
"tag": "div",
"classes": ["text-lg", "font-semibold"]
},
{
"name": "Small",
"preview": "Aa",
"tag": "small",
"classes": ["text-sm", "font-medium", "leading-none"]
},
{
"name": "Muted",
"preview": "Aa",
"tag": "p",
"classes": ["text-sm", "text-muted-foreground"]
},
{
"name": "Extra Small",
"preview": "Aa",
"tag": "p",
"classes": ["text-xs", "font-light"]
}
]
}