-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (49 loc) · 1013 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
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
prim: {
1: '#FFBE34',
2: '#091242',
3: '#1f2a69',
},
sec: {
1: '#F4F4F4',
2: '#1C1F35',
3: '#666C89',
},
grad: {
1: '#ffb629',
2: '#ffda56',
3: '#ffd7a6',
},
titleBg: {
1: '#041c3780',
2: '#e8e8e880',
3: '#e8e8e81a',
},
},
backgroundImage: {
heroImage: "url('./src/assets/Photo.png')",
projectBg: "url('./src/assets/Background.png')",
},
},
},
plugins: [],
safelist: [
{
pattern: /(bg|text|border)-sec-(1|2|3)/,
},
{
pattern: /(bg|text|border)-titleBg-(1|2|3)/,
},
{
pattern: /(bg|text|border)-grad-(1|2|3)/,
},
{
pattern: /(bg|text|border)-prim-(1|2|3)/,
},
],
};