-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
55 lines (53 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: [
'./app/**/*.php',
'./config/**/*.php',
'./resources/**/*.{php,js}',
'./storage/framework/views/*.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
primary: {
DEFAULT: '#e5392a',
50: '#f9d1cd',
100: '#f7c0bb',
200: '#f29e97',
300: '#ee7d72',
400: '#e95b4e',
500: '#e5392a',
600: '#bf2518',
700: '#8d1c11',
800: '#5b120b',
900: '#290805',
950: '#100302',
},
},
animation: {
'slide-in': 'slide-in 0.15s ease-in forwards',
'slide-out': 'slide-out 0.15s ease-in forwards',
},
keyframes: {
'slide-in': {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0)' },
},
'slide-out': {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(100%)' },
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('tailwind-scrollbar'),
],
}