-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
49 lines (49 loc) · 973 Bytes
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
fontFamily: {
"body": "Source Sans Pro"
},
colors: {
'ebony-clay': {
'50': '#f2f6fc',
'100': '#e1ebf8',
'200': '#cbdcf2',
'300': '#a6c6ea',
'400': '#7ca8de',
'500': '#5d8ad4',
'600': '#4971c7',
'700': '#3f5eb6',
'800': '#394e94',
'900': '#324476',
'950': '#1f2742',
},
},
extend: {
animation:{
fall: "fall 2s linear 1"
},
keyframes:{
fall: {
'0%': {
transform: 'translateY(-25%)',
animationTimingFunction: 'ease',
opacity: "0%",
"letter-spacing": "0.1em"
},
'80%': {
animationTimingFunction: 'ease-in',
opacity: "100%"
},
'100%': {
transform: 'none',
animationTimingFunction: 'ease-out',
"letter-spacing": "-0.075em"
}
},
}
},
},
plugins: [],
}