-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyled.d.ts
More file actions
43 lines (42 loc) · 753 Bytes
/
styled.d.ts
File metadata and controls
43 lines (42 loc) · 753 Bytes
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
// import original module declarations
import 'styled-components'
// and extend them!
declare module 'styled-components' {
export interface DefaultTheme {
fonts: {
main: string
code: string
}
colors: {
primary: string
primaryHover: string
sidebar: string
background: string
elements: string
accent: string
details: string
secondaryText: string
text: string
code: {
javascript: string
java: string
sql: string
c: string
css: string
html: string
python: string
'c++': string
go: string
php: string
}
}
breakpoints: {
tablet: string
desktop: string
}
borderRadius: string
sidebarWidth: string
sidebarWidthCollapsed: string
headerHeight: string
}
}