-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (39 loc) · 1023 Bytes
/
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 plugin = require('tailwindcss/plugin');
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./resources/**/*.{blade.php,js}',
],
theme: {
extend: {
colors: {
// Aliases.
green: colors.emerald,
yellow: colors.amber,
purple: colors.violet,
},
border: {
DEFAULT: '1px',
'1': '1px',
'3': '3px',
'5': '5px',
'7': '7px',
'9': '9px',
},
width: {
'1/10': '10%',
'2/10': '20%',
'3/10': '30%',
'4/10': '40%',
'5/10': '50%',
'6/10': '60%',
'7/10': '70%',
'8/10': '80%',
'9/10': '90%',
},
transitionTimingFunction: {
'ease': 'ease',
}
},
}
};