-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 928 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 928 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
animation: {
fade: 'fadeIn 1s ease-in',
},
keyframes: theme => ({
fadeIn: {
'0%': { color: theme('colors.transparent') },
'100%': { color: theme('colors.tyrianpurple.500') },
},
}),
spacing: {
'128': '32rem',
'140': '40rem',
'152': '52rem'
}
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
white: '#FFFFFF',
greensheen: '#66AC9A',
tyrianpurple: '#69163E',
sinopia: '#CB4A25',
flame: '#D16535',
goldenrod: '#DEA630',
gray: '#cbd5e1'
},
fontFamily: {
'koulen': ['Koulen', 'cursive'],
'sans ': ['Source Sans Pro', 'sans-serif'],
'mono': ['ui-monospace', 'SFMono-Regular']
},
},
plugins: [],
}