-
Notifications
You must be signed in to change notification settings - Fork 3
/
text-styles.ts
71 lines (70 loc) · 1.32 KB
/
text-styles.ts
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
import { defineTextStyles } from "@pandacss/dev";
export const textStyles = defineTextStyles({
title: {
description: "app title",
value: {
fontSize: "4xl",
fontWeight: "bold",
},
},
tagline: {
description: "tagline below the title",
value: {
fontSize: "sm",
},
},
"main-status": {
description: "content of main (general) status",
value: {
fontSize: "2xl",
fontWeight: "bold",
},
},
"music-status": {
description: "now playing",
value: {
fontSize: "xs",
fontStyle: "italic",
},
},
"display-name": {
description: "display name in profile",
value: {
fontSize: "md",
},
},
"sub-name": {
description: "sub-name in profile",
value: {
fontSize: "xs",
},
},
"detail-title": {
description: "title of detail dialog",
value: {
fontSize: "2xl",
fontWeight: "bold",
},
},
"detail-subject": {
description: "subject of detail item",
value: {
fontSize: "xl",
fontWeight: "bold",
},
},
mono: {
description: "monospace text",
value: {
fontFamily: "monospace",
},
},
"dialog-label-like": {
description: "label-like text in dialog",
value: {
fontSize: "sm",
fontWeight: "medium",
lineHeight: "none",
},
},
});