-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
117 lines (116 loc) · 3.22 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms'
import typography from "@tailwindcss/typography";
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
content: [
'./resources/**/*.blade.php',
'./app/*.php',
'./vendor/filament/**/*.blade.php',
'./vendor/filament/**/*.css',
'./resources/css/**/*.css',
'./resources/css/*.css',
],
plugins: [
forms,
typography
],
theme: {
fontFamily: {
sans: [
'Montserrat', ...defaultTheme.fontFamily.sans
],
mono: [
'Operator Mono SSm A',
'Operator Mono SSm B',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
serif: [
'Chronicle Display A',
'Chronicle Display B',
'Constantia',
'Lucida Bright',
'Lucidabright',
'Lucida Serif',
'Lucida',
'DejaVu Serif',
'Bitstream Vera Serif',
'Liberation Serif',
'Georgia',
'serif',
],
},
extend: {
colors: {
danger: colors.rose,
primary: colors.blue,
success: colors.green,
warning: colors.yellow,
gray: {
lighter: '#cbd2ce',
lightest: '#f3efea',
light: '#b8bfbb',
},
blue: {
lightest: '#cae1e8',
light: '#cae1e8',
100: '#F2F6F9',
'dark': '#045291',
'darker': '#004075',
},
yellow: {
500: '#E2BC67',
600: '#E09E10',
700: '#D19216',
},
'bunker': {
'50': '#f3f6fa',
'100': '#d6e3f1',
'200': '#acc6e3',
'300': '#7b9ecd',
'400': '#4f76b2',
'500': '#355a97',
'600': '#294578',
'700': '#243961',
'800': '#21304e',
'900': '#080b11',
},
},
borderWidth: {
3: '3px',
5: '5px',
},
fontSize: {
xxs: '0.65rem',
},
lineHeight: {
relaxed: 1.75,
},
maxWidth: {
columns: '80rem',
'8xl': '90rem',
},
spacing: {
7: '1.75rem',
},
borderRadius: {
xl: '12px',
'2xl': '16px',
'3xl': '24px',
},
rotate: {
'-5': '-5deg',
},
},
},
variants: {
borderColor: ['focus-within', 'hover', 'focus'],
extend: {
fontWeight: ['hover', 'focus']
}
},
};