-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
71 lines (70 loc) · 2.11 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const colors = require('tailwindcss/colors')
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
body: ['Roboto', 'sans-serif'],
display: ['Quicksand', 'sans-serif'],
sans: ['Quicksand', 'sans-serif'],
serif: ['Courgette', 'cursive'],
mono: ['Roboto', 'sans-serif'],
},
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
blueGray: colors.blugGray,
coolGray: colors.coolGray,
trueGray: colors.trueGray,
gray: colors.gray,
warmGray: colors.warmGray,
yellow: colors.yellow,
amber: colors.amber,
fuchsia: colors.fuchsia,
orange: colors.orange,
teal: colors.teal,
rose: colors.rose,
lime: colors.lime,
green: colors.green,
emerald: colors.emerald,
teal: colors.teal,
cyan: colors.cyan,
lightBlue: colors.lightBlue,
blue: colors.blue,
indigo: colors.indigo,
violet: colors.violet,
purple: colors.purple,
pink: colors.pink,
red: colors.red,
primary: '#003049',
secondary: '#d62828',
tertiary: '#f77f00',
fourth: '#fcbf49',
beige: '#eae2b7',
},
fontFamily: {
courgette: ['Courgette', 'cursive' ],
quicksand: ['Quicksand', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
},
backgroundImage: theme => ({
'camera': "url('/assets/images/appareil-photo.jpg')",
'popcorn': "url('/assets/images/popcorn.jpg')",
'goldrush' : "url(/assets/images/film_ruee_vers_or.jpg)",
'clap64' : "url(/assets/images/cinema_clap_64.png)",
'ticket' : "url(/assets/images/ticket.jpg)",
'outdoorcinema' : "url(/assets/images/outdoorcinema.jpg)",
'etoiles' : "url(/assets/images/cinema_etoiles.jpg)",
'parc' : "url(/assets/images/parc_monceau.jpg)",
'tontons' : "url(/assets/images/cinema_tontons.jpg)",
}),
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
],
}