-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (39 loc) · 1012 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
screens: {
xs: '480px',
ss: '620px',
sm: '768px',
md: '1060px',
lg: '1200px',
xl: '1700px',
xxl: '1900px'
},
colors: {
primaryColor: '#2563eb',
primaryColorHover: '#1d4ed8',
accentColor: '#e11d48',
accentColorHover: '#be123c',
successColor: '#16a34a',
successColorHover: '#15803d',
warningColor: '#d97706',
warningColorHover: '#b45309',
errorColor: '#dc2626',
errorColorHover: '#b91c1c',
textColorBlack: '#000000',
textColorWhite: '#ffffff',
textColorWhiteHover: '#d1d5db',
backgroundColorWhite: '#ffffff',
backgroundColorGray: '#f5f5f5',
backgroundColorBlack: '#0f172a'
},
fontFamily: {
poppins: ['Poppins', 'sans-serif']
}
}
},
plugins: []
};