forked from xGihyun/itso-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (57 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
54
55
56
57
58
59
60
// import { join } from 'path';
// import { skeleton } from '@skeletonlabs/tw-plugin';
import forms from '@tailwindcss/forms';
// import { myCustomTheme } from './theme';
/** @type {import('tailwindcss').Config} */
export default {
// darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}'
// join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
],
theme: {
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
square: 'square',
alpha: 'lower-alpha',
},
extend: {
keyframes: {
floating: {
"0%, 100%": {transform: 'translateY(0px)'},
"50%": {transform: "translateY(-10px)"},
}
},
colors: {
accent: '#00c784',
background: '#060A29'
},
padding: {
padding: '5%'
},
boxShadow: {
rect: 'rgba(0, 0, 0, 0.6) 0px 5px 10px',
glass: 'rgba(0, 0, 0, 0.4) 0px 5px 10px',
'glass-input': 'rgba(0, 0, 0, 0.4) 0px 3px 5px',
ring: 'rgba(0, 0, 0, 0.25) 0px 0px 40px 10px'
},
dropShadow: {
ring: '0px 0px 20px rgba(0, 0, 0, 0.9)'
},
animation: {
float: 'floating 4s ease-in-out infinite'
}
},
fontFamily: {
'gt-walsheim-pro-medium': 'gt-walsheim-pro-medium, sans-serif'
}
},
plugins: [
forms
// skeleton({
// themes: { preset: ['skeleton'], custom: [myCustomTheme] }
// })
]
};