-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
32 lines (29 loc) · 1.09 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.jsx',
],
theme: {
extend: {
backgroundImage: {
'auth-texture': "url(https://abs.twimg.com/sticky/illustrations/lohp_en_1302x955.png)"
},
colors: {
'twitter-blue': '#1d9bf0',
'twitter-gray': '#71767b',
'twitter-input': '#e7e9ea',
},
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
twitterH: ['TwitterChirpH', ...defaultTheme.fontFamily.sans],
twitterM: ['TwitterChirpM', ...defaultTheme.fontFamily.sans],
twitterR: ['TwitterChirpR', ...defaultTheme.fontFamily.sans]
},
},
},
plugins: [require('@tailwindcss/forms')],
};