-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
61 lines (58 loc) · 1.79 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
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.php',
],
theme: {
extend: {
colors: {
bgrey: {
'040': '#f5f5f5',
100: '#e5e5e5',
200: '#cccccc',
400: '#999999',
500: '#808080',
700: '#4c4c4c',
800: '#313131',
},
tighten: {
'yellow': '#ffbc00'
}
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
mono: ['"Pitch Sans"', ...defaultTheme.fontFamily.mono],
},
maxWidth: {
'8xl': '88rem',
},
opacity: {
4: '.04',
8: '.08',
13: '.13',
75: '.75',
},
scale: {
'115': '1.15',
},
width: {
'128': '32rem',
'144': '36rem',
}
},
},
plugins: [
forms,
// used to style landing page's horizontal scrollbar on mobile
function ({ addVariant }) {
addVariant('supports-scrollbars', '@supports selector(::-webkit-scrollbar)')
addVariant('scrollbar', '&::-webkit-scrollbar')
addVariant('scrollbar-track', '&::-webkit-scrollbar-track')
addVariant('scrollbar-thumb', '&::-webkit-scrollbar-thumb')
},
],
};