-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (63 loc) · 2.02 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (63 loc) · 2.02 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./error.vue",
"./src/**/*.{html,js}"
],
darkMode: 'class',
theme: {
extend: {
width: {
'100': '25rem', // 400px
'110': '28rem', // 448px
'120': '31.25rem', // 500px
'130': '34.25rem', // 548px
'140': '37.5rem', // 600px
'150': '40.5rem', // 648px
'160': '43.75rem', // 700px
'170': '46.75rem', // 748px
'180': '50rem', // 800px
'190': '53rem', // 848px
'200': '56.25rem', // 900px
'210': '59.25rem', // 948px
},
height: {
'100': '25rem', // 400px
'110': '28rem', // 448px
'120': '31.25rem', // 500px
'130': '34.25rem', // 548px
'140': '37.5rem', // 600px
'150': '40.5rem', // 648px
'160': '43.75rem', // 700px
'170': '46.75rem', // 748px
'180': '50rem', // 800px
'190': '53rem', // 848px
'200': '56.25rem', // 900px
'210': '59.25rem', // 948px
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1366px',
'3xl': '1920px',
'4xl': '2560px',
},
fontFamily: {
great: ['Great', 'sans-serif'],
montserrat: ['Montserrat Variable', 'sans-serif'],
sans: ['Satoshi', 'sans-serif'],
satoshi: ['Satoshi', 'sans-serif'],
workSans: ['Work Sans Variable', 'sans-serif'],
},
},
plugins: [
require('tailwindcss-animate'),
],
}