-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
29 lines (29 loc) · 896 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
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./src/**/*.css',
],
theme: {
extend: {
fontFamily: {
minecraft: ['Minecraft', 'sans-serif'],
},
colors: {
primary: {
bg: 'var(--primary-bg-color, #c381b5)',
text: 'var(--primary-text-color, #fefcd0)',
shadow: 'var(--primary-box-shadow, #fefcd0)',
},
secondary: {
bg: 'var(--secondary-bg-color, #fefcd0)',
text: 'var(--secondary-text-color, #000000)',
shadow: 'var(--secondary-box-shadow, #c381b5)',
},
outline: {
text: 'var(--outline-text-color, #000000)',
},
},
},
},
plugins: [],
}