generated from BrieucCaillot/nuxt3-threejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 867 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
module.exports = {
mode: 'jit',
content: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
// './nuxt.config.{js,ts}',
],
theme: {
extend: {
colors: {
background: '#E7DFD6',
green: '#00FF00',
red: '#FF0000',
typingDoneColor: '#2D2923',
food: {
base: '#9F9789',
error: '#A3411F',
valid: '#2D2923',
},
bbq: {
valid: '#2D2923',
},
croix: {
base: '#9F9789',
error: '#A3411F',
valid: '#2D2923',
},
black: {
full: '#000000',
primary: '#2D2923',
},
},
},
fontFamily: {
primary: ['Mordova', 'sans-serif'],
secondary: ['PirataOne', 'sans-serif'],
},
},
plugins: [],
}