-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
67 lines (66 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
import { tailwindConfig } from '@storefront-ui/vue/tailwind-config'
import animate from 'tailwindcss-animate'
export default {
presets: [tailwindConfig],
content: [
'./**/*.vue',
'./index.html',
'./components/**/*/*.{vue,js,ts,jsx,tsx}',
'./pages/**/*/*.{vue,js,ts,jsx,tsx}',
'./layouts/**/*/*.{vue,js,ts,jsx,tsx}',
'./node_modules/@storefront-ui/vue/**/*.{js,mjs}',
'./node_modules/flowbite/**/*.{js,ts}',
],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
primaryDark: '#5038ED',
primaryLight: '#707EF8',
primaryExtraLight: '#BCC3FF',
textLink: '#2493DF',
textGrayParent: '#6B7F99',
},
height: {
'35vh': '35vh',
'84vh-32': 'calc(84vh - 32px)',
'84vh': '84vh',
'85vh-50': 'calc(85vh - 50px)',
'85vh': '85vh',
'95vh': '95vh',
'15vw': '15vw',
'20vw': '20vw',
},
width: {
27: '27px',
'15vw': '15vw',
'20vw': '20vw',
},
minHeight: {
'84vh': '84vh',
'85vh': '85vh',
'90vh': '90vh',
},
maxHeight: {
'35vh': '35vh',
'84vh-50': 'calc(84vh - 50px)',
'95vh': '95vh',
'65vh': '65vh',
},
screens: {
mobile: { max: '639px', xs: '400px' },
},
fontFamily: {
body: ['Poppins'],
sans: ['Open Sans'],
poppins: ['Poppins'],
},
transitionDuration: {
medium: '300ms',
long: '500ms',
},
},
},
plugins: [animate, require('flowbite/plugin')],
}