-
Notifications
You must be signed in to change notification settings - Fork 23
/
tailwind.config.mjs
46 lines (46 loc) · 1.04 KB
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
container: {
center: true,
padding: '1rem',
},
extend: {
colors: {
primary: {
50: '#EBF5FF',
100: '#E1EFFE',
200: '#C3DDFD',
300: '#A4CAFE',
400: '#76A9FA',
500: '#3F83F8',
600: '#1C64F2',
700: '#1A56DB',
800: '#1E429F',
900: '#233876',
},
},
animation: {
'text-slide': 'text-slide 7.5s cubic-bezier(0.83, 0, 0.17, 1) infinite',
},
keyframes: {
'text-slide': {
'0%, 26.66%': {
transform: 'translateY(0%)',
},
'33.33%, 60%': {
transform: 'translateY(-25%)',
},
'66.66%, 93.33%': {
transform: 'translateY(-50%)',
},
'100%': {
transform: 'translateY(-75%)',
},
},
},
},
},
plugins: [],
}