-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.32 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
export default {
darkMode: ['class'],
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/react-notion-blocks/**/*.{js,ts,jsx,tsx,css}',
],
theme: {
extend: {
screens: {
xs: '475px',
},
colors: {
rating: 'rgb(var(--rating))',
primary: {
50: '#fdf2f7',
100: '#fce7f1',
200: '#fad0e4',
300: '#f8a9cc',
400: '#f274a9',
500: '#ec5e95',
600: '#d82a64',
700: '#bc1a4c',
800: '#9b193f',
900: '#811a38',
950: '#4f081c',
DEFAULT: '#ec5e95',
},
},
cursor: {
default:
"url('https://res.cloudinary.com/dgbocu1qv/image/upload/v1741613320/nezha-dynamic.png'), default !important",
pointer:
"url('https://res.cloudinary.com/dgbocu1qv/image/upload/v1741613320/nezha-dynamic.png'), pointer !important",
auto: "url('https://res.cloudinary.com/dgbocu1qv/image/upload/v1741613320/nezha-dynamic.png'), auto !important",
},
},
},
plugins: [require('tailwindcss-animate')],
safelist: ['text-[#ff3946]'],
} satisfies Config;