-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (52 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors")
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
'mmsm': '360px',
'msm': '435px',
'smm20': '620px',
'sm': '640px',
'sm10': '650px',
'md': '768px',
'mlg': '800px',
'lg': '1024px',
'plg': '1135px',
'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"',],
'lato': ['"Lato"',],
},
colors: {
...colors,
"gray-1": "#999",
"gray-2": "#AAA",
"orange":"#fd961a",
"dim-black":"#1d1d1d"
}
},
plugins: [],
}