-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
48 lines (46 loc) · 1.58 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
const themes = require('./tailwindTheme/index.cjs');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
'./resources/js/**/*.js',
'./node_modules/atmosphere-ui/**/*.vue',
],
theme: {
extend: {
fontFamily: {
brand: ['Pacifico', 'cursive'],
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
colors: {
...themes.defaultLight
},
keyframes: {
ripple: {
'0%': { width: '0px', height: '0px', opacity: 0.5},
'100%': { width: '500px', height: '500px', opacity: 0}
}
},
animation: {
ripple: 'ripple 1s linear infinite'
},
gridTemplateColumns: {
8: 'repeat(8, minmax(0, 1fr))',
16: 'repeat(16, minmax(0, 1fr))',
24: 'repeat(24, minmax(0, 1fr))',
30: 'repeat(30, minmax(0, 1fr))',
60: 'repeat(60, minmax(0, 1fr))',
90: 'repeat(90, minmax(0, 1fr))',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@mertasan/tailwindcss-variables')
],
};