-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
31 lines (31 loc) · 1001 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
primary: 'var(--primary-color)',
darkBackground: 'var(--dark-background)',
accent: 'var(--accent-color)',
secondaryAccent: 'var(--secondary-accent)',
darkPurple: 'var(--dark-purple)',
lightBorder: 'var(--light-border)',
heading: 'var(--heading)',
},
backgroundColor:{
"primary": "var(--primary-color)",
"profileBanner": "#FCFBFF",
"gradient_one": "#FA4A6F",
"gradient_two": "#532B79",
},
fontFamily: {
lex: ['LexendDeca', 'sans-serif'],
},
}
},
plugins: [],
}