-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
68 lines (57 loc) · 1.87 KB
/
Copy pathtailwind.config.js
File metadata and controls
68 lines (57 loc) · 1.87 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
64
65
66
67
68
import scrollbar from "tailwind-scrollbar"
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts,md}"],
theme: {
extend: {
fontFamily: {
"prestige-elite": "'Prestige Elite', system-ui",
},
keyframes: {
"scrolling-gradient-frames": {
'0%': { backgroundPosition: '0% 50%' },
'50%' : { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
},
"rotate": {
'0%': {transform: 'rotate3d(0 0 0 0deg)'},
'100%': {transform: 'rotate3d(0 1 0 360deg)'}
}
},
animation: {
"scrolling-gradient": 'scrolling-gradient-frames 15s ease infinite',
"fast-scrolling-gradient": 'scrolling-gradient-frames 5s ease infinite',
'rotate': 'rotate 3s linear forwards infinite'
},
width: {
"1/7": "14.2%",
"1/8": "12.5%",
},
height: {
"1/7": "14.2%",
"1/8": "12.5%",
},
backgroundSize: {
"scrolling-gradient-size": '400% 400%',
},
colors: {
"main": "#ceff0a",
"light": "#e8eddf",
"light-2": "#cfdbd5",
"light-3": "#6d7471",
"dark": "#242423",
"dark-2": "#333533",
"dark-3": "#010201"
},
screens: {
'xs': '475px',
"3xl": '1600px',
"4xl": '2000px'
}
},
},
plugins: [
scrollbar({ nocompatible: true }),
],
// darkMode: "selector"
}