-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.external-chatbot.config.js
More file actions
63 lines (62 loc) · 1.52 KB
/
tailwind.external-chatbot.config.js
File metadata and controls
63 lines (62 loc) · 1.52 KB
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
62
63
import defaultConfig from './tailwind.config';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./resources/views/**/components/**/*.blade.php',
'./app/Extensions/Chatbot/**/*.blade.php',
'./app/Extensions/ChatbotEcommerce/**/*.blade.php',
],
theme: {
extend: {
...defaultConfig.theme.extend,
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1170px',
'2xl': '1170px',
},
borderRadius: {
'3xl': '1.375rem'
},
spacing: {
'4.5': '1.125rem'
},
boxShadow: {
'xs': '0 1px 11px rgb(0 0 0 / 6%)',
'sm': '0 3px 6px rgb(0 0 0 / 16%)',
'lg': '0 15px 33px rgb(0 0 0 / 5%)',
'xl': '0 20px 50px rgb(0 0 0 / 20%)',
'2xl': '0 33px 44px rgb(0 0 0 / 12%)',
},
colors: {
primary: {
DEFAULT: 'var(--primary)',
foreground: 'var(--primary-foreground)',
},
background: 'var(--background)',
foreground: 'var(--foreground)',
},
keyframes: {
...defaultConfig.theme.extend.keyframes,
'pulse-intense': {
'0%, 100%': { opacity: 1, transform: 'scale(1)' },
'50%': { opacity: 0.5, transform: 'scale(0.75)' },
},
'hue-rotate': {
'0%': { filter: 'hue-rotate(0deg)' },
'100%': { filter: 'hue-rotate(360deg)' },
},
},
animation: {
...defaultConfig.theme.extend.animation,
'pulse-intense': 'pulse-intense 2s ease-in-out infinite',
'hue-rotate': 'hue-rotate 1.9s linear infinite',
},
},
},
plugins: [
require( '@tailwindcss/typography' ),
require( 'tailwindcss-motion' )
]
};