-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 936 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
future: {
hoverOnlyWhenSupported: true
},
theme: {
extend: {
fontSize: {
xxs: [
'0.6rem',
{
lineHeight: '1rem'
}
]
},
blur: {
'4xl': '128px'
},
dropShadow: {
'xl-centered': '0 0px 25px rgba(0, 0, 0, 0.25)'
},
gridTemplateColumns: {
30: 'repeat(30, minmax(0, 1fr))'
},
colors: {
'unabridged-logo-bg': '#1A1A1A'
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' }
}
},
animation: {
'marquee-infinite': 'marquee 10s linear infinite'
},
transitionProperty: {
width: 'width',
padding: 'padding',
'width-padding': 'width, padding'
}
}
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/aspect-ratio')]
};