-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (38 loc) · 1022 Bytes
/
tailwind.config.ts
File metadata and controls
39 lines (38 loc) · 1022 Bytes
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
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
brand: {
pink: '#E879A0',
rose: '#F4B8CB',
purple: '#7E22CE',
crimson: '#BC185C',
'crimson-dark': '#BD185D',
light: '#EBEEFF',
bg: '#FAF7FF',
text: '#4A586B',
},
},
fontFamily: {
sans: ['Manrope', 'Inter', 'ui-sans-serif', 'system-ui'],
},
animation: {
marquee: 'marquee 40s linear infinite',
'marquee-reverse': 'marquee-reverse 40s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
'marquee-reverse': {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
},
},
plugins: [],
} satisfies Config;