-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (47 loc) · 940 Bytes
/
tailwind.config.js
File metadata and controls
48 lines (47 loc) · 940 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
47
48
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontSize: {
xs: ['12px', '0'],
sm: ['14px', '20px'],
base: ['16px', '28.91px'],
md: ['24px', '43.36px'],
lg: ['32px', '57.81px'],
},
extend: {
colors: {
primary: {
light: '#C782F1',
default: '#A089D7',
dark: '#8338EC',
},
white: '#ffffff',
slate: '#9ca3af',
red: '#FF0000',
},
width: {
md1: '50%',
md2: '450px',
10: '40px',
15: '60px',
25: '10px',
},
height: {
10: '40px',
15: '60px',
25: '10px',
},
padding: {
10: '10px',
},
borderRadius: {
10: '10px',
},
fontFamily: {
Bayon: ['Bayon', 'sans-serif'],
},
},
},
plugins: [],
};