-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.cjs
44 lines (44 loc) · 1.01 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
fontFamily: { sans: ['Quicksand', 'system-ui'] },
screens: {
'xs': '300px',
'sm': '480px',
'md': '768px',
'lg': '976px',
'xl': '1280px',
},
listStyleType: {
square: 'square',
},
extend: {
colors: {
'mg-primary': '#222226',
'mg-accent': '#FFAD05',
'mg-green': '#00B865',
'mg-red': '#FF476F',
'mg-blue': '#1E96FC'
},
animation: {
wave: 'wave 2s infinite',
},
keyframes: {
wave: {
'0%': { transform: 'rotate(0.0deg)' },
'10%': { transform: 'rotate(14.0deg)' },
'20%': { transform: 'rotate(-8.0deg)' },
'30%': { transform: 'rotate(14.0deg)' },
'40%': { transform: 'rotate(-4.0deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(0.0deg)' },
},
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
};