-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
module.exports = {
safelist: [
'!duration-[0ms]',
'!delay-[0ms]',
'html.js :where([class*="taos:"]:not(.taos-init))'
],
content: {
relative: true,
transform: (content) => content.replace(/taos:/g, ''),
files: ['./src/*.{html,js}'],
},
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
colors: {
home_bg1: '#000000',
home_bg2: '#1f1d6a',
secondary: '#9DD6FB',
background: '#193D91',
white: '#FFF',
black: '#170738',
navbar: '#010104',
about_ticket_text:'#D2CCFC'
},
extend: {
keyframes: { /* only way to apply allow animation on hover */
shake: {
'0%': { transform: 'translateX(0)' },
'25%': { transform: 'translateX(-5px)' },
'50%': { transform: 'translateX(5px)' },
'75%': { transform: 'translateX(-5px)' },
'100%': { transform: 'translateX(0)' },
},
},
animation: {
shake: 'shake 0.5s ease-in-out',
},
},
fontFamily: {
sans: ['Urbanist', 'ui-sans-serif', 'system-ui'],
mono: [
'Aldrich',
'source-code-pro',
'Menlo',
'Monaco',
'Consolas',
'Courier New'
]
}
},
plugins: [require('tailwindcss-motion'), require('taos/plugin')],
}