-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyled.d.ts
89 lines (89 loc) · 1.7 KB
/
styled.d.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// styled.d.ts
import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
name: string
containerMaxWidth: string
htmlFontSize: string
palette: {
text: {
base: string
secondary: string
label: string
}
background: string
surface: string
primary: string
secondary: string
analogous1: string
analogous2: string
triadic1: string
triadic2: string
splitComplementary1: string
splitComplementary2: string
green: string
lightGreen: string
blueGreen: string
dark: string
darker: string
darkGrey: string
darkerGrey: string
grey: string
lightGrey: string
darkenBlue: string
whiteSmoke: string
white: string
black: string
red: string
warn: string
info: string
success: string
error: string
accent: string
transparent: string
}
font: {
family: string
size: {
xsmall: string
small: string
medium: string
large: string
xlarge: string
}
bold: number
semiBold: number
light: number
normal: number
}
border: {
radius: string
}
shadow: {
text: {
small: string
medium: string
large: string
}
box: {
small: string
medium: string
large: string
}
}
spacing: {
xsmall: string
small: string
medium: string
large: string
xlarge: string
}
layers: {
base: number
menu: number
overlay: number
modal: number
alwaysOnTop: number
}
}
}