-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
39 lines (37 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// relative: true,
// content: [
// './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
// './src/components/**/*.{js,ts,jsx,tsx,mdx}',
// './src/app/**/*.{js,ts,jsx,tsx,mdx}',
// ],
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
// Add your SCSS files or other relevant files here
],
theme: {
extend: {
width: {
main: '700px'
},
maxWidth: {
main: '700px'
},
colors: {
red: 'rgb(255 0 0 / <alpha-value>)',
dimgray: 'rgb(105 105 105 / <alpha-value>)',
gray: 'rgb(128 128 128 / <alpha-value>)',
primary: 'rgb(var(--blue) / <alpha-value>)',
avatarBg: 'rgb(var(--avatar-bg) / <alpha-value>)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-grad ient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}