-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
tailwind.config.js
91 lines (90 loc) · 2.59 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./resources/views/**/*.blade.php',
'./resources/assets/js/frontend/**/*.js',
],
theme: {
typography: {
default: {
css: {
a: {
color: '#D22651',
'&:hover': {
color: '#BD2249',
},
},
},
},
},
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'12': '12rem'
},
extend: {
colors: {
'primary': {
100: '#FBE9EE',
200: '#F4C9D4',
300: '#EDA8B9',
400: '#E06785',
500: '#D22651',
600: '#BD2249',
700: '#7E1731',
800: '#5F1124',
900: '#3F0B18',
},
'orange': {
100: '#FEF2EB',
200: '#FCDECE',
300: '#F9C9B0',
400: '#F5A175',
500: '#F1793A',
600: '#D96D34',
700: '#914923',
800: '#6C361A',
900: '#482411',
},
'green': {
100: '#EBF9EB',
200: '#CDEFCD',
300: '#AEE5AF',
400: '#72D274',
500: '#35BE38',
600: '#30AB32',
700: '#207222',
800: '#185619',
900: '#103911',
},
},
fontFamily: {
sans: [
'Rubik',
'Cerebri Sans',
...defaultTheme.fontFamily.sans,
],
},
boxShadow: theme => ({
'outline': '0 0 0 2px ' + theme('colors.indigo.500'),
}),
fill: theme => theme('colors'),
},
},
variants: {
fill: ['responsive', 'hover', 'focus', 'group-hover'],
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
zIndex: ['responsive', 'focus'],
},
plugins: [
require('@tailwindcss/ui'),
require('@tailwindcss/typography'),
],
}