-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
86 lines (74 loc) · 1.76 KB
/
tailwind.config.js
File metadata and controls
86 lines (74 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const plugin = require('tailwindcss/plugin')
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
important: true,
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./sections/**/*.{js,ts,jsx,tsx}',
],
plugins: [require("daisyui")],
safelist: [
'w-64',
'w-1/2',
'rounded-l-lg',
'rounded-r-lg',
'bg-white',
'bg-gray-200',
'bg-slate-50',
'grid-cols-4',
'grid-cols-7',
'h-6',
'leading-6',
'h-9',
'leading-9',
'shadow-lg',
],
theme: {
colors: {
white: {DEFAULT: '#ffffff', 500: '#F7FAFC',},
black: {DEFAULT: '#2B2F4B', 500: '#2B2F4B',},
pink: {500: '#EF0381',},
blue: {500: '#009FE3',},
gray: { light: '#CACED9', dark: '#7E7D8D' },
},
fontFamily: {
sans: ['poppins', 'sans-serif'],
serif: ['poppins', 'serif'],
},
extend: {
columns: {
'4xs': '35px',
'4md': '300px',
'3xs': '35px',
'3md': '150px',
},
borderRadius: {
'4xl': '2rem',
},
},
screens: {
'3xl': { max: '1920px' },
// => @media (max-width: 1535px) { ... }
'2xl': { max: '1535px' },
// => @media (max-width: 1535px) { ... }
xl: { max: '1279px' },
// => @media (max-width: 1279px) { ... }
lg: { max: '1023px' },
// => @media (max-width: 1023px) { ... }
md: { max: '767px' },
// => @media (max-width: 767px) { ... }
sm: { max: '639px' },
// => @media (max-width: 639px) { ... }
},
fontSize: {
tiny: ['14px', '20px'],
xs: ['20px', '28px'],
sm: ['24px', '32px'],
base: ['30px', '36px'],
lg: ['40px', '48px'],
xl: ['60px', '78px'],
},
},
}