-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (32 loc) · 865 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
33 lines (32 loc) · 865 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/layout/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/ui/**/*.{js,ts,jsx,tsx,mdx}',
],
safelist: [
'grid', 'grid-cols-2', 'flex', 'flex-col', 'flex-row',
'max-w-7xl', 'mx-auto', 'text-transparent', 'bg-clip-text',
'opacity-100', 'opacity-0', 'text-white/50', 'w-full',
],
theme: {
extend: {
maxWidth: {
'7xl': '1280px',
},
colors: {
background: '#0F1624',
primary: 'hsl(204, 23.8%, 95.9%)',
surface: '#212d45',
},
fontFamily: {
sans: ['var(--font-space-grotesk)', 'sans-serif'],
},
},
},
plugins: [],
};
export default config;