-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (44 loc) · 924 Bytes
/
tailwind.config.js
File metadata and controls
46 lines (44 loc) · 924 Bytes
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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx,html}'],
darkMode: false, // or 'media' or 'class'
corePlugins: {
preflight: false,
},
theme: {
extend: {},
spacing: {
sm: '8px',
md: '12px',
lg: '16px',
xl: '24px',
},
colors: {
link: '#5A50FF',
red: '#fd4947',
orange: '#f59d11',
yellow: '#fff261',
green: '#75c976',
blue: '#2fb1f7',
silver: '#ecebff',
metal: '#565584',
transparent: 'transparent',
current: 'currentColor',
white: '#ffffff',
purple: '#3f3cbb',
midnight: '#121063',
tahiti: '#3ab7bf',
'bubble-gum': '#ff77e9',
bermuda: '#78dcca',
},
// fontSize: {
// sm: ['14px', '20px'],
// base: ['16px', '24px'],
// lg: ['20px', '28px'],
// xl: ['24px', '32px'],
// },
},
variants: {
extend: {},
},
plugins: [],
}