-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
72 lines (71 loc) · 1.71 KB
/
tailwind.config.js
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
import typography from '@tailwindcss/typography'
/** @type {import('tailwindcss').Config} */
export default {
important: true,
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
square: 'square',
roman: 'upper-roman'
},
extend: {
colors: {
header: '#171717',
'header-button-enabled': '#ffffff32',
'header-button-hover': '#f5f5f516',
'header-avatar': '#363636',
'orange-base': '#F3652B'
},
backgroundColor: {
'orange-bullet': '#F3652B'
},
borderColor: {
header: '#3e3e3e',
'header-hover': '#F3652B',
'radio-card-active': '#F3652B'
},
textColor: {
header: '#b5b5b5',
'success-check': '#22C55E'
},
transitionProperty: {
width: 'width'
},
width: {
slide: '384px'
},
height: {
// subtract 60px for footer and 56px for header
'visible-area': 'calc(100vh - 60px - 56px)',
'graph-card': '552px'
},
fontFamily: {
robotomono: ['Roboto Mono']
},
animation: {
fadeIn: 'fadeIn 220ms ease-in-out',
fadeOut: 'fadeOut 220ms ease-in-out',
slideDown: 'slideDown 220ms ease-in-out'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' }
},
slideDown: {
'0%': { height: '0' },
'100%': { height: 'auto' }
}
}
}
},
plugins: [typography]
}