-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
68 lines (64 loc) · 1.27 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
const colors = require('tailwindcss/colors')
const vatsimIndigo = {
DEFAULT: '#2B3990',
'50': '#949EDF',
'100': '#8490DA',
'200': '#6574D1',
'300': '#4557C7',
'400': '#3445AF',
'500': '#2B3990',
'600': '#1E2865',
'700': '#11173A',
'800': '#04060E',
'900': '#000000'
}
const vatsimGreen = {
DEFAULT: '#29B473',
'50': '#A9EBCC',
'100': '#99E8C3',
'200': '#77E0AF',
'300': '#56D99C',
'400': '#35D188',
'500': '#29B473',
'600': '#1F8656',
'700': '#145939',
'800': '#0A2B1B',
'900': '#000000'
}
const vatsimBlue = {
DEFAULT: '#2483C5',
'50': '#B0D6F1',
'100': '#9FCDED',
'200': '#7CBBE7',
'300': '#5AA9E1',
'400': '#3798DB',
'500': '#2483C5',
'600': '#1B6396',
'700': '#134466',
'800': '#0A2437',
'900': '#010507'
}
module.exports = {
content: [
'./resources/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
colors: {
'vatsim-indigo': vatsimIndigo,
'vatsim-blue': vatsimBlue,
'vatsim-green': vatsimGreen,
danger: colors.rose,
primary: vatsimGreen,
success: colors.green,
warning: colors.amber,
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}