-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./**/*.{html,js,css}'],
darkMode: 'class',
theme: {
screens: {
sm: { max: '640px' },
md: { max: '768px' },
lg: { max: '1024px' },
xl: { max: '1280px' },
'2xl': { min: '1480px' },
},
extend: {
fontFamily: {
almarai: 'almarai',
},
boxShadow: {
md: '5px 5px 20px rgba(181,181,181,0.2)',
xl: '5px 5px 20px rgba(133,133,133,0.2)',
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '3rem',
xl: '4rem',
'2xl': '5rem',
},
screens: {
sm: '500px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xls': '1480px',
},
},
colors: {
white: '#ffffff',
gray: 'rgba(164,164,164,0.3)',
green: '#7FD287',
red: '#E86F6F',
black: '#111111',
darkGray: '#424242',
darkBrown: '#AA7646',
dark: '#212121',
lightBrown: '#D98B53',
blue: '#4DAAFF',
roseGold: '#F5CCA6',
stroke: 'rgba(190,190,190,0.5)',
icon: '#585858',
productsCount: 'rgba(255,147,69,0.8)',
off: 'rgba(2,102,12,0.5)',
offDark: 'rgba(178, 255, 185, 0.50)',
grayText: '#E0E0E0',
},
},
plugins: [],
}