-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 1.15 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
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
colors: {
navyblue: {
50: '#D0E3F1',
500: '#003366',
700: '#002244',
}
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
fontSize: {
sm: ['0.9rem', '1rem'],
a: '0.938rem',
base: ['1rem', '1.188rem'],
lg: ['1.25rem', '1.375rem'],
},
padding: {
'0.75': '0.188rem',
},
animation: {
'fadeInTop': 'fadeInTop 500ms ease-in-out',
'fadeInDown': 'fadeInDown 500ms ease-in-out',
}
},
},
plugins: [],
};