-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
80 lines (77 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// './src/pages/**/*.{js,ts,jsx,tsx}',
// './src/components/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
// Font Family
fontFamily: {
primary: ['Barlow', 'sans-serif'],
secondary: ['Poppins', 'sans-serif'],
arges: ['Arges', 'sans-serif'],
},
// colors
colors: {
primary: '#5A2F84',
'primary-text': '#505050',
'secondary-text': '#333333',
'orange-100': '#FFB683',
'orange-200': '#F08D46',
'orange-300': '#DB732A',
'purple-100': '#F7F0FF',
'purple-200': '#5E3B89',
'purple-300': '#623B88',
green: '#44B549',
teal: '#365452',
gray: '#A7A7A7',
'bg-cyan': '#EAF5FF',
'bg-cyan-light': '#E4F5FF',
'bg-gray': '#F9F9F9',
'bg-azure-light': '#F6FCFF',
dark: '#2B2B2B',
},
// Media Query screen sizes
screens: {
sm: '375px',
md: '768px',
lg: '1024px',
xl: '1200px',
'2xl': '1440px',
'2xxl': '1700px',
'3xl': '1920px',
'max-sm': { max: '374px' },
'max-md': { max: '767px' },
'max-lg': { max: '1023px' },
'max-xl': { max: '1199px' },
'max-2xl': { max: '1439px' },
'max-3xl': { max: '1919px' },
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities(
{
'.scrollbar-hide': {
'-ms-overflow-style': 'none',
'scrollbar-width': 'none',
'&::-webkit-scrollbar': {
display: 'none',
},
},
'.scrollbar-default': {
'-ms-overflow-style': 'auto',
'scrollbar-width': 'auto',
'&::-webkit-scrollbar': {
display: 'block',
},
},
},
['responsive']
);
},
],
};