-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
41 lines (41 loc) · 960 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
32
33
34
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
plugins: [],
theme: {
backgroundColor: {
black: '#121111',
brightPrimary: '#FF70A0',
brightPurple: '#4D4577',
primary: '#FE3B7B',
purple: '#393359',
transparent: 'rgba(0,0,0,0)',
white: '#F2F2F2',
},
backgroundImage: {
wave: 'url(/extras/bg-wave.svg)',
},
borderColor: {
black: '#000000',
brightPrimary: '#FF70A0',
brightPurple: '#4D4577',
primary: '#FE3B7B',
purple: '#393359',
transparent: 'rgba(0,0,0,0)',
},
boxShadow: {
solidPrimary: '5px 5px 0 0',
},
colors: {
black: '#121111',
brightPrimary: '#FF70A0',
neutral: '#F2F2F2',
primary: '#FE3B7B',
white: '#FFFFFF',
},
},
};