-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (49 loc) · 1.41 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
const teams = [
'alfa-romeo',
'alpha-tauri',
'ferrari',
'haas',
'mclaren',
'mercedes',
'racing-point',
'red-bull-racing',
'renault',
'williams',
'aston-martin',
'alpine'
]
module.exports = {
safelist: [
...teams.map(team => `border-${team}`),
],
content: ['./storage/framework/views/*.php', './resources/views/**/*.blade.php', './app/View/Components/*.php'],
theme: {
extend: {
colors: {
green: colors.emerald,
yellow: colors.amber,
purple: colors.violet,
},
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
borderColor: {
'alfa-romeo': '#900000',
'alpha-tauri': '#2B4562',
'ferrari': '#DC0000',
'haas': '#FFFFFF',
'mclaren': '#FF8700',
'mercedes': '#00D2BE',
'racing-point': '#F596C8',
'red-bull-racing': '#0600EF',
'renault': '#FFF500',
'williams': '#005AFF',
'aston-martin': '#006F62',
'alpine': '#0090FF'
}
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
}