-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (57 loc) · 1.31 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
'mmsm': '360px',
'msm': '435px',
'smm20': '620px',
'sm': '640px',
'sm10': '650px',
'md': '768px',
'mlg': '800px',
'lg': '1024px',
'mxl': '1335px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
keyframes: {
ring: {
'0%, 100%': { transform: 'rotate(0deg)' },
'25%': { transform: 'rotate(1deg)' },
'75%': { transform: 'rotate(-1deg)' }
}
},
animation: {
ring: 'ring .5s ease-in-out',
}
},
fontFamily: {
'sans': ['ui-sans-serif', 'system-ui',],
'serif': ['ui-serif', 'Georgia',],
'mono': ['ui-monospace', 'SFMono-Regular',],
'display': ['Oswald',],
'body': ['"Open Sans"',],
'questrial': ['"Questrial"',],
},
colors: {
...colors,
"delete-red": "#d72222",
'ek-blue': {
DEFAULT: '#3F7CAC',
'50': '#3F7CAC',
'75': '#4CA7CE',
'100': '#376D97',
'200': '#28506E',
'300': '#193245',
'400': '#0A141C',
},
}
},
plugins: [],
}