-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (48 loc) · 1.25 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
// @ts-check
/** @satisfies {import('tailwindcss').Config} */
const config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
purple: {
300: '#6B3BF1',
400: '#393061',
},
pink: {
400: '#E95682',
600: '#C03786',
800: '#A45BD0',
},
yellow: '#FFC32A',
green: '#46B9AD',
orange: '#E36131',
},
fontFamily: {
ibm: ['var(--font-ibm)'],
},
ringWidth: {
16: '16px',
24: '24px',
32: '32px',
},
aspectRatio: {
'3/4': '3 / 4',
},
borderRadius: {
'4xl': '2rem',
'5xl': '3rem',
'6xl': '4.5rem',
},
maxWidth: {
xxs: '14rem',
},
},
},
plugins: [require('@tailwindcss/typography')],
};
module.exports = config;