-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
/** @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}',
],
theme: {
extend: {
colors: {
'red-carmen': 'var(--RED-CARMEN)',
'cream-carmen': 'var(--CREAM-CARMEN)',
'black-carmen': 'var(--BLACK-CARMEN)',
},
backgroundPosition: {
top: '-500px',
},
backgroundSize: {
'100%': '100%',
},
backgroundImage: {
'red-button': "url('/img/buttons/button_red.png')",
'cream-button': "url('/img/buttons/button_cream.png')",
price: "url('/img/la_carte/carte_price_bg_2x.png')",
'form-underline': "url('/img/contact/contact_input_underline_2x.png)",
paper: 'url(/img/fournisseurs/fournisseurs_paper.png)',
},
transitionDuration: {
400: '400ms',
},
},
fontFamily: {
thunder: ['Thunder', 'sans-serif'],
thunderLC: ['ThunderLC', 'sans-serif'],
softgank: ['Softgank', 'sans-serif'],
},
},
plugins: [],
};