forked from SoftRyzen-internship/smile_bar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
64 lines (62 loc) · 1.55 KB
/
Copy pathtailwind.config.js
File metadata and controls
64 lines (62 loc) · 1.55 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} */
module.exports = {
content: [
'./src/sections/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
sm: '480px',
md: '768px',
xl: '1280px',
smOnly: { max: '767.98px' },
mdOnly: { min: '768px', max: '1279.98px' },
notXl: { max: '1279.98px' },
},
extend: {
container: {
center: true,
padding: {
DEFAULT: '1.25rem',
sm: '1.25rem',
md: '1.875rem',
xl: '1.875rem',
},
},
colors: {
//text-colors
primary: '#1D1D1B',
placeholder: '#1D1D1B26',
error: '#FF5555',
contact: '#000000',
//bg-colors
primaryBg: '#FFFFFF',
heroBg: '#FFFFFF40',
purple: '#D6C8FF',
rose: '#EDC6FF',
serviceBlock: '#BBBBBB1A',
block: '#D3D3D340',
blockHover: '#D3D3D380',
blockBlue: '#A6D4FF',
blockPurple: '#A6AFFF',
//btn-colors
btn: '#C3C7F4',
btnHover: '#9FA4DF',
btnDisabled: '#D3D3D3',
bord: '#F5F5F5',
},
backgroundImage: {
serviceGradient:
'linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.00) 49.48%)',
},
fontFamily: {
sans: ['var(--font-montserrat)', 'sans-serif'],
},
boxShadow: {
//header: '1px 2px 8px rgba(37, 101, 208, 0.14)', -example
},
},
},
plugins: [],
};