-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (40 loc) · 840 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (40 loc) · 840 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.html", "./*.js"],
theme: {
extend: {
screens: {
"sm": "320px",
"sm-m": "375px",
"sm-l": "425px",
"sm-xl": "576px",
"md": "768px",
"lg": "992px",
"xl": "1024px",
"2xl": "1200px",
"3xl": "1440px"
},
fontFamily: {
"sans": ["Satoshi", "sans-serif"]
},
fontSize: {
"md": ["16px", "24px"]
},
colors: {
"black": "#010101",
"merino": "#f2f0ea",
"arylide": "#edcf5d",
"dawn": "#a4a4a4",
"gray": "#949494",
"peach": "#ee6e6e"
},
transitionDuration: {
"375": "375ms"
},
transitionProperty: {
"width": "width"
}
},
},
plugins: [],
}