forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.ts
More file actions
84 lines (69 loc) · 1.38 KB
/
text.ts
File metadata and controls
84 lines (69 loc) · 1.38 KB
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
import { css } from 'emotion'
import { colors } from '../theme'
export const white = css({
color: colors.text,
})
export const red = css({
color: colors.red,
})
export const purple = css({
color: colors.purple,
})
export const yellow = css({
color: colors.yellow,
})
export const dark = css({
color: colors.background,
})
export const monospace = css({
fontFamily: "'Source Code Pro', monospace",
lineHeight: '16px',
})
export const header = css({
fontSize: 34,
textTransform: 'none',
fontWeight: 'bold',
padding: '2rem 0',
})
export const denseHeader = css(header, {
padding: '0.5rem 0',
})
export const title = css({
fontSize: 20,
textTransform: 'none',
fontWeight: 'bold',
padding: '1rem 0',
})
export const denseTitle = css(title, {
padding: '0.25rem 0',
})
export const label = css({
fontSize: 16,
textTransform: 'uppercase',
fontWeight: 'normal',
padding: '0.5rem 0',
})
export const denseLabel = css(label, {
padding: '0.25rem 0',
})
export const normal = css({
fontSize: 16,
textTransform: 'none',
fontWeight: 'normal',
padding: '0.5rem 0',
})
export const denseNormal = css(normal, {
padding: '0.25rem 0',
})
export const description = css({
fontSize: 14,
textTransform: 'none',
fontWeight: 'normal',
padding: 0,
})
export const hint = css({
fontSize: 10,
textTransform: 'none',
fontWeight: 'normal',
padding: 0,
})