-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./themes/aurelia-theme/layouts/**/*.html",
"./themes/aurelia-theme/assets/js/**/*.js",
"./themes/aurelia-theme/static/**/*.js",
"./content/**/*.md",
"./content/**/*.html"
],
theme: {
extend: {
colors: {
'aurelia': '#ed2b88',
'aurelia-light': '#ff4da1',
'aurelia-blue': '#003F8C',
'aurelia-blue-light': '#0066CC',
},
animation: {
'float-slow': 'float 8s ease-in-out infinite',
'float-delayed': 'float 6s ease-in-out infinite 2s',
'grid': 'grid 20s linear infinite',
'pulse': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'pulse-slow': 'pulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'pulse-slower': 'pulse 12s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'pulse-delayed': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite 2s',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0) rotate(0)' },
'50%': { transform: 'translateY(-20px) rotate(5deg)' },
},
grid: {
'0%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(-100%)' },
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}