-
Notifications
You must be signed in to change notification settings - Fork 61
/
tailwind.config.js
44 lines (40 loc) · 1.03 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
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
screens: {
sm: '576px',
md: '992px',
lg: '1200px',
xl: '1440px'
},
extend: {
colors: {
'custom-indigo-light': '#e6e8ff',
'custom-indigo-darker': '#2f365f',
'custom-indigo-darkest': '#2b3158',
'brand-lighter': '#4299e1',
'brand-light': '#63b3ed',
'brand': '#4299e1',
'brand-dark': '#63b3ed',
'brand-darker': '#2c5282',
// Overwrite new colors with old colors
'gray-200': '#edf2f7',
/** This should work but :shrug: */
// 'brand-lighter': colors.blue[200],
// 'brand-light': colors.blue[400],
// 'brand': colors.blue[500],
// 'brand-dark': colors.blue[600],
// 'brand-darker': colors.blue[800],
},
spacing: {
'9': '2.25rem',
}
},
},
plugins: [],
};